Cn Color Scheme Generator

Generate color schemes from a base color. Support complementary, triadic, analogous schemes. Pure Python standard library, no API key required.

Audits

Pending

Install

openclaw skills install cn-color-scheme-generator

Color Scheme Generator

Generate beautiful color palettes from a base color.

Features

  • Complementary color scheme (opposite on color wheel)
  • Triadic color scheme (3 evenly spaced colors)
  • Analogous color scheme (adjacent colors)
  • Pure Python, no external dependencies

Color Theory

  • Complementary: Colors opposite each other on the color wheel. High contrast, vibrant combinations.
  • Triadic: Three colors evenly spaced. Balanced and visually appealing.
  • Analogous: Colors next to each other. Harmonious and natural-looking.

Usage

python3 scripts/color_scheme.py --base "#ff5733"

Example Output

{
  "base": "#ff5733",
  "schemes": {
    "complementary": ["#ff5733", "#33d6ff"],
    "triadic": ["#ff5733", "#33ff57", "#5733ff"],
    "analogous": ["#ff5733", "#ffa033", "#ff3357"]
  }
}

Use Cases

  • UI/UX design
  • Brand color palette creation
  • Data visualization color schemes