canon-color

canon-color is a skill for Claude Code, Codex from Dragoon0x/canon. It costs 82 tokens per session (2,497 once invoked), scanned A, original, MIT.

A set of guidelines for choosing interface colours, building themes, and checking readable contrast between text, icons, and backgrounds.

In plain words
What is it for?
Use it when creating or reviewing colour palettes, semantic colour variables, accessible text pairings, or light and dark themes.
Why use it?
It helps prevent common problems such as low-contrast text, unsuitable colour combinations, pure-black backgrounds, and inconsistent theme colours.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when creating or reviewing colour palettes, semantic colour variables, accessible text pairings, or light and dark themes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dragoon0x/canon/canon-color
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Dragoon0x/canon --skill canon-color
Clone the repo
git clone --depth 1 https://github.com/Dragoon0x/canon

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for canon-color

README.md
[![agentmods](https://agentmods.dev/badge/skills/dragoon0x/canon/canon-color/github.svg)](https://agentmods.dev/skills/dragoon0x/canon/canon-color)
Your own site
<a href="https://agentmods.dev/skills/dragoon0x/canon/canon-color"><img src="https://agentmods.dev/badge/skills/dragoon0x/canon/canon-color/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for canon-color

Your own site · 80×15
<a href="https://agentmods.dev/skills/dragoon0x/canon/canon-color"><img src="https://agentmods.dev/badge/skills/dragoon0x/canon/canon-color.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 82 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,497 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00082 $0.02497
Opus 5 $0.00041 $0.01248
Sonnet 5 $0.00016 $0.00499
Haiku 4.5 $0.00008 $0.00250

Measured 10d ago against content hash eb757ad7fef5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

canon-color scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

source/skills/canon-color/SKILL.md · 214 lines

How it starts

The opening of the file, as written. The whole thing — 214 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CANON · Color and Contrast

Color is the second highest-leverage design decision after type. Most AI defaults are wrong: pure black, pure gray, purple gradients, low contrast on colored surfaces.

Quantified Rules

Contrast (WCAG 2.2)

Element Minimum Preferred Source
Body text 4.5:1 (AA) 7:1 (AAA) WCAG 1.4.3, 1.4.6
Large text (≥18.66px regular or ≥14px bold) 3:1 (AA) 4.5:1 (AAA) WCAG 1.4.3
UI components, focus rings 3:1 4.5:1 WCAG 1.4.11
Disabled text exempt 4.5:1 Treat as functional
Icons used for meaning 3:1 4.5:1 WCAG 1.4.11

Hard floor: never ship body text below 4.5:1. Test every text color against every surface it lands on.

Color Space

Use OKLCH for new palettes. Reasons:

  • Perceptually uniform: equal lightness steps look equal
  • Predictable hue rotation (HSL distorts)
  • Wide-gamut (P3) ready
  • Easy to generate accessible scales programmatically
:root {
  --primary-500: oklch(60% 0.18 250);
  --primary-600: oklch(54% 0.18 250);  /* same hue and chroma, lower L */
  --primary-700: oklch(48% 0.18 250);
}

Keep chroma constant within a hue ramp, vary only lightness. This produces tonal scales that read as the same color at different intensities.

Tinted Neutrals (never pure gray)

Layer Pure (avoid) Tinted (use)
Background #ffffff oklch(99% 0.005 250) (cool tint)
Surface #f5f5f5 oklch(97% 0.008 250)
Border #e5e5e5 oklch(92% 0.01 250)
Body text #000000 oklch(20% 0.02 250)

Pure black (#000) and pure white (#fff) are visually harsh and read as unfinished. Tint every neutral toward your primary hue (or its complement) by 0.005–0.02 chroma. This unifies the palette and reads as intentional.

Semantic Token System

Every project needs these semantic layers, separated from raw color values:

:root {
  /* Raw scale: never reference directly in components */
  --gray-50:  oklch(98% 0.005 250);
  --gray-100: oklch(95% 0.008 250);
  --gray-900: oklch(20% 0.02 250);

  /* Semantic: reference these everywhere */
  --color-bg:           var(--gray-50);
  --color-surface:      var(--gray-100);
  --color-border:       var(--gray-200);
  --color-text:         var(--gray-900);
  --color-text-muted:   var(--gray-600);
  --color-text-subtle:  var(--gray-500);
  --color-accent:       var(--primary-500);
  --color-accent-hover: var(--primary-600);
}

Read the full file on GitHub · 214 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 214 lines · 82 tokens per session scan A eb757ad7fef5

Subscribe to this mod's changes

canon-color is a skill published in the GitHub repository Dragoon0x/canon (5 stars, last pushed 4mo ago), licensed MIT. It adds 82 tokens to every session and 2,497 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

accessibility

Accessibility (a11y) workflow skill. Use this skill when the user needs Audit and improve web accessibility following WCAG 2.1 guidelines. Use when asked to "improve accessibility", "a11y audit", "WCAG compliance", "screen reader support", "keyboard navigation", or "make accessible". Do NOT use for SEO (use seo)…

diegosouzapw/awesome-omni-skills · 119 tokens

accessibility

Use when making a web UI conform to WCAG 2.2 Level AA — axe-core or Lighthouse a11y violations, keyboard operability, focus management, ARIA roles/names/live regions, contrast, tap-target size. NOT palette or visual intent (that is design), NOT test-runner setup (that is testing-web), NOT LCP/page-speed (that is…

ericrisco/rsc-harness · 86 tokens

accessibility-compliance-accessibility-audit-v2

Accessibility Audit and Testing workflow skill. Use this skill when the user needs You are an accessibility expert specializing in WCAG compliance, inclusive design, and assistive technology compatibility. Conduct audits, identify barriers, and provide remediation guidance and the operator should preserve the upstream…

diegosouzapw/awesome-omni-skills · 76 tokens

accessibility-audit

Use when wCAG compliance audit — semantic HTML, ARIA, keyboard navigation, color contrast, and screen reader testing. Use when working with accessibility audit.

oyi77/1ai-skills · 37 tokens

a11y-audit

Dedicated WCAG 2.2 AA/AAA accessibility audit across 10 dimensions (A1-A10) covering semantic HTML, keyboard navigation, ARIA patterns, color contrast, forms, images/media, responsive/zoom, motion/animation, reading/content, and legal compliance. Goes far beyond surface-level design-review checks with deep…

greglas75/zuvo · 147 tokens

motion-video

Product animation, UI motion, portfolio videos — Apple-grade reveals, motion tokens, full production pipelines.

memi-design/design-skills · 22 tokens