genart.dev
Plugins

Styles

Art style references, recipes, and palette extraction.

Style reference layers that embed art movement knowledge, color palettes, and technique recipes for AI-guided composition.

Installation

npm install @genart-dev/plugin-styles

Layer Types

Type IDDisplay NameDescription
style:referenceStyle ReferenceEmbeds an art style reference with movement, techniques, and palette

Properties

style:reference

PropertyTypeDefaultDescription
styleIdstring""Style reference ID from @genart-dev/styles
movementstring""Artistic movement name
techniquesarray[]Key techniques to apply
palettearray[]Extracted color palette
intensitynumber1.0How strongly to apply the style (0-1)
notesstring""Artist notes about the style application

MCP Tools

ToolDescription
search_stylesSearch art styles by keyword, movement, or technique
apply_style_recipeApply a style recipe to the current sketch (palette + technique hints)
extract_paletteExtract a color palette from a style reference
suggest_stylesSuggest complementary or contrasting styles for the current sketch

Example

{
  "tool": "design_add_layer",
  "arguments": {
    "type": "style:reference",
    "properties": {
      "styleId": "impressionism-monet",
      "movement": "impressionism",
      "techniques": ["broken-color", "visible-brushwork", "light-study"],
      "intensity": 0.8
    }
  }
}