color-system

color-system is a skill for Claude Code from soumyachk101/VibeLens. It costs 92 tokens per session (1,993 once invoked), scanned A, original, MIT.

A colour review and correction workflow for a running local web page. It checks the page’s palette, colour tokens, text contrast, controls, themes, and state indicators.

In plain words
What is it for?
Use it to audit a page’s light or dark theme, identify problematic colour values, and fix palette, contrast, and state-colour issues.
Why use it?
It helps find inconsistent colours, weak contrast, default-looking accents, and states that rely only on colour. It also checks both the visible result and the page’s underlying classes and source tokens.

Skill for Claude Code

Written for Claude Code: $ARGUMENTS substitution.

Part of the vibelens plugin — 12 skills, 4 agents, 1 hook shipped together

Good fit Use it to audit a page’s light or dark theme, identify problematic colour values, and fix palette, contrast, and state-colour issues.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/soumyachk101/vibelens/color-system
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 soumyachk101/VibeLens --skill color-system
Clone the repo
git clone --depth 1 https://github.com/soumyachk101/VibeLens

Made for: Claude Code.

Or install vibelens, the plugin that ships this one along with the rest of its 12 skills, 4 agents, 1 hook.

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 color-system

README.md
[![agentmods](https://agentmods.dev/badge/skills/soumyachk101/vibelens/color-system/github.svg)](https://agentmods.dev/skills/soumyachk101/vibelens/color-system)
Your own site
<a href="https://agentmods.dev/skills/soumyachk101/vibelens/color-system"><img src="https://agentmods.dev/badge/skills/soumyachk101/vibelens/color-system/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 color-system

Your own site · 80×15
<a href="https://agentmods.dev/skills/soumyachk101/vibelens/color-system"><img src="https://agentmods.dev/badge/skills/soumyachk101/vibelens/color-system.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,993 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.00092 $0.01993
Opus 5 $0.00046 $0.00996
Sonnet 5 $0.00018 $0.00399
Haiku 4.5 $0.00009 $0.00199

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

Security

Grade A, and why

color-system 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 11d 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.

plugin/skills/color-system/SKILL.md · 137 lines

How it starts

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

Colour system audit

Target: $ARGUMENTS (if empty, ask for the URL).

What this skill works from

simplifiedDOM carries the real class lists, so bg-blue-600, text-gray-500, border-slate-200, bg-[#3b82f6] and truncated inline style attributes are all readable directly. Stylesheets are stripped, so tokens defined in CSS (--primary, --background) must be read from the source. The screenshot is where you judge the result: which colour dominates, whether text separates from its surface, whether the accent still means anything.

Ramps, token naming and the contrast reasoning live in docs/design/COLOR.md. Reference it; do not restate it.

Steps

  1. Capture with inspect_localhost_ui, fullPage: true, viewport desktop. Capture the dark theme too if the app has one — reach it by whatever route the project uses (a ?theme=dark param, a class="dark" on <html>, or a temporary default flip in code, reverted after). The tool cannot click a theme toggle.

  2. Identify the accent. From the screenshot, name the colour doing the work on primary buttons, links and active states. From the DOM, find the classes that set it. Then decide which failure applies:

    • Framework default. blue-500/blue-600, indigo-500, #3b82f6, #6366f1, #0d6efd (Bootstrap), an untouched shadcn --primary, Chakra teal.500, MUI #1976d2. Report it as an unmade decision, not a bad colour.
    • Overused. The accent on cards, badges, borders, icons and headings at once. An accent that appears everywhere signals nothing. Reserve it for the primary action and the current state; everything else is neutral.
    • Underused. No accent at all, an all-grey page with grey buttons — the user cannot find the primary action.
  3. Hunt hardcoded values. Search the DOM for bg-[#, text-[#, border-[#, rgb(, rgba(, hsl( and hex in inline style. List every one with the element it sits on. Two shades of "the same" blue (#3b82f6 in one component, #3c82f7 or #2563eb in another) is proof that the value was retyped rather than referenced. Every one of these should become a token.

Read the full file on GitHub · 137 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. 11d ago First seen · 137 lines · 92 tokens per session scan A 3a742031a58f

Subscribe to this mod's changes

color-system is a skill published in the GitHub repository soumyachk101/VibeLens (0 stars, last pushed 4d ago), licensed MIT. It adds 92 tokens to every session and 1,993 once invoked, about $0.0005 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

frontend-ui-engineering

Builds production-quality, accessible, responsive user-facing UIs. Use when building or modifying interfaces and pages, creating components, implementing layouts, meeting WCAG accessibility requirements, managing state, or when the output needs to look and feel production-quality rather than AI-generated.

addyosmani/agent-skills · 58 tokens

21st-ui

Find, install, and generate UI with 21st.dev. Use when the user asks for a UI component (pricing table, hero, navbar, dashboard, form, etc.), wants design inspiration, needs a brand logo as an SVG component, or wants to generate new UI from a prompt.

21st-dev/magic-mcp · 63 tokens

ui-designer

Elite UI/UX Design Lead & Frontend Architect. Generates distinctive, non-templated interfaces with opinionated aesthetics, deliberate typography, and exact UX copy. Triggers on UI design, frontend styling, or layout creation.

GulajavaMinistudio/awesome-copilot-id · 49 tokens

impeccable

Use when the user wants to design, redesign, shape, critique, audit, polish, clarify, distill, harden, optimize, adapt, animate, colorize, extract, or otherwise improve a frontend interface. Covers websites, landing pages, dashboards, product UI, app shells, components, forms, settings, onboarding, and empty states.…

GulajavaMinistudio/awesome-copilot-id · 189 tokens

bootstrap

Bootstrap CSS framework for responsive design. Use for quick styling.

G1Joshi/Agent-Skills · 14 tokens

shadcnui

Skill "shadcnui" from G1Joshi/Agent-Skills, covering shadcn/ui, when to use, core concepts, copy/paste and radix ui.

G1Joshi/Agent-Skills · 21 tokens