Chart design template service
Service that manages chart design templates.
| Template | Style | Description |
|---|---|---|
| hrc | Dark, Neon | HRC dashboard style |
design/
├── SKILL.md # This file (index)
└── hrc/
├── SKILL.md # Usage guide
├── config.py # matplotlib config
└── colors.json # Color definitions
All design templates provide the same interface:
from config import (
COLORS, # Color dict
SERIES_COLORS, # Series color list
create_figure, # Figure creation function
apply_style, # Style application function
save_chart, # Save function
)
{
"name": "template-name",
"background": "#hex",
"text": { "primary": "#hex", "secondary": "#hex" },
"grid": { "color": "#hex", "alpha": 0.5 },
"chart_colors": { "series": ["#hex", ...], "positive": "#hex", "negative": "#hex" }
}
import sys
sys.path.append('.claude/skills/design/hrc')
from config import create_figure, apply_style, save_chart