Generate and edit Draw.io, Mermaid, and Excalidraw diagrams from natural language using a structured JSON spec.
Design & media
color-system
Try itComprehensive multi-domain color design system — covering both digital product UI (semantic CSS color tokens, dark/light mode, WCAG AA contrast) and graphic/print design (CMYK/Pantone specs, print paper absorption & spot colors, 60-30-10 harmony rules, emotional poster & packaging palettes). Use when: configuring color tokens, generating tokens.css, designing dark/light mode palettes, or determining CMYK/Pantone colors for graphic, poster, and packaging print materials. Keywords: color system, 色彩系统, 配色方案, color tokens, dark mode, light mode, 平面设计配色, 印刷色彩, CMYK, Pantone, 包装配色, 海报配色.
What it does
Color System — Multi-Domain Color Architecture
The skill document
Color System — Multi-Domain Color Architecture
Comprehensive color design system governing both digital product interfaces (Web/App tokens & theming) and graphic/print media (CMYK/Pantone & prepress standards).
Architecture Overview
This skill operates across two specialized domains depending on the user's medium:
┌─────────────────────────┐
│ color-system │
│ Multi-Domain Color Core │
└────────────┬────────────┘
│
┌─────────────────────────┴─────────────────────────┐
▼ ▼
┌─────────────────────────────────┐ ┌─────────────────────────────────┐
│ Domain 1: Digital UI & Tokens │ │ Domain 2: Graphic & Print Media │
│ • Semantic CSS vars (tokens.css)│ │ • CMYK (FOGRA39) & Pantone Spot │
│ • Auto Light/Dark mode switching│ │ • 60-30-10 Rule & Emotion Matrix│
│ • WCAG AA (≥4.5:1 / ≥3:1) check │ │ • Pure K100 vs Rich Black (TIC) │
│ • 5 Curated Palettes + Custom │ │ • Substrate dot gain absorption │
└─────────────────────────────────┘ └─────────────────────────────────┘
Domain 1: Digital Product & UI Color Tokens
This track produces production-ready CSS token blocks (tokens.css) containing semantic variables with automatic dark-mode adaptation.
Side Files
assets/tokens-template.css— base CSS template with light/dark scaffolding.references/palettes.md— curated digital palette catalog with all 5 systems' light and dark values.
Available Digital Palettes
| Keyword | Name | Vibe | Best for |
|---|---|---|---|
neutral | Neutral Modern | Clean, safe, neutral | General products, dashboards, B2B tools |
linear | Linear Dark | Dark-native, precision engineering | Developer tools, SaaS, data-dense UIs |
claude | Claude Warm | Warm parchment, literary, human | AI products, content platforms, editorial |
cursor | Cursor Code | Warm light, code-editor aesthetic | Developer tools, IDEs, technical products |
lovable | Lovable Pop | Creamy, playful, low-barrier | No-code tools, creative apps, onboarding |
custom | Custom | Derived from your base color | Brand-specific needs, experiments |
Digital Workflow
- Determine palette: Ask user for keyword or derive from a base hex color + mood (
warm/cool/neutral). - Consult reference: Read
references/palettes.mdfor curated palettes. - Generate
:rootblock for default light-mode values. - Generate
@media (prefers-color-scheme: dark)and.darkblock for dark-mode overrides. - Validate WCAG AA contrast ratios:
- Body text (≤16px): ≥ 4.5:1
- Large text (>18px or 14px bold): ≥ 3:1
- UI components / borders: ≥ 3:1
- Emit CSS block and enforce accent discipline (max 2 visible accent uses per screen).
Standard Token Set
| Token | Role |
|---|---|
--bg | Page canvas |
--surface | Elevated cards, panels |
--surface-warm | Tertiary surface tier (buttons, prominent interactive) |
--fg | Primary text |
--fg-2 | Secondary emphasis text |
--muted | Placeholders, metadata |
--meta | Tertiary text, footnotes |
--border | Standard borders |
--border-soft | Subtle dividers |
--accent | Primary CTA, links, brand moments |
--accent-on | Text on accent background |
--accent-hover | Hover state for accent elements |
--accent-active | Active/pressed state |
--success / --warn / --danger | Semantic state feedback |
Domain 2: Graphic & Print Design Color System
This track provides physical media color standards, converting visual concepts into accurate CMYK formulas, Pantone spot colors, and print prepress parameters.
Reference Manual
references/graphic-print-color.md— deep-dive guide on gamut conversion, black ink rules, paper substrates, and industry mood matrices.
Core Graphic Color Rules
- 60-30-10 Golden Ratio:
- 60% Dominant Base: Canvas, background paper tone, dominant negative space.
- 30% Secondary Structure: Layout elements, secondary blocks, major headline typography.
- 10% Visual Accent Hook: Focal hook, CTA sticker, key emblem, spot foil/varnish.
- RGB ➜ CMYK Gamut Protection:
- For physical print, never rely on unmanaged RGB conversions (especially vibrant greens, cyan blues, and fluorescent pinks).
- High-chroma branding elements must be assigned a dedicated Pantone Spot Color (
Formula Guide Coated/Uncoated).
- Black Ink Prepress Rules:
- Body text (≤24pt) & barcodes: Strictly single black
C:0 M:0 Y:0 K:100. Never use four-color rich black for fine text. - Large dark backgrounds: Rich black (
C:30 M:20 Y:20 K:100orC:40 M:30 Y:0 K:100). Total Ink Coverage (TIC) must remain ≤ 300% to prevent drying defects and offset smearing.
- Body text (≤24pt) & barcodes: Strictly single black
- Substrate & Paper Absorption Compensation:
- Coated art paper: High color fidelity, small dot gain (~10%-15%).
- Uncoated paper: High dot gain (~20%-25%), colors darken and desaturate; increase pre-press curve brightness by +5%~10%.
- Specialty/Kraft paper: Dark or tinted base; white elements require an opaque spot white underprint (
白墨打底).
Graphic Color Deliverable Format
When delivering a color system for posters, brochures, packaging, or brand VI collateral, output the following structured specification:
### [Palette Name] Print & Graphic Color Specification
| Role | Color Name | HEX / RGB | CMYK (FOGRA39) | Pantone Spot | Substrate & Application Notes |
|---|---|---|---|---|---|
| Dominant (60%) | [Name] | `#HEX` / `R,G,B` | `C:__ M:__ Y:__ K:__` | `PANTONE ___ C/U` | Canvas / background cardstock; check paper tone |
| Secondary (30%) | [Name] | `#HEX` / `R,G,B` | `C:__ M:__ Y:__ K:__` | `PANTONE ___ C/U` | Primary headline typography & structural graphics |
| Accent (10%) | [Name] | `#HEX` / `R,G,B` | `C:__ M:__ Y:__ K:__` | `PANTONE ___ C/U` | Focal hook, brand badge, hot foil / spot UV plate |
| Body Text Black | Standard Black | `#000000` / `0,0,0` | `C:0 M:0 Y:0 K:100` | — | Text ≤24pt, barcodes; strictly no rich black mixing |
Related skills
Find why your productivity system keeps failing, then apply the smallest fix — capacity math, bottleneck routing, durable local notes.
Fetch raw ad creative, app, ranking, and revenue data from AdMapix as structured JSON.
Trade crypto, manage a multi-chain wallet, and query an AI analyst from one CLI.
Join a video meeting as an AI bot with voice, avatar, and screenshare across four operating modes.
Stores durable facts in a categorized, plain-markdown vault on disk, alongside your agent's built-in memory.
More from fize
Browse all skills多 Agent 并行投研与风控决策流水线。输入标的代码与日期,并发调度多个专业 Subagent 全面透视基本面 EPS 与多模型市值、筹码资金与机构热度、全网消息舆情,结合大势环境进行量化风控核验(一票否决门禁),最终交付综合决策研报。各专员 Prompt 独立存放于 agents/ 目录下,践行渐进式披露直接调用 market 技能获取底层数据,数据缺失时严格终止阻断。当用户需要启动多智能体对个股进行全流程深度透视、并行流水线分析或产出多维研报时触发(包含触发词:投研流水线, 多Agent分析, 并行深研, 标的透视, ticker pipeline)。
End-to-end brand visual identity (VI) design methodology — a six-stage workflow from brand soul discovery to visual identity system building and multi-touchpoint brand manual delivery. Covers core concept, logo design, color strategy, typography, graphic language, and touchpoint application. Use when: designing brand identity, visual identity systems (VI), logo design, brand guidelines, or brand manuals. Keywords: brand identity, VI设计, 品牌视觉系统, 品牌VI, logo design, 品牌设计, 品牌手册, brand guidelines.
Graphic design deep research: automatically collects design references across domestic and international platforms (Behance, Dribbble, Pinterest, Zcool, Huaban), performs cluster analysis on aesthetic trends, and outputs visual HTML research reports with reusable exploratory prompts. Use when: researching design directions, analyzing visual trends, gathering inspiration moodboards, or exploring visual styles. Keywords: 设计调研, 灵感调研, 风格调研, 视觉参考, 情绪板, design research, aesthetic trends, moodboard.
A股交易标准操作程序(SOP)总编排。从用户的自然语言输入出发,识别当前交易意图(盘前准备、盘中复盘、盘后复盘、个股深度研究、首板隔夜),按需编排调用现有技能流水线,最终输出可操作的决策建议。当用户提出日常交易操作、盘前准备、盘中复盘、盘后总结、全流程投研或个股深研请求时触发(包含触发词:今天怎么操作, 帮我做盘前, 复盘一下, 研究一下, 首板今晚要不要留, 当前市场适合买吗, 给我一套完整分析, 全流程分析, SOP, 操作建议, 我要开始做功课了, trading sop)。
个股及 ETF 标的基本面与技术面综合分析 SOP(支持 A 股、港股及美股)。融合真实 EPS 核算、多模型目标市值测算、财务三大表、20+ 项确定性技术指标及大势环境校准,输出标准化《标的量化投研报告》。当用户需要深度分析个股、评估公司基本面估值、计算目标价、分析财报或量化技术面时触发(包含触发词:个股分析, 基本面研究, 估值测算, 财报透视, 目标市值, asset analysis, valuation, DCF, PEG, EPS)。
Frontend interaction resilience & defense SOP for engineering implementation. Covers 7-step pre-coding interaction checklist: user intent & task friction reduction, P0/P1/P2 information hierarchy triage, 4-state resilience (empty, loading, error, destructive confirmation), perceived performance (optimistic UI, skeletons), power user shortcuts, and layout resilience trade-offs. Use when: implementing UI views/forms/dashboards in code, designing component interaction logic, handling edge cases and states, or conducting frontend UX resilience reviews. Keywords: 交互细节, 状态设计, 边界情况, 异常处理, 交互审查, 骨架屏, 乐观更新, 防错设计, interaction design, edge cases, error state, empty state, loading state, UI review, UI resilience.