{
  "slug": "color-palette-generator",
  "name": "gizza-ai/color-palette-generator",
  "version": "0.1.0",
  "title": "Color Palette Generator — Harmonious Schemes from a Base Color — gizza.ai",
  "description": "Generate a color palette from any base color — complementary, analogous, triadic, tetradic, monochromatic, shades and tints. Free, runs in your browser.",
  "tags": [
    "color palette generator",
    "color scheme",
    "complementary colors",
    "analogous",
    "triadic",
    "monochromatic",
    "color theory"
  ],
  "category": "image",
  "urls": {
    "page": "https://gizza.ai/tools/color-palette-generator/",
    "markdown": "https://gizza.ai/tools/color-palette-generator/index.md",
    "descriptor": "https://gizza.ai/tools/color-palette-generator/tool.json",
    "deep_link_example": "https://gizza.ai/tools/color-palette-generator/?color=%233498db&scheme=complementary&count=5"
  },
  "cli": "gizza tool color-palette-generator \"#3498db\"",
  "tool": {
    "description": "Generate a harmonious color palette from a base color using color theory. Accepts a base color (#hex, rgb(), or hsl()) and a scheme (complementary, analogous, triadic, split-complementary, tetradic, square, monochromatic, shades, tints), and returns palette swatches in hex, rgb and hsl. Runs locally.",
    "parameters": {
      "additionalProperties": false,
      "properties": {
        "color": {
          "description": "The base color in any common notation: #hex (3/6 digits), rgb(), or hsl().",
          "type": "string"
        },
        "count": {
          "default": 5,
          "description": "How many colors for series schemes (analogous, monochromatic, shades, tints). Fixed schemes ignore this.",
          "maximum": 12,
          "minimum": 2,
          "type": "integer"
        },
        "scheme": {
          "default": "complementary",
          "description": "The color-harmony scheme to generate.",
          "enum": [
            "complementary",
            "analogous",
            "triadic",
            "split-complementary",
            "tetradic",
            "square",
            "monochromatic",
            "shades",
            "tints"
          ],
          "type": "string"
        }
      },
      "required": [
        "color"
      ],
      "type": "object"
    }
  }
}