文档

Theme Factory

试用

Curated collection of professional color and typography themes for styling artifacts — slides, docs, reports, landing pages. Use when applying visual themes to presentations, generating themed content, or creating custom brand palettes. Triggers on theme, color palette, font pairing, slide styling, presentation theme, brand colors.

它能做什么

Apply consistent, professional styling to any artifact using curated themes with color palettes and font pairings.

技能文档

Theme Factory

Apply consistent, professional styling to any artifact using curated themes with color palettes and font pairings.


When to Use

  • Styling slide decks, reports, or documents with a cohesive visual identity
  • Applying color palettes and font pairings to HTML pages or landing pages
  • Choosing a pre-built theme for quick professional styling
  • Creating a custom theme when none of the presets fit

How to Use

Step 1: Present Available Themes

Show the user the 10 available themes with their descriptions:

#ThemeVibeBest For
1Ocean DepthsProfessional, calming maritimeCorporate, financial, consulting
2Sunset BoulevardWarm, vibrant energyCreative pitches, marketing, events
3Forest CanopyNatural, grounded earth tonesEnvironmental, sustainability, wellness
4Modern MinimalistClean, contemporary grayscaleTech, architecture, design showcases
5Golden HourRich, warm autumnalHospitality, lifestyle, artisan brands
6Arctic FrostCool, crisp precisionHealthcare, technology, clean tech
7Desert RoseSoft, sophisticated dusty tonesFashion, beauty, interior design
8Tech InnovationBold, high-contrast modernStartups, software launches, AI/ML
9Botanical GardenFresh, organic vibrancyFood, garden, natural products
10Midnight GalaxyDramatic, cosmic depthEntertainment, gaming, luxury brands

Step 2: Get User Selection

Ask which theme to apply. Wait for explicit confirmation before proceeding.

Step 3: Apply the Theme

  1. Read the selected theme file from themes/ directory
  2. Apply colors and fonts consistently throughout the artifact
  3. Ensure proper contrast and readability
  4. Maintain the theme's visual identity across all pages/slides

Theme File Structure

Each theme in themes/ follows this format:

# Theme Name

Description of the visual mood and inspiration.

## Color Palette
- **Primary Dark**: `#hex` — Usage description
- **Accent**: `#hex` — Usage description
- **Secondary**: `#hex` — Usage description
- **Light/Background**: `#hex` — Usage description

## Typography
- **Headers**: Font family
- **Body Text**: Font family

## Best Used For
Context and audience descriptions.

Applying Themes to Different Artifacts

Slide Decks

  • Background: Use the primary dark color for title slides, light color for content slides
  • Headers: Apply the header font in the accent color
  • Body text: Use the body font in the primary dark color on light backgrounds
  • Accents: Use accent/secondary colors for charts, highlights, dividers

HTML / Landing Pages

:root {
  --theme-primary: #hex;     /* From theme's primary dark */
  --theme-accent: #hex;      /* From theme's accent color */
  --theme-secondary: #hex;   /* From theme's secondary */
  --theme-bg: #hex;          /* From theme's light/background */
  --theme-font-heading: "Theme Header Font", sans-serif;
  --theme-font-body: "Theme Body Font", sans-serif;
}

Documents / Reports

  • Cover page: Primary dark background with light text
  • Section headers: Accent color with header font
  • Body: Body font on light background
  • Charts/tables: Use accent and secondary for data series
  • Callout boxes: Secondary color as background with primary text

Creating a Custom Theme

When no preset fits, generate a custom theme:

  1. Gather input — Ask about the brand, audience, mood, and context
  2. Select palette — Choose 4 colors that form a cohesive palette:
    • One dark anchor color (backgrounds, text)
    • One primary accent (emphasis, CTAs)
    • One secondary accent (supporting elements)
    • One light/neutral (backgrounds, whitespace)
  3. Pair fonts — Choose complementary heading and body fonts:
    • Heading: distinctive, personality-driven
    • Body: readable, clean
  4. Validate contrast — Ensure WCAG AA compliance for text on backgrounds
  5. Name the theme — Give it an evocative name describing the visual feeling
  6. Document — Write a theme file matching the standard format
  7. Review — Show the theme for approval before applying

Palette Harmony Rules

  • Complementary: Colors opposite on the wheel (high contrast)
  • Analogous: Colors adjacent on the wheel (harmonious)
  • Triadic: Three evenly spaced colors (vibrant but balanced)
  • Split-complementary: Base + two colors adjacent to its complement (versatile)

Contrast Guidelines

Ensure readability when applying any theme:

CombinationMinimum RatioWCAG Level
Body text on background4.5:1AA
Large text (18px+) on background3:1AA
UI components / borders3:1AA
Enhanced readability7:1AAA

Test accent colors against both light and dark backgrounds before finalizing.


Available Themes

All theme definitions are in the themes/ directory:

  • themes/ocean-depths.md
  • themes/sunset-boulevard.md
  • themes/forest-canopy.md
  • themes/modern-minimalist.md
  • themes/golden-hour.md
  • themes/arctic-frost.md
  • themes/desert-rose.md
  • themes/tech-innovation.md
  • themes/botanical-garden.md
  • themes/midnight-galaxy.md

NEVER Do

  • Apply a theme without confirmation — always get explicit user selection
  • Mix colors from different themes — each theme is a cohesive unit
  • Ignore contrast ratios — readability trumps aesthetics
  • Use accent colors for large text blocks — accents are for emphasis only
  • Skip font pairing — headers and body fonts must complement each other
  • Hardcode theme values — use CSS variables for easy theme switching

  • design-system-patterns — Token architecture and theming infrastructure
  • distinctive-design-systems — Aesthetic documentation and unique visual identity

相关技能

执行 Git 操作(提交、分支、合并、变基、冲突解决与恢复)时强制套用安全规则。

作者 Iván532 次安装31 星标

通过托管 OAuth 访问 Microsoft Graph Excel 接口,读写 OneDrive 中的工作簿、工作表、区域、表格与图表。

作者 byungkyu800 次安装42 星标

三阶段结构化流程,协助你完成技术规格、PRD、设计文档、提案和决策文档的协作撰写

作者 Anthropic177.6k 星标

获取带引用的 OpenAI 官方开发者文档,并附带 Codex 自有知识与模型选型指导。

作者 OpenAI27.6k 星标

pptx

官方

用脚本生成、编辑和读取 .pptx 与 .potx 文件,提供缩略图、复制幻灯片和校验功能。

作者 Anthropic177.6k 星标

xlsx

官方

用 openpyxl、pandas 和 LibreOffice 打开、读取、修改和创建 .xlsx/.xlsm/.xltx/.csv/.tsv 文件,并校验公式。

作者 Anthropic177.6k 星标

wpank 的更多技能

浏览全部技能

Systematic code review patterns covering security, performance, maintainability, correctness, and testing — with severity levels, structured feedback guidance, review process, and anti-patterns to avoid. Use when reviewing PRs, establishing review standards, or improving review quality.

作者 wpank553 次安装20 星标

Pragmatic coding standards for writing clean, maintainable code — naming, functions, structure, anti-patterns, and pre-edit safety checks. Use when writing new code, refactoring existing code, reviewing code quality, or establishing coding standards.

作者 wpank198 次安装6 星标

Build reliable, fast E2E test suites with Playwright and Cypress. Critical user journey coverage, flaky test elimination, CI/CD integration.

作者 wpank336 次安装6 星标

Build scalable, themable Tailwind CSS component libraries using CVA for variants, compound components, design tokens, dark mode, and responsive grids.

作者 wpank217 次安装9 星标

Create software diagrams using Mermaid syntax. Use when users need to create, visualize, or document software through diagrams including class diagrams, sequence diagrams, flowcharts, ERDs, C4 architecture diagrams, state diagrams, git graphs, and other diagram types. Triggers include requests to diagram, visualize, model, map out, or show the flow of a system.

作者 wpank251 次安装5 星标

Provides backend architecture patterns (Clean Architecture, Hexagonal, DDD) for building maintainable, testable, and scalable systems with clear layering and...

作者 wpank152 次安装7 星标