This node creates a style configuration object that guides Recraft’s image generation process toward professional logo design effects. By selecting different substyles, you can define the design style, complexity and use cases of the generated logo.

Parameters

Basic Parameters

ParameterTypeDefaultDescription
substyleSelection-Specific substyle for logo raster (Required)

Output

OutputTypeDescription
recraft_styleRecraft StyleStyle configuration object, connects to Recraft generation node

Usage Example

Recraft Text to Image Workflow Example

Recraft Text to Image Workflow Example

Source Code

[Node Source Code (Updated 2025-05-03)]

class RecraftStyleV3LogoRasterNode(RecraftStyleV3RealisticImageNode):
    """
    Select vector_illustration style and optional substyle.
    """

    @classmethod
    def INPUT_TYPES(s):
        return {
            "required": {
                "substyle": (get_v3_substyles(s.RECRAFT_STYLE, include_none=False),),
            }
        }

    RECRAFT_STYLE = RecraftStyleV3.logo_raster