@opendirectory.dev/skills 0.1.53 → 0.1.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/registry.json +10 -0
- package/skills/brand-alchemy/README.md +1 -1
- package/skills/graphic-slide-deck/README.md +129 -0
- package/skills/graphic-slide-deck/SKILL.md +364 -0
- package/skills/graphic-slide-deck/evals/evals.json +35 -0
- package/skills/graphic-slide-deck/references/animation-guide.md +100 -0
- package/skills/graphic-slide-deck/references/design-system.md +165 -0
- package/skills/graphic-slide-deck/references/layout-library.md +446 -0
- package/skills/graphic-slide-deck/references/style-presets.md +314 -0
|
@@ -0,0 +1,314 @@
|
|
|
1
|
+
# Style Presets
|
|
2
|
+
|
|
3
|
+
8 business-oriented style presets. Each is fully self-contained -- complete CSS token set, no "derive from" chains.
|
|
4
|
+
|
|
5
|
+
Choose based on purpose and audience. When in doubt: clean-slate for sales, midnight-editorial for investor, matt-gray for internal.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## 1. midnight-editorial
|
|
10
|
+
|
|
11
|
+
**Best for:** Investor decks, premium B2B, thought leadership presentations
|
|
12
|
+
**Feeling:** Editorial authority, premium, considered
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
Background: #0A0A0A outer / #111111 slide / #1A1A1A elevated cards / #080808 footer
|
|
16
|
+
Text primary: #F2F2F2
|
|
17
|
+
Text secondary: #AAAAAA
|
|
18
|
+
Text muted: #555555
|
|
19
|
+
Accent: #D8F90A (yellow-green)
|
|
20
|
+
Accent text: #0A0A0A (dark text on accent)
|
|
21
|
+
Divider: #2A2A2A
|
|
22
|
+
Card border: #222222
|
|
23
|
+
|
|
24
|
+
Display font: 'Instrument Serif', Georgia, 'Times New Roman', serif
|
|
25
|
+
Body font: Inter, Arial, Helvetica, sans-serif
|
|
26
|
+
Google Fonts: https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;700&display=swap
|
|
27
|
+
|
|
28
|
+
Display weight: 400 (Instrument Serif is a display weight at 400)
|
|
29
|
+
Body weight: 400 / 600 (bold callouts)
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
**Signature elements:**
|
|
33
|
+
- Thin `<hr>` separators between content blocks (`border: none; border-top: 1px solid #2A2A2A; width: 40px; margin: 0`)
|
|
34
|
+
- Oversized section numbers at `opacity: 0.08` as absolute background elements
|
|
35
|
+
- Instrument Serif italic on quote-callout slides (adds literary weight)
|
|
36
|
+
- stat-highlight numbers in `#D8F90A` accent color
|
|
37
|
+
- section-divider bg: `#D8F90A` with `#0A0A0A` text (full inversion)
|
|
38
|
+
|
|
39
|
+
**Background depth via section alternation:**
|
|
40
|
+
- Header / opening slides: `#0A0A0A`
|
|
41
|
+
- Main content slides: `#111111`
|
|
42
|
+
- Elevated cards (stats, callouts): `#1A1A1A`
|
|
43
|
+
- Closing slide: `#D8F90A` full bg with dark text
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## 2. matt-gray
|
|
48
|
+
|
|
49
|
+
**Best for:** Internal decks, operational reviews, professional presentations to mixed audiences
|
|
50
|
+
**Feeling:** Safe, professional, accessible, clean
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
Background: #F5F5F5 outer / #FFFFFF slide / #EEEEEE section alt / #F8F8F8 footer
|
|
54
|
+
Text primary: #1A1A1A
|
|
55
|
+
Text secondary: #444444
|
|
56
|
+
Text muted: #888888
|
|
57
|
+
Accent: #2563EB (blue)
|
|
58
|
+
Accent text: #FFFFFF (white text on accent)
|
|
59
|
+
Divider: #E5E5E5
|
|
60
|
+
Card border: #DDDDDD
|
|
61
|
+
Card shadow: 0 1px 3px rgba(0, 0, 0, 0.08)
|
|
62
|
+
|
|
63
|
+
Display font: 'DM Sans', Arial, Helvetica, sans-serif
|
|
64
|
+
Body font: 'DM Sans', Arial, Helvetica, sans-serif
|
|
65
|
+
Google Fonts: https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700;800&display=swap
|
|
66
|
+
|
|
67
|
+
Display weight: 700
|
|
68
|
+
Body weight: 400 / 500
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
**Signature elements:**
|
|
72
|
+
- 4px left border on section-divider and section heading elements (`border-left: 4px solid #2563EB; padding-left: 1rem`)
|
|
73
|
+
- Subtle drop shadow on stat-highlight cards
|
|
74
|
+
- Stat numbers in accent blue
|
|
75
|
+
- section-divider: `#EEEEEE` background (slight contrast from main white), left-border accent treatment
|
|
76
|
+
- Clean rectangular buttons if any CTAs (`border-radius: 6px`)
|
|
77
|
+
|
|
78
|
+
---
|
|
79
|
+
|
|
80
|
+
## 3. clean-slate
|
|
81
|
+
|
|
82
|
+
**Best for:** Sales decks, customer-facing presentations, any audience that expects professionalism
|
|
83
|
+
**Feeling:** Trustworthy, clear, confident, enterprise-safe
|
|
84
|
+
|
|
85
|
+
```
|
|
86
|
+
Background: #FFFFFF outer / #FFFFFF slide / #F8F8F8 alt sections / #F4F4F4 footer
|
|
87
|
+
Text primary: #111111
|
|
88
|
+
Text secondary: #555555
|
|
89
|
+
Text muted: #999999
|
|
90
|
+
Accent: #0F172A (near-black navy)
|
|
91
|
+
Accent light: #E0F2FE (light blue for pill/badge backgrounds)
|
|
92
|
+
Accent text: #FFFFFF
|
|
93
|
+
Divider: #E8E8E8
|
|
94
|
+
Card border: #E0E0E0
|
|
95
|
+
Card radius: 16px
|
|
96
|
+
Card shadow: 0 2px 8px rgba(0, 0, 0, 0.06)
|
|
97
|
+
|
|
98
|
+
Display font: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif
|
|
99
|
+
Body font: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif
|
|
100
|
+
Google Fonts: https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;800&display=swap
|
|
101
|
+
|
|
102
|
+
Display weight: 800
|
|
103
|
+
Body weight: 400 / 500
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
**Signature elements:**
|
|
107
|
+
- Rounded card containers on all callout elements (`border-radius: 16px`)
|
|
108
|
+
- Badge pills for category labels and key points (`border-radius: 100px; background: #E0F2FE; color: #0F172A; padding: 0.2em 0.8em`)
|
|
109
|
+
- Generous whitespace -- padding toward the maximum of each `clamp()` range
|
|
110
|
+
- stat-highlight: dark `#0F172A` numbers on white background (high contrast, no color distraction)
|
|
111
|
+
- section-divider: dark `#111111` background (inverts the white deck)
|
|
112
|
+
- closing-cta: `#0F172A` full bg with white text
|
|
113
|
+
|
|
114
|
+
---
|
|
115
|
+
|
|
116
|
+
## 4. brutalist
|
|
117
|
+
|
|
118
|
+
**Best for:** Startup pitches, design-forward tech audiences, conference talks with strong POV
|
|
119
|
+
**Feeling:** Direct, raw, confident, uncompromising
|
|
120
|
+
|
|
121
|
+
```
|
|
122
|
+
Background: #FFFFFF outer / #FFFFFF slide
|
|
123
|
+
Text primary: #000000
|
|
124
|
+
Text secondary: #333333
|
|
125
|
+
Accent: #FF3300 (red) or #FFE500 (yellow)
|
|
126
|
+
Accent text: #000000 (both red and yellow are light enough for dark text)
|
|
127
|
+
Divider: #000000 (solid black)
|
|
128
|
+
Border: 3px solid #000000 (heavy)
|
|
129
|
+
Border-radius: 0 (zero everywhere -- no rounded corners)
|
|
130
|
+
|
|
131
|
+
Display font: 'Archivo Black', Arial Black, Arial, sans-serif
|
|
132
|
+
Body font: 'Space Grotesk', Arial, sans-serif
|
|
133
|
+
Google Fonts: https://fonts.googleapis.com/css2?family=Archivo+Black&family=Space+Grotesk:wght@400;500;700&display=swap
|
|
134
|
+
|
|
135
|
+
Display weight: 900
|
|
136
|
+
Body weight: 400 / 700
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
**Signature elements:**
|
|
140
|
+
- Heavy borders everywhere: `border: 3px solid #000000` on cards, tables, section elements
|
|
141
|
+
- Zero border-radius on all elements -- absolute rule for this style
|
|
142
|
+
- Oversized section numbers in accent color (`font-size: clamp(6rem, 15vw, 12rem); opacity: 1` -- fully visible, not ghosted)
|
|
143
|
+
- section-divider: accent color full background (`#FF3300` or `#FFE500`) with black text
|
|
144
|
+
- stat-highlight: numbers in accent color, extreme size
|
|
145
|
+
- comparison-table: bold black borders, no row alternation -- raw grid
|
|
146
|
+
|
|
147
|
+
**DO NOT apply rounded corners, gradients, or drop shadows to brutalist decks. The aesthetic requires hard edges.**
|
|
148
|
+
|
|
149
|
+
---
|
|
150
|
+
|
|
151
|
+
## 5. mint-pixel-corporate
|
|
152
|
+
|
|
153
|
+
**Best for:** SaaS sales, product demos, tech company pitches, growth-stage startups
|
|
154
|
+
**Feeling:** Fresh, modern, startup-professional
|
|
155
|
+
|
|
156
|
+
```
|
|
157
|
+
Background: #F0FAF7 outer / #FFFFFF slide / #E8F5F0 alt sections / #F0FAF7 footer
|
|
158
|
+
Text primary: #1A2E2A
|
|
159
|
+
Text secondary: #4A6B62
|
|
160
|
+
Text muted: #7A9B92
|
|
161
|
+
Accent: #00B894 (mint)
|
|
162
|
+
Accent text: #1A2E2A (dark text on mint)
|
|
163
|
+
Divider: #D1E8E1
|
|
164
|
+
Card border: #C5DFD7
|
|
165
|
+
Card radius: 10px
|
|
166
|
+
|
|
167
|
+
Display font: 'Manrope', Arial, Helvetica, sans-serif
|
|
168
|
+
Body font: 'Manrope', Arial, Helvetica, sans-serif
|
|
169
|
+
Google Fonts: https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&display=swap
|
|
170
|
+
|
|
171
|
+
Display weight: 800
|
|
172
|
+
Body weight: 400 / 500
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
**Signature elements:**
|
|
176
|
+
- CSS `radial-gradient` dot pattern on section-divider slides:
|
|
177
|
+
```css
|
|
178
|
+
background-image: radial-gradient(circle, #00B894 1px, transparent 1px);
|
|
179
|
+
background-size: 24px 24px;
|
|
180
|
+
background-color: #1A2E2A;
|
|
181
|
+
```
|
|
182
|
+
- Mint accent pills for feature highlights (`border-radius: 100px; background: #00B894; color: #1A2E2A; padding: 0.15em 0.75em; font-size: clamp(0.65rem, 1vw, 0.8rem)`)
|
|
183
|
+
- Screenshot frames with mint border (`border: 2px solid #00B894; border-radius: 8px`)
|
|
184
|
+
- section-divider: dark `#1A2E2A` background with dot pattern + mint text
|
|
185
|
+
- stat-highlight: mint numbers on white background
|
|
186
|
+
|
|
187
|
+
---
|
|
188
|
+
|
|
189
|
+
## 6. product-minimal
|
|
190
|
+
|
|
191
|
+
**Best for:** Product demos, feature showcases, design system presentations, design-forward audiences
|
|
192
|
+
**Feeling:** Maximum whitespace, purposeful restraint, design system precision
|
|
193
|
+
|
|
194
|
+
```
|
|
195
|
+
Background: #FAFAFA outer / #FAFAFA slide / #F4F4F4 alt / #F0F0F0 footer
|
|
196
|
+
Text primary: #18181B
|
|
197
|
+
Text secondary: #71717A
|
|
198
|
+
Text muted: #A1A1AA
|
|
199
|
+
Accent: #8B5CF6 (violet)
|
|
200
|
+
Accent text: #FFFFFF (white on violet)
|
|
201
|
+
Divider: #E4E4E7
|
|
202
|
+
Card shadow: 0 1px 3px rgba(0, 0, 0, 0.08)
|
|
203
|
+
Card radius: 12px
|
|
204
|
+
|
|
205
|
+
Display font: 'Syne', Arial, Helvetica, sans-serif
|
|
206
|
+
Body font: 'IBM Plex Sans', Arial, Helvetica, sans-serif
|
|
207
|
+
Google Fonts: https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&family=IBM+Plex+Sans:wght@400;500;600&display=swap
|
|
208
|
+
|
|
209
|
+
Display weight: 700-800
|
|
210
|
+
Body weight: 400 / 500
|
|
211
|
+
```
|
|
212
|
+
|
|
213
|
+
**Signature elements:**
|
|
214
|
+
- Single accent element per slide rule: the accent color (`#8B5CF6`) appears in AT MOST ONE place per slide -- this creates intentional scarcity that reads premium
|
|
215
|
+
- Subtle CSS drop shadow on cards: `box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08)` -- barely visible, adds depth
|
|
216
|
+
- Very generous padding (use maximum clamp values)
|
|
217
|
+
- stat-highlight: violet stat numbers with a thin violet top-border on each stat card
|
|
218
|
+
- section-divider: `#18181B` full bg with Syne display font + white text
|
|
219
|
+
- closing-cta: violet background (`#8B5CF6`) with white text
|
|
220
|
+
|
|
221
|
+
---
|
|
222
|
+
|
|
223
|
+
## 7. magazine-red
|
|
224
|
+
|
|
225
|
+
**Best for:** Marketing campaign reviews, brand presentations, bold internal reporting, conference openers
|
|
226
|
+
**Feeling:** Authoritative, editorial, high energy, unmissable
|
|
227
|
+
|
|
228
|
+
```
|
|
229
|
+
Background: #1A1A1A outer / #111111 slide / #1E1E1E alt / #0D0D0D footer
|
|
230
|
+
Text primary: #FFFFFF
|
|
231
|
+
Text secondary: #CCCCCC
|
|
232
|
+
Text muted: #888888
|
|
233
|
+
Accent: #E63329 (red)
|
|
234
|
+
Accent secondary: #FFFFFF
|
|
235
|
+
Divider: #2A2A2A
|
|
236
|
+
|
|
237
|
+
Display font: 'Fraunces', Georgia, 'Times New Roman', serif
|
|
238
|
+
Body font: 'Work Sans', Arial, Helvetica, sans-serif
|
|
239
|
+
Google Fonts: https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,900;1,900&family=Work+Sans:wght@400;500;600&display=swap
|
|
240
|
+
|
|
241
|
+
Display weight: 900
|
|
242
|
+
Body weight: 400 / 500
|
|
243
|
+
```
|
|
244
|
+
|
|
245
|
+
**Signature elements:**
|
|
246
|
+
- 8px full-width horizontal red band: `<div style="width:100%; height:8px; background:#E63329; margin: clamp(1rem, 2vw, 2rem) 0">` used as visual separator
|
|
247
|
+
- Editorial section numbers in red, visible opacity (`opacity: 0.3` -- not fully ghosted like midnight-editorial)
|
|
248
|
+
- quote-callout slides: INVERTED to white background with dark text (the only white slide in the deck)
|
|
249
|
+
```css
|
|
250
|
+
.slide--quote-callout { background: #FFFFFF; color: #111111; }
|
|
251
|
+
```
|
|
252
|
+
- Fraunces italic for quote text: extreme editorial weight
|
|
253
|
+
- stat-highlight: red accent numbers, large
|
|
254
|
+
- closing-cta: full red background (`#E63329`) with white text
|
|
255
|
+
|
|
256
|
+
---
|
|
257
|
+
|
|
258
|
+
## 8. soft-cloud
|
|
259
|
+
|
|
260
|
+
**Best for:** Onboarding decks, customer education, approachable SaaS, HR/people presentations
|
|
261
|
+
**Feeling:** Friendly, accessible, soft, welcoming -- high trust, low intimidation
|
|
262
|
+
|
|
263
|
+
```
|
|
264
|
+
Background: #EEF2FF outer / #FFFFFF slide / #F5F3FF alt / #EEF2FF footer
|
|
265
|
+
Text primary: #1E1B4B
|
|
266
|
+
Text secondary: #4C4A7B
|
|
267
|
+
Text muted: #9896C0
|
|
268
|
+
Accent: #6366F1 (indigo)
|
|
269
|
+
Accent light: #E0E7FF (light indigo for card backgrounds)
|
|
270
|
+
Accent text: #FFFFFF
|
|
271
|
+
Divider: #DDD6FE
|
|
272
|
+
Card radius: 24px (soft, generous)
|
|
273
|
+
Card shadow: 0 4px 16px rgba(99, 102, 241, 0.08)
|
|
274
|
+
|
|
275
|
+
Display font: 'Outfit', Arial, Helvetica, sans-serif
|
|
276
|
+
Body font: 'Outfit', Arial, Helvetica, sans-serif
|
|
277
|
+
Google Fonts: https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap
|
|
278
|
+
|
|
279
|
+
Display weight: 700
|
|
280
|
+
Body weight: 400 / 500
|
|
281
|
+
```
|
|
282
|
+
|
|
283
|
+
**Signature elements:**
|
|
284
|
+
- Generous border-radius everywhere: `border-radius: 24px` on all cards, callout blocks, stat containers
|
|
285
|
+
- Gradient section-dividers:
|
|
286
|
+
```css
|
|
287
|
+
background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 50%, #DDD6FE 100%);
|
|
288
|
+
```
|
|
289
|
+
- Badge pills on key points: `border-radius: 100px; background: #E0E7FF; color: #6366F1; padding: 0.2em 0.9em`
|
|
290
|
+
- stat-highlight: stat numbers in indigo on `#F5F3FF` elevated card background
|
|
291
|
+
- All `<hr>` dividers: `border-color: #DDD6FE` (matches the soft palette)
|
|
292
|
+
- closing-cta: indigo gradient background
|
|
293
|
+
```css
|
|
294
|
+
background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
|
|
295
|
+
```
|
|
296
|
+
|
|
297
|
+
---
|
|
298
|
+
|
|
299
|
+
## DO NOT USE -- Style Slop Checklist
|
|
300
|
+
|
|
301
|
+
Before outputting any HTML, verify none of these are present:
|
|
302
|
+
|
|
303
|
+
| Pattern | Why it's wrong |
|
|
304
|
+
|---|---|
|
|
305
|
+
| Inter as display font | Zero typographic character -- reads as default AI output |
|
|
306
|
+
| Purple-to-blue gradient on white background | Most overused "modern" AI aesthetic -- immediately signals undesigned |
|
|
307
|
+
| Every slide centered with the same layout | No typographic thinking, looks like a PowerPoint default theme |
|
|
308
|
+
| Identical slide backgrounds throughout | No visual rhythm -- the deck reads as one long scroll |
|
|
309
|
+
| `box-shadow` on everything | Overused "depth" signal that adds no real depth |
|
|
310
|
+
| `border-radius: 8px` on everything (even brutalist) | Softening that fights the style's aesthetic intent |
|
|
311
|
+
| Accent color on 5+ elements per slide | Over-branded, destroys scarcity = destroys premium feel |
|
|
312
|
+
| Helvetica Neue / Arial as display font | Generic -- no personality at display size |
|
|
313
|
+
| Stat numbers at body text size | Doesn't understand the stat-highlight layout's purpose |
|
|
314
|
+
| "Thank You" as closing slide | Missed the closing-cta layout's entire purpose |
|