Claude-skill-registry colors
Preview CYNIC's color system with semantic colors, health indicators, progress bars, and Dog colors (Sefirot). Use when testing terminal colors or wanting to see the visual theme.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/colors" ~/.claude/skills/majiayu000-claude-skill-registry-colors && rm -rf "$T"
manifest:
skills/data/colors/SKILL.mdsource content
/colors - CYNIC Color System Preview
"Les couleurs révèlent la vérité" - κυνικός
Execution
Run the color preview script:
node scripts/lib/colors.cjs
Display the output directly to the user.
What It Shows
- Semantic Colors: Success, warning, error, info, muted
- Health Indicators: φ-aligned thresholds (61.8%, 38.2%)
- Progress Bars: Normal and inverse (for heat/frustration)
- Dog Colors: All 11 Sefirot with their assigned colors
- Dashboard Themes: Color schemes for /psy, /health, /dogs, etc.
φ-Aligned Thresholds
| Threshold | Meaning | Color |
|---|---|---|
| >61.8% | Healthy | Green |
| 38.2%-61.8% | Caution | Yellow |
| <38.2% | Critical | Red |
These thresholds are derived from the golden ratio (φ = 1.618).
Using Colors in Scripts
const { ANSI, c, progressBar, DOG_COLORS } = require('./scripts/lib/colors.cjs'); // Colorize text console.log(c(ANSI.brightGreen, 'Success!')); // Progress bar with φ thresholds console.log(`Health: [${progressBar(0.75)}]`); // Dog color console.log(c(DOG_COLORS.SCOUT, '🔍 Scout'));
See Also
- Human psychology (uses magenta theme)/psy
- System health (uses cyan theme)/health
- Collective Dogs (uses cyan/yellow theme)/dogs
- Self-status (uses cyan theme)/status