Install
openclaw skills install cn-color-scheme-generatorGenerate color schemes from a base color. Support complementary, triadic, analogous schemes. Pure Python standard library, no API key required.
openclaw skills install cn-color-scheme-generatorGenerate beautiful color palettes from a base color.
python3 scripts/color_scheme.py --base "#ff5733"
{
"base": "#ff5733",
"schemes": {
"complementary": ["#ff5733", "#33d6ff"],
"triadic": ["#ff5733", "#33ff57", "#5733ff"],
"analogous": ["#ff5733", "#ffa033", "#ff3357"]
}
}