Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

design-tokens设计代币

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

212

周安装

9

GitHub Stars

2

下载量

74
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:design-tokens(设计代币)
来源仓库:https://github.com/soborbo/claudeskills
仓库路径:skills/design-tokens
安装命令:
npx skills add https://github.com/soborbo/claudeskills --skill design-tokens
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/soborbo/claudeskills --skill design-tokens

简介

design-tokens 用于辅助界面设计、视觉规范和配色布局优化,适合处理 UI 方案和组件层级。

  • 它能帮助 Agent 生成 UI 方案、检查视觉一致性,提升设计效率。
  • 安装命令为 npx skills add https://github.com/soborbo/claudeskills --skill design-tokens,建议结合现有品牌和设计系统使用。
  • 使用时需确认用户任务和响应式表现,避免只堆装饰元素;涉及页面改动时应通过截图检查视觉效果。
  • 该技能适用于前端设计类任务,需配合宿主环境使用。

SKILL.md

Design Tokens Skill

siteConfig.brand → full design system. Zero guessing.

Purpose

Generate the complete design system (Tailwind config + CSS variables) from siteConfig.brand and siteConfig.fonts. This skill does NOT define colors or fonts — it expands them into a full token system.

Source of Truth

siteConfig is the source. This skill is the transformer. - Colors come from siteConfig.brand (primary, secondary, accent, dark, light) - Fonts come from siteConfig.fonts (heading, body) - This skill expands them into full scales, semantic tokens, and Tailwind config

What siteConfig provides → what this skill generates

siteConfig fieldThis skill generates
brand.primary (#2563EB)primary-50 through primary-950 (full scale)
brand.accent (#F59E0B)accent, accent-hover, accent-light
brand.dark (#1F2937)neutral-50 through neutral-900
brand.light (#F9FAFB)Light section backgrounds
brand.secondarySecondary element tokens
brand.surfaceCard/surface backgrounds (if set)
fonts.headingHeading font stack
fonts.bodyBody font stack with system fallbacks

Output

tokens_generated: true
tailwind_config: "tailwind.config.mjs"
css_variables: "src/styles/tokens.css"
design_token_verdict: PASS | WARN | FAIL

Generation Process

Step 1: Read siteConfig.brand

import { config } from '@/config/siteConfig.example';

const { primary, secondary, accent, dark, light, surface } = config.brand;
const { heading, body } = config.fonts;

Step 2: Generate full primary scale from base color

From brand.primary, generate shades 50–950 using HSL lightness shifts:

ShadeLightness shiftUse
50Very light (95%)Subtle backgrounds
100Light (90%)Section backgrounds
200(80%)Borders on dark
300(70%)Disabled states
400(55%)Placeholder text
500Base color
600(40%)Hover states
700(30%)Secondary text
800(20%)Headings
900(15%)Body text, headlines
950Very dark (10%)Maximum contrast

Step 3: Generate Tailwind config + CSS variables

Write tailwind.config.mjs with all tokens mapped from siteConfig, and src/styles/tokens.css with CSS custom properties.

Token Categories

TypeTokensUsage
Semanticprimary-*, accent, neutral-*Use in components
Utilityspacing.*, font-*, shadow-*Internal mapping only

Rule: Components use semantic tokens. Utility for internal only.

Token Usage Scope

TokenAllowedForbidden
accentCTAs, links, highlightsBody text, backgrounds
primary-900Headlines, body textButtons
primary-100Section backgroundsText
neutral-200Borders, dividersCTAs

Wrong scope = WARN.

Forbidden Raw Values

TypeForbiddenUse Instead
Colors#FF6B35, rgb()bg-accent, text-primary-900
Spacingmt-[23px]mt-6
Font sizestext-[18px]text-lg
Shadowsshadow-[...]shadow-card
Radiusrounded-[12px]rounded-lg

Any raw value in component = FAIL.

A11y Contrast Requirements

CombinationMin RatioStandard
Body text on white4.5:1AA
Body text on primary-1004.5:1AA
Large text (≥18px)3:1AA
CTA text on accent4.5:1AA
UI components3:1AA

Contrast fail = FAIL.

Color Contrast (WCAG AA — Mandatory)

Every text/background color pair MUST meet minimum contrast ratios:

Text TypeMin RatioExample
Normal text (<18px, or <14px bold)4.5:1Body text on backgrounds
Large text (≥18px, or ≥14px bold)3:1Headlines on colored sections
UI components (icons, borders)3:1Icon on background

Common failure patterns to avoid:

  • White text on medium-tone accent backgrounds (e.g. text-white on #C4704B = 3.2:1 FAIL)
  • Semi-transparent text (text-white/80, text-white/75) on colored backgrounds — the reduced opacity lowers contrast further
  • Light gray text on white backgrounds (text-gray-400 on white = often FAIL)

Validation: Use https://webaim.org/resources/contrastchecker/ for every text/background pair.

Rule: When choosing accent colors, always verify that white text passes 4.5:1 on the accent background. If it fails, darken the accent or use primary-900 text instead.

Typography (Fluid Scale)

Font family derived from siteConfig.fonts:

  • Heading: config.fonts.headingsystem-uisans-serif
  • Body: config.fonts.bodysystem-uisans-serif
TokenRangeUse
text-base16-18pxBody
text-lg18-20pxLead
text-2xl24-32pxH3
text-3xl30-40pxH2
text-4xl/5xl36-64pxH1

Spacing (8px Grid)

TokenValueUse
py-12 md:py-2048/80pxSection padding Y
px-4 md:px-816/32pxSection padding X
gap-6 md:gap-824/32pxComponent gap
p-4 md:p-616/24pxCard padding

Design Token Verdict

design_token_verdict: PASS | WARN | FAIL
issues: []
ConditionVerdict
Raw value in componentFAIL
Contrast failFAIL
Missing required tokenFAIL
Token doesn't trace back to siteConfigFAIL
Wrong token scopeWARN
Missing shade in scaleWARN
All rules passPASS

FAIL States

| Condition | | --- | | Hardcoded hex in component | | Arbitrary spacing [Xpx] | | Contrast ratio below AA | | Missing primary scale | | Missing accent colors | | Color/font not derived from siteConfig |

WARN States

| Condition | | --- | | Token used in wrong scope | | Missing optional shades | | Non-standard font loaded |

Definition of Done

  • tailwind.config.mjs generated from siteConfig.brand + siteConfig.fonts
  • tokens.css with CSS variables mapped to siteConfig values
  • Primary has full scale (50-950) generated from brand.primary
  • Accent has hover + light generated from brand.accent
  • Neutral scale generated from brand.dark
  • Font stacks use config.fonts.heading and config.fonts.body
  • Contrast passes AA for all generated combinations
  • No raw values in components
  • No hardcoded colors/fonts that bypass siteConfig
  • design_token_verdict = PASS

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.79%
按下载量换算26

Claude

32.65%
按下载量换算24

Cursor

19.33%
按下载量换算14

Gemini CLI

8.84%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills