color-consistency-checker — for Claude Code color-consistency-checker, craft-beer-wizard, community, for Claude Code, ide skills, tailwind.config.ts, #FFBF00, primary, #E5AC00, #1a1a1a

v1.0.0

About this Skill

Perfect for Frontend Agents working with Tailwind CSS projects, ensuring color consistency across custom UI components. Prüft die Farbkonsistenz im Projekt. Findet hardcoded Hex-Farben die durch Tailwind-Klassen ersetzt werden sollten. Verwende diesen Skill bei Code-Reviews, nach UI-Änderungen, oder wenn der User nach

Features

Color Consistency Checker
Prüft ob Farben konsistent mit dem Farbschema verwendet werden.
Offizielles Farbschema
Definiert in tailwind.config.ts und app/globals.css:
Farbe Hex Tailwind-Klasse Verwendung

# Core Topics

jonsdoesch87-ai jonsdoesch87-ai
[0]
[0]
Updated: 3/12/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Locale and body language aligned
Review Score
8/11
Quality Score
36
Canonical Locale
en
Detected Body Locale
en

Perfect for Frontend Agents working with Tailwind CSS projects, ensuring color consistency across custom UI components. Prüft die Farbkonsistenz im Projekt. Findet hardcoded Hex-Farben die durch Tailwind-Klassen ersetzt werden sollten. Verwende diesen Skill bei Code-Reviews, nach UI-Änderungen, oder wenn der User nach

Core Value

Empowers agents to enforce a defined color scheme, utilizing Tailwind CSS classes and configuration files like `tailwind.config.ts` and `app/globals.css`, to maintain visual consistency and brand identity.

Ideal Agent Persona

Perfect for Frontend Agents working with Tailwind CSS projects, ensuring color consistency across custom UI components.

Capabilities Granted for color-consistency-checker

Validating color usage in UI components against the official color scheme
Automating color consistency checks for new feature developments
Debugging inconsistent color applications in existing projects

! Prerequisites & Limits

  • Requires access to Tailwind CSS project configuration files
  • Limited to projects using Tailwind CSS framework
  • Needs predefined color scheme definitions in `tailwind.config.ts` and `app/globals.css`

Why this page is reference-only

  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is color-consistency-checker?

Perfect for Frontend Agents working with Tailwind CSS projects, ensuring color consistency across custom UI components. Prüft die Farbkonsistenz im Projekt. Findet hardcoded Hex-Farben die durch Tailwind-Klassen ersetzt werden sollten. Verwende diesen Skill bei Code-Reviews, nach UI-Änderungen, oder wenn der User nach

How do I install color-consistency-checker?

Run the command: npx killer-skills add jonsdoesch87-ai/craft-beer-wizard/color-consistency-checker. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for color-consistency-checker?

Key use cases include: Validating color usage in UI components against the official color scheme, Automating color consistency checks for new feature developments, Debugging inconsistent color applications in existing projects.

Which IDEs are compatible with color-consistency-checker?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for color-consistency-checker?

Requires access to Tailwind CSS project configuration files. Limited to projects using Tailwind CSS framework. Needs predefined color scheme definitions in `tailwind.config.ts` and `app/globals.css`.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add jonsdoesch87-ai/craft-beer-wizard/color-consistency-checker. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use color-consistency-checker immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

color-consistency-checker

Install color-consistency-checker, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Color Consistency Checker

Prüft ob Farben konsistent mit dem Farbschema verwendet werden.

Offizielles Farbschema

Definiert in tailwind.config.ts und app/globals.css:

FarbeHexTailwind-KlasseVerwendung
Primary#FFBF00primaryAkzente, Buttons, Links
Primary Hover#E5AC00primary/90Hover-States
Primary Foreground#1a1a1aprimary-foregroundText auf Primary
Background#1a1a1abackgroundHintergrund
Foreground#edededforegroundText
Secondary#2a2a2asecondarySekundäre Elemente
Muted#2a2a2amutedGedämpfte Bereiche
Muted Foreground#a0a0a0muted-foregroundGedämpfter Text
Border#3a3a3aborderRahmen
Destructive#ef4444destructiveFehler, Löschen
Success#4CBB17successErfolg
Ring#FFBF00ringFocus-Ring

Häufige Probleme

1. Hardcoded Hex statt Tailwind-Klasse

tsx
1// ❌ Schlecht - hardcoded 2className="bg-[#FFBF00] text-black hover:bg-[#E5AC00]" 3className="text-[#FFBF00]" 4className="border-[#FFBF00]" 5 6// ✅ Gut - Tailwind-Klassen 7className="bg-primary text-primary-foreground hover:bg-primary/90" 8className="text-primary" 9className="border-primary"

2. Inkonsistente Hover-States

tsx
1// ❌ Verschiedene Hover-Farben 2hover:bg-[#E5AC00] // manchmal 3hover:bg-[#d4a000] // manchmal anders 4 5// ✅ Konsistent 6hover:bg-primary/90

3. Hardcoded Grautöne

tsx
1// ❌ Hardcoded 2bg-[#1a1a1a] 3text-[#ededed] 4border-[#3a3a3a] 5 6// ✅ Semantic 7bg-background 8text-foreground 9border-border

Prüfungs-Workflow

Schritt 1: Finde hardcoded Farben

bash
1# Alle Hex-Farben in TSX/TS Dateien 2rg '#[0-9A-Fa-f]{6}' --type ts --type tsx -g '!*.json' 3 4# Spezifisch Primary-Farbe 5rg '#FFBF00|#ffbf00' --type ts --type tsx 6 7# Bracket-Notation (Tailwind arbitrary values) 8rg '\[#[0-9A-Fa-f]{6}\]' --type ts --type tsx

Schritt 2: Kategorisiere die Funde

KategorieAktion
#FFBF00 in classNameprimary
#E5AC00 in hoverprimary/90
#1a1a1a Backgroundbackground
#ededed Textforeground
#3a3a3a Borderborder
#ef4444 Errordestructive
#4CBB17 Successsuccess
Andere Hex-Werte→ Prüfen ob notwendig

Schritt 3: Ausnahmen identifizieren

Diese hardcoded Farben sind OK:

  1. EBC/SRM Bierfarben in RecipeCard.tsx:

    tsx
    1// Diese sind dynamisch berechnet! 2if (srm < 4) return "#F8F5D4"; // Pale Straw 3if (srm < 7) return "#F3F993"; // Gold
  2. Print Styles in RecipeCard.tsx:

    tsx
    1// Print braucht andere Farben 2border-bottom: 2px solid #FFBF00;
  3. OG Images in app/api/og/:

    tsx
    1// Generierte Bilder, kein Tailwind

Report-Format

markdown
1## Farbkonsistenz-Prüfung 2 3### 🔴 Kritisch (hardcoded Primary) 4| Datei | Zeile | Aktuell | Vorschlag | 5|-------|-------|---------|-----------| 6| Navbar.tsx | 42 | `bg-[#FFBF00]` | `bg-primary` | 7 8### 🟡 Empfohlen (andere hardcoded) 9| Datei | Zeile | Aktuell | Vorschlag | 10|-------|-------|---------|-----------| 11| Footer.tsx | 15 | `text-[#a0a0a0]` | `text-muted-foreground` | 12 13### ✅ Ausnahmen (OK) 14- RecipeCard.tsx: EBC Farben (dynamisch berechnet) 15- api/og/route.tsx: OG Image Generation

Bekannte Dateien mit vielen Hardcoded Farben

Diese Dateien haben besonders viele hardcoded Farben:

  • app/cellar/page.tsx - 13 Stellen
  • components/RecipeCard.tsx - 82 Stellen (viele OK wegen Print/EBC)
  • components/BrewSession.tsx - 110 Stellen
  • components/WizardStep2.tsx - 6 Stellen
  • components/Navbar.tsx - 22 Stellen

Ersetzungs-Regeln

Button Primary

tsx
1// ❌ Vorher 2<Button className="bg-[#FFBF00] text-black hover:bg-[#E5AC00]"> 3 4// ✅ Nachher 5<Button className="bg-primary text-primary-foreground hover:bg-primary/90">

Text Primary

tsx
1// ❌ Vorher 2<span className="text-[#FFBF00]"> 3 4// ✅ Nachher 5<span className="text-primary">

Tab Active State

tsx
1// ❌ Vorher 2className="data-[state=active]:bg-[#FFBF00] data-[state=active]:text-black" 3 4// ✅ Nachher 5className="data-[state=active]:bg-primary data-[state=active]:text-primary-foreground"

Star/Rating

tsx
1// ❌ Vorher 2className={rating ? "text-[#FFBF00] fill-[#FFBF00]" : "text-zinc-600"} 3 4// ✅ Nachher 5className={rating ? "text-primary fill-primary" : "text-muted-foreground"}

Related Skills

Looking for an alternative to color-consistency-checker or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

openclaw-release-maintainer is an AI agent skill for openclaw release maintainer.

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

flags is an AI agent skill for use this skill when adding or changing framework feature flags in next.js internals.

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

pr-review is an AI agent skill for pytorch pr review skill.

98.6k
0
Developer