borghei/design-system
> Design tokens, light/dark theming, and WCAG contrast validation for HTML documents and decks, compiled into one inlinable CSS bundle. Use when theming a report or deck, auditing contrast, or fixing dark-mode color drift.
npx skills add https://github.com/borghei/Claude-Skills --skill design-system
The visual layer for HTML documents and slide decks: a token file in, a single
self-contained CSS bundle out, with every color pairing checked against WCAG
before it ships. This is the theming layer for documents — type scales,
reading measure, print roles, light/dark surfaces. It is not a product UI
component library; there are no buttons, form states, or component variants here.
assets/sample_tokens.json)Before generating a theme, confirm these inputs. If any is unknown or vague, ASK — do not assume:
Stop rule: ask only the 2-3 that most change the output. If the user says "just draft it," proceed and list your assumptions at the top of the artifact.
assets/sample_tokens.json and edit the palette, roles, and scales.with inverted colors.
python3 markdown-html/design-system/scripts/token_linter.py \
--input markdown-html/design-system/assets/sample_tokens.json --format text
python3 markdown-html/design-system/scripts/theme_builder.py \
--input markdown-html/design-system/assets/sample_tokens.json \
--out build/theme.css --format text
pairings block,each with its usage class.
--all-pairs to find combinations nobody declared but a stylesheet willeventually produce, and --level AAA --no-gate as an aspirational report.
python3 markdown-html/design-system/scripts/contrast_validator.py \
--input markdown-html/design-system/assets/sample_tokens.json \
--level AA --format text
python3 markdown-html/design-system/scripts/contrast_validator.py \
--input markdown-html/design-system/assets/sample_tokens.json \
--level AAA --no-gate --format json
in one mode only, literal hex values that will not respond to theming.
--all-pairs to get the full contrast matrix.and parity errors invalidate the contrast numbers, so fixing contrast first
wastes the work.
assets/sample_tokens_legacy.json is a deliberately damaged theme carrying all
four failure classes, so this workflow demonstrates real repair rather than a
clean run. Expect findings from both commands: the linter reports 4 errors and
5 warnings and exits 2; the validator is pinned to report-only with
--no-gate and finds 13 failing pairings.
python3 markdown-html/design-system/scripts/token_linter.py \
--input markdown-html/design-system/assets/sample_tokens_legacy.json \
--max-severity warning --format json
python3 markdown-html/design-system/scripts/contrast_validator.py \
--input markdown-html/design-system/assets/sample_tokens_legacy.json \
--all-pairs --no-gate --format text
| Ratio | Name | Use for | Top step of an 8-step scale |
|-------|------|---------|------------------------------|
| 1.125 | Major second | Dense reference docs | 1.8x base |
| 1.200 | Minor third | Technical documentation | 2.5x base |
| 1.250 | Major third | Reports, whitepapers [PROVEN] | 3.1x base |
| 1.333 | Perfect fourth | Slide decks [PROVEN] | 4.2x base |
| 1.500 | Perfect fifth | Title treatments only | 8.5x base — unusable in a document |
Use 1.25 for documents and 1.333 for decks. A document needs 7-8 usable steps
from caption to H1; at 1.5 the top of that range is 8.5x the base, which no
report can place on a page. Escape hatch: a single-page poster or title card can
use 1.5 because it has one heading and no hierarchy to preserve.
| Class | Threshold (AA) | Applies to | WCAG criterion |
|-------|----------------|------------|----------------|
| body | 4.5:1 | Body copy, captions, footnotes, inline links | 1.4.3 |
| large | 3:1 | Text >= 18.66px bold or >= 24px regular | 1.4.3 |
| ui | 3:1 | Component boundaries, meaningful graphics | 1.4.11 |
| decor | 1.5:1 | Table rules, dividers — losslessly removable | none (practical floor) |
Classify honestly. A border that is the only thing separating two data regions is
ui, not decor. The 1.5:1 decor floor is not a WCAG number — it is the point
below which a rule stops being visible on a mid-quality screen, so it fails at its
decorative job too.
| Element | Gate | Target | Why the target exceeds the gate |
|---------|------|--------|----------------------------------|
| Body text | 4.5:1 | 10-16:1 | Below ~8:1 tires sustained reading; above ~17:1 causes halation on OLED |
| Captions | 4.5:1 | 5.5-8:1 | Must stay subordinate to body yet readable |
| Code text | 4.5:1 | 9-14:1 | Measured against its own tinted surface |
| Focus ring | 3:1 | 3-6:1 | Against both the element and the adjacent background |
[RECOMMENDED] Do not use pure black on pure white. 21:1 is the maximum and it
is worse than ~16:1 for extended reading — glyph edges bleed on bright displays,
and readers with astigmatism report the most discomfort at that pairing.
| Light role points at | Dark role points at | Reason |
|----------------------|---------------------|--------|
| neutral 900 (text) | neutral 100 | Read the same ramp from the other end |
| neutral 0 (surface) | neutral 1000 | Not pure black — 1000 leaves room for raised surfaces |
| accent 600 | accent 300 | [PROVEN] Move accents 2-3 steps, not 1 |
Moving an accent only one step is the most common dark-mode bug in this domain:
accent.600 scores 5.9:1 on white and 3.4:1 on near-black, so it passes the light
gate and fails the dark one.
Mistake: Defining light-text and dark-text as two separate roles instead of one text role with two mode values.
Why it happens: It mirrors how the designer thinks — two comps, two palettes — and each role reads unambiguously in isolation.
Instead: Keep one semantic role and let roles.light and roles.dark supply the values. The mode belongs in the mode map, not the name. The linter's parity check enforces this by failing any role defined in only one mode.
Mistake: Hard-coding one color directly in a component rule because no existing role quite fits.
Why it happens: Adding a role feels like ceremony for a one-off, and the deadline is real.
Instead: Add the role or reuse the nearest one. That hard-coded value will not respond to theming and surfaces months later as the single element that stays dark in light mode. The linter flags it as ROLE_LITERAL specifically because it is always cheaper to fix on the day it is written.
Mistake: Authoring the light theme carefully, mechanically inverting for dark, and never rendering the result.
Why it happens: Dark mode looks like a mechanical transform, and the CSS compiles either way.
Instead: Run the contrast validator across both modes — it checks every mode in the roles map for exactly this reason — and then actually open the document in dark mode. The failures cluster in the mode nobody looked at, especially in saturated accent and warning colors.
Mistake: Treating a passing validator as proof the theme is accessible.
Why it happens: The tool gives a number and the number is above the threshold, which feels conclusive.
Instead: Read the list of what pairing math cannot see: text over images, semi-transparent overlays, hover and focus states nobody declared, two chart series that both pass against the background but not against each other, and red/green pairs at equal luminance that pass every ratio test and vanish for a deuteranopic reader. Contrast ratio is a luminance metric and is hue-blind by construction.
Mistake: Adding a role per component — table-header-bg, figure-caption-color, toc-link-hover.
Why it happens: Each addition is locally reasonable; no single one looks like a mistake.
Instead: Treat roles as a vocabulary, not a mapping table. Eleven roles cover a document; twenty is a smell; forty means the semantic and component layers have merged and the theme can no longer be re-skinned.
| File | Purpose |
|------|---------|
| scripts/theme_builder.py | Compile a token JSON file into one inlinable CSS bundle with light/dark blocks |
| scripts/contrast_validator.py | Score every declared pairing against WCAG AA/AAA in both modes; CI gate |
| scripts/token_linter.py | Structural audit — scale sanity, ramp monotonicity, mode parity, orphan stops |
| references/token-architecture.md | Three-layer token model, role vocabulary, type and spacing scales, dark-mode delivery |
| references/wcag-contrast-reference.md | Luminance math, thresholds, exemptions, remediation recipes, blind spots |
| assets/sample_tokens.json | Working token file — passes the linter and the AA gate as shipped |
| assets/sample_tokens_legacy.json | Deliberately damaged theme for Workflow 3: non-monotonic ramp, mode-parity gap, literal hex, un-re-anchored dark accent |
| assets/theme_brief_template.md | Pre-work brief: decisions to settle before writing hex values |
All scripts share one exit-code contract: 0 clean, 2 gate failed (findings at or above the threshold), 1 the tool itself errored. A CI job can therefore tell a real defect from a broken invocation.
Take borghei/design-system from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.