Theme Factory
Apply consistent, professional styling to any artifact using curated themes with color palettes and font pairings.
Installation
OpenClaw / Moltbot / Clawbot
npx clawhub@latest install theme-factory
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:
| # |
Theme |
Vibe |
Best For |
| 1 |
Ocean Depths |
Professional, calming maritime |
Corporate, financial, consulting |
| 2 |
Sunset Boulevard |
Warm, vibrant energy |
Creative pitches, marketing, events |
| 3 |
Forest Canopy |
Natural, grounded earth tones |
Environmental, sustainability, wellness |
| 4 |
Modern Minimalist |
Clean, contemporary grayscale |
Tech, architecture, design showcases |
| 5 |
Golden Hour |
Rich, warm autumnal |
Hospitality, lifestyle, artisan brands |
| 6 |
Arctic Frost |
Cool, crisp precision |
Healthcare, technology, clean tech |
| 7 |
Desert Rose |
Soft, sophisticated dusty tones |
Fashion, beauty, interior design |
| 8 |
Tech Innovation |
Bold, high-contrast modern |
Startups, software launches, AI/ML |
| 9 |
Botanical Garden |
Fresh, organic vibrancy |
Food, garden, natural products |
| 10 |
Midnight Galaxy |
Dramatic, cosmic depth |
Entertainment, gaming, luxury brands |
Step 2: Get User Selection
Ask which theme to apply. Wait for explicit confirmation before proceeding.
Step 3: Apply the Theme
- Read the selected theme file from
themes/ directory
- Apply colors and fonts consistently throughout the artifact
- Ensure proper contrast and readability
- 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:
- Gather input — Ask about the brand, audience, mood, and context
- 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)
- Pair fonts — Choose complementary heading and body fonts:
- Heading: distinctive, personality-driven
- Body: readable, clean
- Validate contrast — Ensure WCAG AA compliance for text on backgrounds
- Name the theme — Give it an evocative name describing the visual feeling
- Document — Write a theme file matching the standard format
- 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:
| Combination |
Minimum Ratio |
WCAG Level |
| Body text on background |
4.5:1 |
AA |
| Large text (18px+) on background |
3:1 |
AA |
| UI components / borders |
3:1 |
AA |
| Enhanced readability |
7:1 |
AAA |
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
Related Skills
1---2name: theme-factory-33description: 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.4---5
6# Theme Factory
7
8Apply consistent, professional styling to any artifact using curated themes with color palettes and font pairings.
9
10
11## Installation
12
13### OpenClaw / Moltbot / Clawbot
14
15```bash
16npx clawhub@latest install theme-factory
17```
18
19
20---
21
22## When to Use
23
24- Styling slide decks, reports, or documents with a cohesive visual identity
25- Applying color palettes and font pairings to HTML pages or landing pages
26- Choosing a pre-built theme for quick professional styling
27- Creating a custom theme when none of the presets fit
28
29---
30
31## How to Use
32
33### Step 1: Present Available Themes
34
35Show the user the 10 available themes with their descriptions:
36
37| # | Theme | Vibe | Best For |
38|---|-------|------|----------|
39| 1 | Ocean Depths | Professional, calming maritime | Corporate, financial, consulting |
40| 2 | Sunset Boulevard | Warm, vibrant energy | Creative pitches, marketing, events |
41| 3 | Forest Canopy | Natural, grounded earth tones | Environmental, sustainability, wellness |
42| 4 | Modern Minimalist | Clean, contemporary grayscale | Tech, architecture, design showcases |
43| 5 | Golden Hour | Rich, warm autumnal | Hospitality, lifestyle, artisan brands |
44| 6 | Arctic Frost | Cool, crisp precision | Healthcare, technology, clean tech |
45| 7 | Desert Rose | Soft, sophisticated dusty tones | Fashion, beauty, interior design |
46| 8 | Tech Innovation | Bold, high-contrast modern | Startups, software launches, AI/ML |
47| 9 | Botanical Garden | Fresh, organic vibrancy | Food, garden, natural products |
48| 10 | Midnight Galaxy | Dramatic, cosmic depth | Entertainment, gaming, luxury brands |
49
50### Step 2: Get User Selection
51
52Ask which theme to apply. Wait for explicit confirmation before proceeding.
53
54### Step 3: Apply the Theme
55
561. Read the selected theme file from `themes/` directory
572. Apply colors and fonts consistently throughout the artifact
583. Ensure proper contrast and readability
594. Maintain the theme's visual identity across all pages/slides
60
61---
62
63## Theme File Structure
64
65Each theme in `themes/` follows this format:
66
67```markdown
68# Theme Name
69
70Description of the visual mood and inspiration.
71
72## Color Palette
73- **Primary Dark**: `#hex` — Usage description
74- **Accent**: `#hex` — Usage description
75- **Secondary**: `#hex` — Usage description
76- **Light/Background**: `#hex` — Usage description
77
78## Typography
79- **Headers**: Font family
80- **Body Text**: Font family
81
82## Best Used For
83Context and audience descriptions.
84```
85
86---
87
88## Applying Themes to Different Artifacts
89
90### Slide Decks
91
92- **Background**: Use the primary dark color for title slides, light color for content slides
93- **Headers**: Apply the header font in the accent color
94- **Body text**: Use the body font in the primary dark color on light backgrounds
95- **Accents**: Use accent/secondary colors for charts, highlights, dividers
96
97### HTML / Landing Pages
98
99```css
100:root {
101 --theme-primary: #hex; /* From theme's primary dark */
102 --theme-accent: #hex; /* From theme's accent color */
103 --theme-secondary: #hex; /* From theme's secondary */
104 --theme-bg: #hex; /* From theme's light/background */
105 --theme-font-heading: "Theme Header Font", sans-serif;
106 --theme-font-body: "Theme Body Font", sans-serif;
107}
108```
109
110### Documents / Reports
111
112- **Cover page**: Primary dark background with light text
113- **Section headers**: Accent color with header font
114- **Body**: Body font on light background
115- **Charts/tables**: Use accent and secondary for data series
116- **Callout boxes**: Secondary color as background with primary text
117
118---
119
120## Creating a Custom Theme
121
122When no preset fits, generate a custom theme:
123
1241. **Gather input** — Ask about the brand, audience, mood, and context
1252. **Select palette** — Choose 4 colors that form a cohesive palette:
126 - One dark anchor color (backgrounds, text)
127 - One primary accent (emphasis, CTAs)
128 - One secondary accent (supporting elements)
129 - One light/neutral (backgrounds, whitespace)
1303. **Pair fonts** — Choose complementary heading and body fonts:
131 - Heading: distinctive, personality-driven
132 - Body: readable, clean
1334. **Validate contrast** — Ensure WCAG AA compliance for text on backgrounds
1345. **Name the theme** — Give it an evocative name describing the visual feeling
1356. **Document** — Write a theme file matching the standard format
1367. **Review** — Show the theme for approval before applying
137
138### Palette Harmony Rules
139
140- **Complementary**: Colors opposite on the wheel (high contrast)
141- **Analogous**: Colors adjacent on the wheel (harmonious)
142- **Triadic**: Three evenly spaced colors (vibrant but balanced)
143- **Split-complementary**: Base + two colors adjacent to its complement (versatile)
144
145---
146
147## Contrast Guidelines
148
149Ensure readability when applying any theme:
150
151| Combination | Minimum Ratio | WCAG Level |
152|-------------|--------------|------------|
153| Body text on background | 4.5:1 | AA |
154| Large text (18px+) on background | 3:1 | AA |
155| UI components / borders | 3:1 | AA |
156| Enhanced readability | 7:1 | AAA |
157
158Test accent colors against both light and dark backgrounds before finalizing.
159
160---
161
162## Available Themes
163
164All theme definitions are in the `themes/` directory:
165
166- [themes/ocean-depths.md](themes/ocean-depths.md)
167- [themes/sunset-boulevard.md](themes/sunset-boulevard.md)
168- [themes/forest-canopy.md](themes/forest-canopy.md)
169- [themes/modern-minimalist.md](themes/modern-minimalist.md)
170- [themes/golden-hour.md](themes/golden-hour.md)
171- [themes/arctic-frost.md](themes/arctic-frost.md)
172- [themes/desert-rose.md](themes/desert-rose.md)
173- [themes/tech-innovation.md](themes/tech-innovation.md)
174- [themes/botanical-garden.md](themes/botanical-garden.md)
175- [themes/midnight-galaxy.md](themes/midnight-galaxy.md)
176
177---
178
179## NEVER Do
180
181- **Apply a theme without confirmation** — always get explicit user selection
182- **Mix colors from different themes** — each theme is a cohesive unit
183- **Ignore contrast ratios** — readability trumps aesthetics
184- **Use accent colors for large text blocks** — accents are for emphasis only
185- **Skip font pairing** — headers and body fonts must complement each other
186- **Hardcode theme values** — use CSS variables for easy theme switching
187
188---
189
190## Related Skills
191
192- [design-system-patterns](../design-system-patterns/) — Token architecture and theming infrastructure
193- [distinctive-design-systems](../distinctive-design-systems/) — Aesthetic documentation and unique visual identity