brand-designer

brand-designer is a skill for Claude Code from teamniteo/hakuto. It costs 119 tokens per session (1,883 once invoked), scanned A, original, MIT.

A color-palette generator creates coordinated brand colors from a starting color, logo, or design direction. It uses common color relationships such as complementary, triadic, and analogous colors.

In plain words
What is it for?
Use it to customize website colors or create a new brand palette from hex codes, color names, descriptions, or a logo. It can also provide colors for a new site's visual style.
Why use it?
It removes guesswork when choosing colors that work together and keeps the palette balanced across a design.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the hakuto plugin — 14 skills, 1 command, 1 agent shipped together

Good fit Use it to customize website colors or create a new brand palette from hex codes, color names, descriptions, or a logo. It can also provide colors for a new site's visual style.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/teamniteo/hakuto/brand-designer
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 teamniteo/hakuto --skill brand-designer
Clone the repo
git clone --depth 1 https://github.com/teamniteo/hakuto

Made for: Claude Code.

Or install hakuto, the plugin that ships this one along with the rest of its 14 skills, 1 command, 1 agent.

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 brand-designer

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/teamniteo/hakuto/brand-designer"><img src="https://agentmods.dev/badge/skills/teamniteo/hakuto/brand-designer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 119 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,883 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.00119 $0.01883
Opus 5 $0.00060 $0.00941
Sonnet 5 $0.00024 $0.00377
Haiku 4.5 $0.00012 $0.00188

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

Security

Grade A, and why

brand-designer 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 9d 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.

skills/brand-designer/SKILL.md · 116 lines

How it starts

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

Designing Brand Colors

Generate custom brand color palettes using color theory (complementary, triadic, analogous schemes).

Workflow

1. Check Prerequisites

  • Read site-specification.md for the design direction (base language, dials) and existing colors. During a new-site build (website-builder Workflow A style preview), the spec may not exist yet — take the base language from the chosen direction instead.

2. Get Colors

Accept: hex codes, color names, descriptions, or logo analysis (identify 1-3 dominant colors). When invoked from website-builder's style preview with no user colors, take the seed from the direction's palette strategy instead — pick a concrete base hue matching its stated hue family and temperature, and vary that pick per project.

3. Generate Palette

Compute hue rotation directly in OKLCH — no external API. OKLCH is Tailwind v4's native color space, and rotating hue there preserves perceived lightness, so schemes come out balanced (HSL rotation makes yellows glare and blues muddy).

  1. Convert the base hex to OKLCH (oklch(L C H)).
  2. Rotate H by the scheme angle, keeping L and C:
    • Complementary: +180°
    • Triadic: ±120°
    • Analogous: ±30° (spread to ±60° for a wider family)
    • Split-complementary: 180° ± 30°
  3. Derive the neutral ramp from the dominant hue at very low chroma (C ≈ 0.005–0.02) so neutrals harmonize instead of reading as generic gray.
  4. Adjust L per role — backgrounds near the extremes (L ≥ 0.97 light / L ≤ 0.22 dark), text at the opposite end, accents in the vivid middle (L 0.55–0.75, C 0.15–0.25).
  5. Verify WCAG contrast (4.5:1 body text, 3:1 large text ≥18.66px or ≥14px bold) for every text/background pair; nudge L until it passes.
  6. Check the stock Tailwind neutrals the site will actually use, not only the generated tokens. Contrast failures overwhelmingly come from off-palette utilities reached for during page authoring — text-slate-400 is 2.56:1 on white and fails at every size, and text-sky-600 is 4.10:1, which passes only as large text. Both look fine in a mockup and both ship as body copy. For each neutral and accent utility the design intends for text, compute its ratio and record the verdict in site-specification.md:

Read the full file on GitHub · 116 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. 9d ago First seen · 116 lines · 119 tokens per session scan A b9d273ad5ea7

Subscribe to this mod's changes

brand-designer is a skill published in the GitHub repository teamniteo/hakuto (5 stars, last pushed 8d ago), licensed MIT. It adds 119 tokens to every session and 1,883 once invoked, about $0.0006 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

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

html-ppt-taste-brutalist

16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).

nexu-io/open-design · 78 tokens

visual-ralph

Visual Ralph orchestration for frontend UI from generated references, static references, or live URL targets, using $ralph with built-in visual verdict and pixel-diff evidence until the implementation matches and leaves a reproducible design system.

Yeachan-Heo/oh-my-codex · 50 tokens

accessibility

Consolidated accessibility skill entrypoint for WCAG 2.2, ARIA Authoring Practices, cognitive accessibility, Section 508, EN 301 549, design intent verification, and the Accessibility Planner workflow.

microsoft/hve-core · 47 tokens

make-resume

A Chinese-language tool for creating editable HTML resumes that can be changed in a browser and printed to PDF. It uses available resume templates when they are installed and otherwise provides a simpler fallback.

Hisn00w/ASu-skills · 86 tokens