ui-pro-forge-cli 2.5.0
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/README.md +99 -0
- package/assets/data/app-interface.csv +31 -0
- package/assets/data/charts.csv +26 -0
- package/assets/data/colors.csv +194 -0
- package/assets/data/google-fonts.csv +1924 -0
- package/assets/data/icons.csv +106 -0
- package/assets/data/landing.csv +35 -0
- package/assets/data/motion.csv +17 -0
- package/assets/data/products.csv +193 -0
- package/assets/data/react-performance.csv +45 -0
- package/assets/data/stacks/angular.csv +51 -0
- package/assets/data/stacks/astro.csv +54 -0
- package/assets/data/stacks/avalonia.csv +57 -0
- package/assets/data/stacks/flutter.csv +53 -0
- package/assets/data/stacks/html-tailwind.csv +56 -0
- package/assets/data/stacks/javafx.csv +76 -0
- package/assets/data/stacks/jetpack-compose.csv +53 -0
- package/assets/data/stacks/laravel.csv +51 -0
- package/assets/data/stacks/nextjs.csv +53 -0
- package/assets/data/stacks/nuxt-ui.csv +71 -0
- package/assets/data/stacks/nuxtjs.csv +59 -0
- package/assets/data/stacks/react-native.csv +52 -0
- package/assets/data/stacks/react.csv +54 -0
- package/assets/data/stacks/shadcn.csv +61 -0
- package/assets/data/stacks/solidjs.csv +21 -0
- package/assets/data/stacks/svelte.csv +54 -0
- package/assets/data/stacks/swiftui.csv +51 -0
- package/assets/data/stacks/threejs.csv +54 -0
- package/assets/data/stacks/uno.csv +60 -0
- package/assets/data/stacks/vue.csv +50 -0
- package/assets/data/stacks/winui.csv +60 -0
- package/assets/data/styles.csv +86 -0
- package/assets/data/typography.csv +75 -0
- package/assets/data/ui-reasoning.csv +162 -0
- package/assets/data/ux-guidelines.csv +100 -0
- package/assets/scripts/core.py +463 -0
- package/assets/scripts/design_system.py +1371 -0
- package/assets/scripts/search.py +162 -0
- package/assets/scripts/tests/test_core.py +134 -0
- package/assets/scripts/validate_data.py +114 -0
- package/assets/skills/banner-design/SKILL.md +196 -0
- package/assets/skills/banner-design/references/banner-sizes-and-styles.md +118 -0
- package/assets/skills/brand/SKILL.md +97 -0
- package/assets/skills/brand/references/approval-checklist.md +169 -0
- package/assets/skills/brand/references/asset-organization.md +157 -0
- package/assets/skills/brand/references/brand-guideline-template.md +140 -0
- package/assets/skills/brand/references/color-palette-management.md +186 -0
- package/assets/skills/brand/references/consistency-checklist.md +94 -0
- package/assets/skills/brand/references/logo-usage-rules.md +185 -0
- package/assets/skills/brand/references/messaging-framework.md +85 -0
- package/assets/skills/brand/references/typography-specifications.md +214 -0
- package/assets/skills/brand/references/update.md +118 -0
- package/assets/skills/brand/references/visual-identity.md +96 -0
- package/assets/skills/brand/references/voice-framework.md +88 -0
- package/assets/skills/brand/scripts/extract-colors.cjs +341 -0
- package/assets/skills/brand/scripts/inject-brand-context.cjs +349 -0
- package/assets/skills/brand/scripts/sync-brand-to-tokens.cjs +248 -0
- package/assets/skills/brand/scripts/tests/test_sync_brand_to_tokens.py +52 -0
- package/assets/skills/brand/scripts/validate-asset.cjs +387 -0
- package/assets/skills/brand/templates/brand-guidelines-starter.md +275 -0
- package/assets/skills/design/SKILL.md +313 -0
- package/assets/skills/design/data/cip/deliverables.csv +51 -0
- package/assets/skills/design/data/cip/industries.csv +21 -0
- package/assets/skills/design/data/cip/mockup-contexts.csv +21 -0
- package/assets/skills/design/data/cip/styles.csv +21 -0
- package/assets/skills/design/data/icon/styles.csv +16 -0
- package/assets/skills/design/data/logo/colors.csv +56 -0
- package/assets/skills/design/data/logo/industries.csv +56 -0
- package/assets/skills/design/data/logo/styles.csv +56 -0
- package/assets/skills/design/references/banner-sizes-and-styles.md +118 -0
- package/assets/skills/design/references/cip-deliverable-guide.md +95 -0
- package/assets/skills/design/references/cip-design.md +121 -0
- package/assets/skills/design/references/cip-prompt-engineering.md +84 -0
- package/assets/skills/design/references/cip-style-guide.md +68 -0
- package/assets/skills/design/references/design-routing.md +207 -0
- package/assets/skills/design/references/icon-design.md +122 -0
- package/assets/skills/design/references/logo-color-psychology.md +101 -0
- package/assets/skills/design/references/logo-design.md +92 -0
- package/assets/skills/design/references/logo-prompt-engineering.md +158 -0
- package/assets/skills/design/references/logo-style-guide.md +109 -0
- package/assets/skills/design/references/slides-copywriting-formulas.md +84 -0
- package/assets/skills/design/references/slides-create.md +4 -0
- package/assets/skills/design/references/slides-html-template.md +295 -0
- package/assets/skills/design/references/slides-layout-patterns.md +137 -0
- package/assets/skills/design/references/slides-strategies.md +94 -0
- package/assets/skills/design/references/slides.md +42 -0
- package/assets/skills/design/references/social-photos-design.md +329 -0
- package/assets/skills/design/scripts/cip/core.py +215 -0
- package/assets/skills/design/scripts/cip/generate.py +484 -0
- package/assets/skills/design/scripts/cip/render-html.py +424 -0
- package/assets/skills/design/scripts/cip/search.py +127 -0
- package/assets/skills/design/scripts/icon/generate.py +487 -0
- package/assets/skills/design/scripts/logo/core.py +175 -0
- package/assets/skills/design/scripts/logo/generate.py +362 -0
- package/assets/skills/design/scripts/logo/search.py +114 -0
- package/assets/skills/design-system/SKILL.md +244 -0
- package/assets/skills/design-system/data/slide-backgrounds.csv +11 -0
- package/assets/skills/design-system/data/slide-charts.csv +26 -0
- package/assets/skills/design-system/data/slide-color-logic.csv +14 -0
- package/assets/skills/design-system/data/slide-copy.csv +26 -0
- package/assets/skills/design-system/data/slide-layout-logic.csv +16 -0
- package/assets/skills/design-system/data/slide-layouts.csv +26 -0
- package/assets/skills/design-system/data/slide-strategies.csv +16 -0
- package/assets/skills/design-system/data/slide-typography.csv +15 -0
- package/assets/skills/design-system/references/component-specs.md +236 -0
- package/assets/skills/design-system/references/component-tokens.md +214 -0
- package/assets/skills/design-system/references/primitive-tokens.md +203 -0
- package/assets/skills/design-system/references/semantic-tokens.md +215 -0
- package/assets/skills/design-system/references/states-and-variants.md +241 -0
- package/assets/skills/design-system/references/tailwind-integration.md +251 -0
- package/assets/skills/design-system/references/token-architecture.md +224 -0
- package/assets/skills/design-system/scripts/embed-tokens.cjs +99 -0
- package/assets/skills/design-system/scripts/fetch-background.py +317 -0
- package/assets/skills/design-system/scripts/generate-slide.py +770 -0
- package/assets/skills/design-system/scripts/generate-tokens.cjs +205 -0
- package/assets/skills/design-system/scripts/html-token-validator.py +327 -0
- package/assets/skills/design-system/scripts/search-slides.py +218 -0
- package/assets/skills/design-system/scripts/slide-token-validator.py +35 -0
- package/assets/skills/design-system/scripts/slide_search_core.py +453 -0
- package/assets/skills/design-system/scripts/tests/test_validate_tokens.py +48 -0
- package/assets/skills/design-system/scripts/validate-tokens.cjs +246 -0
- package/assets/skills/design-system/templates/design-tokens-starter.json +143 -0
- package/assets/skills/slides/SKILL.md +40 -0
- package/assets/skills/slides/references/copywriting-formulas.md +84 -0
- package/assets/skills/slides/references/create.md +4 -0
- package/assets/skills/slides/references/html-template.md +295 -0
- package/assets/skills/slides/references/layout-patterns.md +137 -0
- package/assets/skills/slides/references/slide-strategies.md +94 -0
- package/assets/skills/ui-styling/LICENSE.txt +202 -0
- package/assets/skills/ui-styling/SKILL.md +324 -0
- package/assets/skills/ui-styling/references/canvas-design-system.md +320 -0
- package/assets/skills/ui-styling/references/shadcn-accessibility.md +471 -0
- package/assets/skills/ui-styling/references/shadcn-components.md +424 -0
- package/assets/skills/ui-styling/references/shadcn-theming.md +373 -0
- package/assets/skills/ui-styling/references/tailwind-customization.md +483 -0
- package/assets/skills/ui-styling/references/tailwind-responsive.md +382 -0
- package/assets/skills/ui-styling/references/tailwind-utilities.md +455 -0
- package/assets/skills/ui-styling/scripts/requirements.txt +17 -0
- package/assets/skills/ui-styling/scripts/shadcn_add.py +308 -0
- package/assets/skills/ui-styling/scripts/tailwind_config_gen.py +473 -0
- package/assets/skills/ui-styling/scripts/tests/coverage-ui.json +1 -0
- package/assets/skills/ui-styling/scripts/tests/requirements.txt +3 -0
- package/assets/skills/ui-styling/scripts/tests/test_shadcn_add.py +266 -0
- package/assets/skills/ui-styling/scripts/tests/test_tailwind_config_gen.py +394 -0
- package/assets/templates/base/quick-reference.md +297 -0
- package/assets/templates/base/skill-content.md +384 -0
- package/assets/templates/platforms/agent.json +21 -0
- package/assets/templates/platforms/augment.json +18 -0
- package/assets/templates/platforms/claude.json +21 -0
- package/assets/templates/platforms/codebuddy.json +21 -0
- package/assets/templates/platforms/codewhale.json +21 -0
- package/assets/templates/platforms/codex.json +21 -0
- package/assets/templates/platforms/continue.json +21 -0
- package/assets/templates/platforms/copilot.json +21 -0
- package/assets/templates/platforms/cursor.json +21 -0
- package/assets/templates/platforms/droid.json +21 -0
- package/assets/templates/platforms/gemini.json +21 -0
- package/assets/templates/platforms/kilocode.json +21 -0
- package/assets/templates/platforms/kiro.json +21 -0
- package/assets/templates/platforms/opencode.json +21 -0
- package/assets/templates/platforms/qoder.json +21 -0
- package/assets/templates/platforms/roocode.json +21 -0
- package/assets/templates/platforms/trae.json +21 -0
- package/assets/templates/platforms/warp.json +18 -0
- package/assets/templates/platforms/windsurf.json +21 -0
- package/dist/commands/init.d.ts +11 -0
- package/dist/commands/init.js +165 -0
- package/dist/commands/uninstall.d.ts +7 -0
- package/dist/commands/uninstall.js +131 -0
- package/dist/commands/update.d.ts +7 -0
- package/dist/commands/update.js +73 -0
- package/dist/commands/versions.d.ts +5 -0
- package/dist/commands/versions.js +36 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +78 -0
- package/dist/types/index.d.ts +40 -0
- package/dist/types/index.js +25 -0
- package/dist/utils/detect.d.ts +8 -0
- package/dist/utils/detect.js +115 -0
- package/dist/utils/extract.d.ts +15 -0
- package/dist/utils/extract.js +125 -0
- package/dist/utils/github.d.ts +12 -0
- package/dist/utils/github.js +97 -0
- package/dist/utils/logger.d.ts +8 -0
- package/dist/utils/logger.js +9 -0
- package/dist/utils/template.d.ts +50 -0
- package/dist/utils/template.js +249 -0
- package/package.json +65 -0
|
@@ -0,0 +1,275 @@
|
|
|
1
|
+
# Brand Guidelines v1.0
|
|
2
|
+
|
|
3
|
+
> Last updated: {DATE}
|
|
4
|
+
> Status: Draft
|
|
5
|
+
|
|
6
|
+
## Quick Reference
|
|
7
|
+
|
|
8
|
+
| Element | Value |
|
|
9
|
+
|---------|-------|
|
|
10
|
+
| Primary Color | #2563EB |
|
|
11
|
+
| Secondary Color | #8B5CF6 |
|
|
12
|
+
| Primary Font | Inter |
|
|
13
|
+
| Voice | Professional, Helpful, Clear |
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## 1. Color Palette
|
|
18
|
+
|
|
19
|
+
### Primary Colors
|
|
20
|
+
|
|
21
|
+
| Name | Hex | RGB | Usage |
|
|
22
|
+
|------|-----|-----|-------|
|
|
23
|
+
| Primary Blue | #2563EB | rgb(37,99,235) | CTAs, headers, links |
|
|
24
|
+
| Primary Dark | #1D4ED8 | rgb(29,78,216) | Hover states, emphasis |
|
|
25
|
+
|
|
26
|
+
### Secondary Colors
|
|
27
|
+
|
|
28
|
+
| Name | Hex | RGB | Usage |
|
|
29
|
+
|------|-----|-----|-------|
|
|
30
|
+
| Secondary Purple | #8B5CF6 | rgb(139,92,246) | Accents, highlights |
|
|
31
|
+
| Accent Green | #10B981 | rgb(16,185,129) | Success, positive states |
|
|
32
|
+
|
|
33
|
+
### Neutral Palette
|
|
34
|
+
|
|
35
|
+
| Name | Hex | RGB | Usage |
|
|
36
|
+
|------|-----|-----|-------|
|
|
37
|
+
| Background | #FFFFFF | rgb(255,255,255) | Page backgrounds |
|
|
38
|
+
| Surface | #F9FAFB | rgb(249,250,251) | Cards, sections |
|
|
39
|
+
| Text Primary | #111827 | rgb(17,24,39) | Headings, body text |
|
|
40
|
+
| Text Secondary | #6B7280 | rgb(107,114,128) | Captions, muted text |
|
|
41
|
+
| Border | #E5E7EB | rgb(229,231,235) | Dividers, borders |
|
|
42
|
+
|
|
43
|
+
### Semantic Colors
|
|
44
|
+
|
|
45
|
+
| State | Hex | Usage |
|
|
46
|
+
|-------|-----|-------|
|
|
47
|
+
| Success | #22C55E | Positive actions, confirmations |
|
|
48
|
+
| Warning | #F59E0B | Cautions, pending states |
|
|
49
|
+
| Error | #EF4444 | Errors, destructive actions |
|
|
50
|
+
| Info | #3B82F6 | Informational messages |
|
|
51
|
+
|
|
52
|
+
### Accessibility
|
|
53
|
+
|
|
54
|
+
- Text on white background: 7.2:1 contrast ratio (AAA)
|
|
55
|
+
- Primary on white: 4.6:1 contrast ratio (AA)
|
|
56
|
+
- All interactive elements meet WCAG 2.1 AA standards
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
## 2. Typography
|
|
61
|
+
|
|
62
|
+
### Font Stack
|
|
63
|
+
|
|
64
|
+
```css
|
|
65
|
+
--font-heading: 'Inter', system-ui, -apple-system, sans-serif;
|
|
66
|
+
--font-body: 'Inter', system-ui, -apple-system, sans-serif;
|
|
67
|
+
--font-mono: 'JetBrains Mono', 'Fira Code', monospace;
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
### Type Scale
|
|
71
|
+
|
|
72
|
+
| Element | Size (Desktop) | Size (Mobile) | Weight | Line Height |
|
|
73
|
+
|---------|----------------|---------------|--------|-------------|
|
|
74
|
+
| H1 | 48px | 32px | 700 | 1.2 |
|
|
75
|
+
| H2 | 36px | 28px | 600 | 1.25 |
|
|
76
|
+
| H3 | 28px | 24px | 600 | 1.3 |
|
|
77
|
+
| H4 | 24px | 20px | 600 | 1.35 |
|
|
78
|
+
| Body | 16px | 16px | 400 | 1.5 |
|
|
79
|
+
| Body Large | 18px | 18px | 400 | 1.6 |
|
|
80
|
+
| Small | 14px | 14px | 400 | 1.5 |
|
|
81
|
+
| Caption | 12px | 12px | 400 | 1.4 |
|
|
82
|
+
|
|
83
|
+
### Font Loading
|
|
84
|
+
|
|
85
|
+
```html
|
|
86
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
87
|
+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
---
|
|
91
|
+
|
|
92
|
+
## 3. Logo Usage
|
|
93
|
+
|
|
94
|
+
### Variants
|
|
95
|
+
|
|
96
|
+
| Variant | File | Use Case |
|
|
97
|
+
|---------|------|----------|
|
|
98
|
+
| Full Horizontal | logo-full-horizontal.svg | Headers, documents |
|
|
99
|
+
| Stacked | logo-stacked.svg | Square spaces |
|
|
100
|
+
| Icon Only | logo-icon.svg | Favicons, small spaces |
|
|
101
|
+
| Monochrome | logo-mono.svg | Limited color contexts |
|
|
102
|
+
|
|
103
|
+
### Clear Space
|
|
104
|
+
|
|
105
|
+
Minimum clear space = height of the logo icon (mark)
|
|
106
|
+
|
|
107
|
+
### Minimum Size
|
|
108
|
+
|
|
109
|
+
| Context | Minimum Width |
|
|
110
|
+
|---------|---------------|
|
|
111
|
+
| Digital - Full Logo | 120px |
|
|
112
|
+
| Digital - Icon | 24px |
|
|
113
|
+
| Print - Full Logo | 35mm |
|
|
114
|
+
| Print - Icon | 10mm |
|
|
115
|
+
|
|
116
|
+
### Don'ts
|
|
117
|
+
|
|
118
|
+
- Don't rotate or skew the logo
|
|
119
|
+
- Don't change colors outside approved palette
|
|
120
|
+
- Don't add shadows or effects
|
|
121
|
+
- Don't crop or modify proportions
|
|
122
|
+
- Don't place on busy backgrounds without sufficient contrast
|
|
123
|
+
|
|
124
|
+
---
|
|
125
|
+
|
|
126
|
+
## 4. Voice & Tone
|
|
127
|
+
|
|
128
|
+
### Brand Personality
|
|
129
|
+
|
|
130
|
+
| Trait | Description |
|
|
131
|
+
|-------|-------------|
|
|
132
|
+
| **Professional** | Expert knowledge, authoritative yet approachable |
|
|
133
|
+
| **Helpful** | Solution-focused, actionable guidance |
|
|
134
|
+
| **Clear** | Direct communication, jargon-free |
|
|
135
|
+
| **Confident** | Assured without being arrogant |
|
|
136
|
+
|
|
137
|
+
### Voice Chart
|
|
138
|
+
|
|
139
|
+
| Trait | We Are | We Are Not |
|
|
140
|
+
|-------|--------|------------|
|
|
141
|
+
| Professional | Expert, knowledgeable | Stuffy, corporate |
|
|
142
|
+
| Helpful | Supportive, empowering | Patronizing |
|
|
143
|
+
| Clear | Direct, concise | Vague, wordy |
|
|
144
|
+
| Confident | Assured, trustworthy | Arrogant, overselling |
|
|
145
|
+
|
|
146
|
+
### Tone by Context
|
|
147
|
+
|
|
148
|
+
| Context | Tone | Example |
|
|
149
|
+
|---------|------|---------|
|
|
150
|
+
| Marketing | Engaging, benefit-focused | "Create campaigns that convert." |
|
|
151
|
+
| Documentation | Clear, instructional | "Run the command to start." |
|
|
152
|
+
| Error messages | Calm, solution-focused | "Try refreshing the page." |
|
|
153
|
+
| Success | Brief, celebratory | "Campaign published!" |
|
|
154
|
+
|
|
155
|
+
### Prohibited Terms
|
|
156
|
+
|
|
157
|
+
| Avoid | Reason |
|
|
158
|
+
|-------|--------|
|
|
159
|
+
| Revolutionary | Overused |
|
|
160
|
+
| Best-in-class | Vague claim |
|
|
161
|
+
| Seamless | Overused |
|
|
162
|
+
| Synergy | Corporate jargon |
|
|
163
|
+
| Leverage | Use "use" instead |
|
|
164
|
+
|
|
165
|
+
---
|
|
166
|
+
|
|
167
|
+
## 5. Imagery Guidelines
|
|
168
|
+
|
|
169
|
+
### Photography Style
|
|
170
|
+
|
|
171
|
+
- **Lighting:** Natural, soft lighting preferred
|
|
172
|
+
- **Subjects:** Real people, authentic scenarios
|
|
173
|
+
- **Color treatment:** Maintain brand colors in post
|
|
174
|
+
- **Composition:** Clean, focused subjects
|
|
175
|
+
|
|
176
|
+
### Illustrations
|
|
177
|
+
|
|
178
|
+
- Style: Modern, flat design with subtle gradients
|
|
179
|
+
- Colors: Brand palette only
|
|
180
|
+
- Line weight: 2px consistent stroke
|
|
181
|
+
- Corners: 4px rounded
|
|
182
|
+
|
|
183
|
+
### Icons
|
|
184
|
+
|
|
185
|
+
- Style: Outlined, 24px base grid
|
|
186
|
+
- Stroke: 1.5px consistent
|
|
187
|
+
- Corner radius: 2px
|
|
188
|
+
- Fill: None (outline only)
|
|
189
|
+
|
|
190
|
+
---
|
|
191
|
+
|
|
192
|
+
## 6. Design Components
|
|
193
|
+
|
|
194
|
+
### Buttons
|
|
195
|
+
|
|
196
|
+
| Type | Background | Text | Border Radius |
|
|
197
|
+
|------|------------|------|---------------|
|
|
198
|
+
| Primary | #2563EB | #FFFFFF | 8px |
|
|
199
|
+
| Secondary | Transparent | #2563EB | 8px |
|
|
200
|
+
| Tertiary | Transparent | #6B7280 | 8px |
|
|
201
|
+
|
|
202
|
+
### Spacing Scale
|
|
203
|
+
|
|
204
|
+
| Token | Value | Usage |
|
|
205
|
+
|-------|-------|-------|
|
|
206
|
+
| xs | 4px | Tight spacing |
|
|
207
|
+
| sm | 8px | Compact elements |
|
|
208
|
+
| md | 16px | Standard spacing |
|
|
209
|
+
| lg | 24px | Section spacing |
|
|
210
|
+
| xl | 32px | Large gaps |
|
|
211
|
+
| 2xl | 48px | Section dividers |
|
|
212
|
+
|
|
213
|
+
### Border Radius
|
|
214
|
+
|
|
215
|
+
| Element | Radius |
|
|
216
|
+
|---------|--------|
|
|
217
|
+
| Buttons | 8px |
|
|
218
|
+
| Cards | 12px |
|
|
219
|
+
| Inputs | 8px |
|
|
220
|
+
| Modals | 16px |
|
|
221
|
+
| Pills/Tags | 9999px |
|
|
222
|
+
|
|
223
|
+
---
|
|
224
|
+
|
|
225
|
+
## AI Image Generation
|
|
226
|
+
|
|
227
|
+
### Base Prompt Template
|
|
228
|
+
|
|
229
|
+
Always prepend to image generation prompts:
|
|
230
|
+
|
|
231
|
+
```
|
|
232
|
+
{DESCRIBE YOUR VISUAL STYLE HERE - mood, colors with hex codes, lighting, atmosphere}
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
### Style Keywords
|
|
236
|
+
|
|
237
|
+
| Category | Keywords |
|
|
238
|
+
|----------|----------|
|
|
239
|
+
| **Lighting** | {e.g., soft lighting, dramatic, natural} |
|
|
240
|
+
| **Mood** | {e.g., professional, energetic, calm} |
|
|
241
|
+
| **Composition** | {e.g., centered, rule of thirds, minimal} |
|
|
242
|
+
| **Treatment** | {e.g., high contrast, muted, vibrant} |
|
|
243
|
+
| **Aesthetic** | {e.g., modern, vintage, minimalist} |
|
|
244
|
+
|
|
245
|
+
### Visual Mood Descriptors
|
|
246
|
+
|
|
247
|
+
- {Mood descriptor 1}
|
|
248
|
+
- {Mood descriptor 2}
|
|
249
|
+
- {Mood descriptor 3}
|
|
250
|
+
|
|
251
|
+
### Visual Don'ts
|
|
252
|
+
|
|
253
|
+
| Avoid | Reason |
|
|
254
|
+
|-------|--------|
|
|
255
|
+
| {Item to avoid} | {Why to avoid it} |
|
|
256
|
+
|
|
257
|
+
### Example Prompts
|
|
258
|
+
|
|
259
|
+
**Hero Banner:**
|
|
260
|
+
```
|
|
261
|
+
{Example prompt for hero banners}
|
|
262
|
+
```
|
|
263
|
+
|
|
264
|
+
**Social Media Post:**
|
|
265
|
+
```
|
|
266
|
+
{Example prompt for social graphics}
|
|
267
|
+
```
|
|
268
|
+
|
|
269
|
+
---
|
|
270
|
+
|
|
271
|
+
## Changelog
|
|
272
|
+
|
|
273
|
+
| Version | Date | Changes |
|
|
274
|
+
|---------|------|---------|
|
|
275
|
+
| 1.0 | {DATE} | Initial guidelines |
|
|
@@ -0,0 +1,313 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: design
|
|
3
|
+
description: "Comprehensive design skill: brand identity, design tokens, UI styling, logo generation (55 styles, Gemini AI), corporate identity program (50 deliverables, CIP mockups), HTML presentations (Chart.js), banner design (22 styles, social/ads/web/print), icon design (15 styles, SVG, Gemini 3.1 Pro), social photos (HTML→screenshot, multi-platform). Actions: design logo, create CIP, generate mockups, build slides, design banner, generate icon, create social photos, social media images, brand identity, design system. Platforms: Facebook, Twitter, LinkedIn, YouTube, Instagram, Pinterest, TikTok, Threads, Google Ads."
|
|
4
|
+
argument-hint: "[design-type] [context]"
|
|
5
|
+
license: MIT
|
|
6
|
+
metadata:
|
|
7
|
+
author: kterfan
|
|
8
|
+
version: "2.1.0"
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# Design
|
|
12
|
+
|
|
13
|
+
Unified design skill: brand, tokens, UI, logo, CIP, slides, banners, social photos, icons.
|
|
14
|
+
|
|
15
|
+
## When to Use
|
|
16
|
+
|
|
17
|
+
- Brand identity, voice, assets
|
|
18
|
+
- Design system tokens and specs
|
|
19
|
+
- UI styling with shadcn/ui + Tailwind
|
|
20
|
+
- Logo design and AI generation
|
|
21
|
+
- Corporate identity program (CIP) deliverables
|
|
22
|
+
- Presentations and pitch decks
|
|
23
|
+
- Banner design for social media, ads, web, print
|
|
24
|
+
- Social photos for Instagram, Facebook, LinkedIn, Twitter, Pinterest, TikTok
|
|
25
|
+
|
|
26
|
+
## Sub-skill Routing
|
|
27
|
+
|
|
28
|
+
| Task | Sub-skill | Details |
|
|
29
|
+
|------|-----------|---------|
|
|
30
|
+
| Brand identity, voice, assets | `brand` | External skill |
|
|
31
|
+
| Tokens, specs, CSS vars | `design-system` | External skill |
|
|
32
|
+
| shadcn/ui, Tailwind, code | `ui-styling` | External skill |
|
|
33
|
+
| Logo creation, AI generation | Logo (built-in) | `references/logo-design.md` |
|
|
34
|
+
| CIP mockups, deliverables | CIP (built-in) | `references/cip-design.md` |
|
|
35
|
+
| Presentations, pitch decks | Slides (built-in) | `references/slides.md` |
|
|
36
|
+
| Banners, covers, headers | Banner (built-in) | `references/banner-sizes-and-styles.md` |
|
|
37
|
+
| Social media images/photos | Social Photos (built-in) | `references/social-photos-design.md` |
|
|
38
|
+
| SVG icons, icon sets | Icon (built-in) | `references/icon-design.md` |
|
|
39
|
+
|
|
40
|
+
## Logo Design (Built-in)
|
|
41
|
+
|
|
42
|
+
55+ styles, 30 color palettes, 25 industry guides. Gemini Nano Banana models.
|
|
43
|
+
|
|
44
|
+
### Logo: Generate Design Brief
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
python3 ~/.claude/skills/design/scripts/logo/search.py "tech startup modern" --design-brief -p "BrandName"
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
### Logo: Search Styles/Colors/Industries
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
python3 ~/.claude/skills/design/scripts/logo/search.py "minimalist clean" --domain style
|
|
54
|
+
python3 ~/.claude/skills/design/scripts/logo/search.py "tech professional" --domain color
|
|
55
|
+
python3 ~/.claude/skills/design/scripts/logo/search.py "healthcare medical" --domain industry
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
### Logo: Generate with AI
|
|
59
|
+
|
|
60
|
+
**ALWAYS** generate output logo images with white background.
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
python3 ~/.claude/skills/design/scripts/logo/generate.py --brand "TechFlow" --style minimalist --industry tech
|
|
64
|
+
python3 ~/.claude/skills/design/scripts/logo/generate.py --prompt "coffee shop vintage badge" --style vintage
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
**IMPORTANT:** When scripts fail, try to fix them directly.
|
|
68
|
+
|
|
69
|
+
After generation, **ALWAYS** ask user about HTML preview via `AskUserQuestion`. If yes, invoke `/ui-pro-forge` for gallery.
|
|
70
|
+
|
|
71
|
+
## CIP Design (Built-in)
|
|
72
|
+
|
|
73
|
+
50+ deliverables, 20 styles, 20 industries. Gemini Nano Banana (Flash/Pro).
|
|
74
|
+
|
|
75
|
+
### CIP: Generate Brief
|
|
76
|
+
|
|
77
|
+
```bash
|
|
78
|
+
python3 ~/.claude/skills/design/scripts/cip/search.py "tech startup" --cip-brief -b "BrandName"
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
### CIP: Search Domains
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
python3 ~/.claude/skills/design/scripts/cip/search.py "business card letterhead" --domain deliverable
|
|
85
|
+
python3 ~/.claude/skills/design/scripts/cip/search.py "luxury premium elegant" --domain style
|
|
86
|
+
python3 ~/.claude/skills/design/scripts/cip/search.py "hospitality hotel" --domain industry
|
|
87
|
+
python3 ~/.claude/skills/design/scripts/cip/search.py "office reception" --domain mockup
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
### CIP: Generate Mockups
|
|
91
|
+
|
|
92
|
+
```bash
|
|
93
|
+
# With logo (RECOMMENDED)
|
|
94
|
+
python3 ~/.claude/skills/design/scripts/cip/generate.py --brand "TopGroup" --logo /path/to/logo.png --deliverable "business card" --industry "consulting"
|
|
95
|
+
|
|
96
|
+
# Full CIP set
|
|
97
|
+
python3 ~/.claude/skills/design/scripts/cip/generate.py --brand "TopGroup" --logo /path/to/logo.png --industry "consulting" --set
|
|
98
|
+
|
|
99
|
+
# Pro model (4K text)
|
|
100
|
+
python3 ~/.claude/skills/design/scripts/cip/generate.py --brand "TopGroup" --logo logo.png --deliverable "business card" --model pro
|
|
101
|
+
|
|
102
|
+
# Without logo
|
|
103
|
+
python3 ~/.claude/skills/design/scripts/cip/generate.py --brand "TechFlow" --deliverable "business card" --no-logo-prompt
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
Models: `flash` (default, `gemini-2.5-flash-image`), `pro` (`gemini-3-pro-image-preview`)
|
|
107
|
+
|
|
108
|
+
### CIP: Render HTML Presentation
|
|
109
|
+
|
|
110
|
+
```bash
|
|
111
|
+
python3 ~/.claude/skills/design/scripts/cip/render-html.py --brand "TopGroup" --industry "consulting" --images /path/to/cip-output
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
**Tip:** If no logo exists, use Logo Design section above first.
|
|
115
|
+
|
|
116
|
+
## Slides (Built-in)
|
|
117
|
+
|
|
118
|
+
Strategic HTML presentations with Chart.js, design tokens, copywriting formulas.
|
|
119
|
+
|
|
120
|
+
Load `references/slides-create.md` for the creation workflow.
|
|
121
|
+
|
|
122
|
+
### Slides: Knowledge Base
|
|
123
|
+
|
|
124
|
+
| Topic | File |
|
|
125
|
+
|-------|------|
|
|
126
|
+
| Creation Guide | `references/slides-create.md` |
|
|
127
|
+
| Layout Patterns | `references/slides-layout-patterns.md` |
|
|
128
|
+
| HTML Template | `references/slides-html-template.md` |
|
|
129
|
+
| Copywriting | `references/slides-copywriting-formulas.md` |
|
|
130
|
+
| Strategies | `references/slides-strategies.md` |
|
|
131
|
+
|
|
132
|
+
## Banner Design (Built-in)
|
|
133
|
+
|
|
134
|
+
22 art direction styles across social, ads, web, print. Uses `frontend-design`, `ai-artist`, `ai-multimodal`, `chrome-devtools` skills.
|
|
135
|
+
|
|
136
|
+
Load `references/banner-sizes-and-styles.md` for complete sizes and styles reference.
|
|
137
|
+
|
|
138
|
+
### Banner: Workflow
|
|
139
|
+
|
|
140
|
+
1. **Gather requirements** via `AskUserQuestion` — purpose, platform, content, brand, style, quantity
|
|
141
|
+
2. **Research** — Activate `ui-pro-forge`, browse Pinterest for references
|
|
142
|
+
3. **Design** — Create HTML/CSS banner with `frontend-design`, generate visuals with `ai-artist`/`ai-multimodal`
|
|
143
|
+
4. **Export** — Screenshot to PNG at exact dimensions via `chrome-devtools`
|
|
144
|
+
5. **Present** — Show all options side-by-side, iterate on feedback
|
|
145
|
+
|
|
146
|
+
### Banner: Quick Size Reference
|
|
147
|
+
|
|
148
|
+
| Platform | Type | Size (px) |
|
|
149
|
+
|----------|------|-----------|
|
|
150
|
+
| Facebook | Cover | 820 x 312 |
|
|
151
|
+
| Twitter/X | Header | 1500 x 500 |
|
|
152
|
+
| LinkedIn | Personal | 1584 x 396 |
|
|
153
|
+
| YouTube | Channel art | 2560 x 1440 |
|
|
154
|
+
| Instagram | Story | 1080 x 1920 |
|
|
155
|
+
| Instagram | Post | 1080 x 1080 |
|
|
156
|
+
| Google Ads | Med Rectangle | 300 x 250 |
|
|
157
|
+
| Website | Hero | 1920 x 600-1080 |
|
|
158
|
+
|
|
159
|
+
### Banner: Top Art Styles
|
|
160
|
+
|
|
161
|
+
| Style | Best For |
|
|
162
|
+
|-------|----------|
|
|
163
|
+
| Minimalist | SaaS, tech |
|
|
164
|
+
| Bold Typography | Announcements |
|
|
165
|
+
| Gradient | Modern brands |
|
|
166
|
+
| Photo-Based | Lifestyle, e-com |
|
|
167
|
+
| Geometric | Tech, fintech |
|
|
168
|
+
| Glassmorphism | SaaS, apps |
|
|
169
|
+
| Neon/Cyberpunk | Gaming, events |
|
|
170
|
+
|
|
171
|
+
### Banner: Design Rules
|
|
172
|
+
|
|
173
|
+
- Safe zones: critical content in central 70-80%
|
|
174
|
+
- One CTA per banner, bottom-right, min 44px height
|
|
175
|
+
- Max 2 fonts, min 16px body, ≥32px headline
|
|
176
|
+
- Text under 20% for ads (Meta penalizes)
|
|
177
|
+
- Print: 300 DPI, CMYK, 3-5mm bleed
|
|
178
|
+
|
|
179
|
+
## Icon Design (Built-in)
|
|
180
|
+
|
|
181
|
+
15 styles, 12 categories. Gemini 3.1 Pro Preview generates SVG text output.
|
|
182
|
+
|
|
183
|
+
### Icon: Generate Single Icon
|
|
184
|
+
|
|
185
|
+
```bash
|
|
186
|
+
python3 ~/.claude/skills/design/scripts/icon/generate.py --prompt "settings gear" --style outlined
|
|
187
|
+
python3 ~/.claude/skills/design/scripts/icon/generate.py --prompt "shopping cart" --style filled --color "#6366F1"
|
|
188
|
+
python3 ~/.claude/skills/design/scripts/icon/generate.py --name "dashboard" --category navigation --style duotone
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
### Icon: Generate Batch Variations
|
|
192
|
+
|
|
193
|
+
```bash
|
|
194
|
+
python3 ~/.claude/skills/design/scripts/icon/generate.py --prompt "cloud upload" --batch 4 --output-dir ./icons
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
### Icon: Multi-size Export
|
|
198
|
+
|
|
199
|
+
```bash
|
|
200
|
+
python3 ~/.claude/skills/design/scripts/icon/generate.py --prompt "user profile" --sizes "16,24,32,48" --output-dir ./icons
|
|
201
|
+
```
|
|
202
|
+
|
|
203
|
+
### Icon: Top Styles
|
|
204
|
+
|
|
205
|
+
| Style | Best For |
|
|
206
|
+
|-------|----------|
|
|
207
|
+
| outlined | UI interfaces, web apps |
|
|
208
|
+
| filled | Mobile apps, nav bars |
|
|
209
|
+
| duotone | Marketing, landing pages |
|
|
210
|
+
| rounded | Friendly apps, health |
|
|
211
|
+
| sharp | Tech, fintech, enterprise |
|
|
212
|
+
| flat | Material design, Google-style |
|
|
213
|
+
| gradient | Modern brands, SaaS |
|
|
214
|
+
|
|
215
|
+
**Model:** `gemini-3.1-pro-preview` — text-only output (SVG is XML text). No image generation API needed.
|
|
216
|
+
|
|
217
|
+
## Social Photos (Built-in)
|
|
218
|
+
|
|
219
|
+
Multi-platform social image design: HTML/CSS → screenshot export. Uses `ui-pro-forge`, `brand`, `design-system`, `chrome-devtools` skills.
|
|
220
|
+
|
|
221
|
+
Load `references/social-photos-design.md` for sizes, templates, best practices.
|
|
222
|
+
|
|
223
|
+
### Social Photos: Workflow
|
|
224
|
+
|
|
225
|
+
1. **Orchestrate** — `project-management` skill for TODO tasks; parallel subagents for independent work
|
|
226
|
+
2. **Analyze** — Parse prompt: subject, platforms, style, brand context, content elements
|
|
227
|
+
3. **Ideate** — 3-5 concepts, present via `AskUserQuestion`
|
|
228
|
+
4. **Design** — `/ckm:brand` → `/ckm:design-system` → randomly invoke `/ck:ui-pro-forge` OR `/ck:frontend-design`; HTML per idea × size
|
|
229
|
+
5. **Export** — `chrome-devtools` or Playwright screenshot at exact px (2x deviceScaleFactor)
|
|
230
|
+
6. **Verify** — Use Chrome MCP or `chrome-devtools` skill to visually inspect exported designs; fix layout/styling issues and re-export
|
|
231
|
+
7. **Report** — Summary to `plans/reports/` with design decisions
|
|
232
|
+
8. **Organize** — Invoke `assets-organizing` skill to sort output files and reports
|
|
233
|
+
|
|
234
|
+
### Social Photos: Key Sizes
|
|
235
|
+
|
|
236
|
+
| Platform | Size (px) | Platform | Size (px) |
|
|
237
|
+
|----------|-----------|----------|-----------|
|
|
238
|
+
| IG Post | 1080×1080 | FB Post | 1200×630 |
|
|
239
|
+
| IG Story | 1080×1920 | X Post | 1200×675 |
|
|
240
|
+
| IG Carousel | 1080×1350 | LinkedIn | 1200×627 |
|
|
241
|
+
| YT Thumb | 1280×720 | Pinterest | 1000×1500 |
|
|
242
|
+
|
|
243
|
+
## Workflows
|
|
244
|
+
|
|
245
|
+
### Complete Brand Package
|
|
246
|
+
|
|
247
|
+
1. **Logo** → `scripts/logo/generate.py` → Generate logo variants
|
|
248
|
+
2. **CIP** → `scripts/cip/generate.py --logo ...` → Create deliverable mockups
|
|
249
|
+
3. **Presentation** → Load `references/slides-create.md` → Build pitch deck
|
|
250
|
+
|
|
251
|
+
### New Design System
|
|
252
|
+
|
|
253
|
+
1. **Brand** (brand skill) → Define colors, typography, voice
|
|
254
|
+
2. **Tokens** (design-system skill) → Create semantic token layers
|
|
255
|
+
3. **Implement** (ui-styling skill) → Configure Tailwind, shadcn/ui
|
|
256
|
+
|
|
257
|
+
## References
|
|
258
|
+
|
|
259
|
+
| Topic | File |
|
|
260
|
+
|-------|------|
|
|
261
|
+
| Design Routing | `references/design-routing.md` |
|
|
262
|
+
| Logo Design Guide | `references/logo-design.md` |
|
|
263
|
+
| Logo Styles | `references/logo-style-guide.md` |
|
|
264
|
+
| Logo Colors | `references/logo-color-psychology.md` |
|
|
265
|
+
| Logo Prompts | `references/logo-prompt-engineering.md` |
|
|
266
|
+
| CIP Design Guide | `references/cip-design.md` |
|
|
267
|
+
| CIP Deliverables | `references/cip-deliverable-guide.md` |
|
|
268
|
+
| CIP Styles | `references/cip-style-guide.md` |
|
|
269
|
+
| CIP Prompts | `references/cip-prompt-engineering.md` |
|
|
270
|
+
| Slides Create | `references/slides-create.md` |
|
|
271
|
+
| Slides Layouts | `references/slides-layout-patterns.md` |
|
|
272
|
+
| Slides Template | `references/slides-html-template.md` |
|
|
273
|
+
| Slides Copy | `references/slides-copywriting-formulas.md` |
|
|
274
|
+
| Slides Strategy | `references/slides-strategies.md` |
|
|
275
|
+
| Banner Sizes & Styles | `references/banner-sizes-and-styles.md` |
|
|
276
|
+
| Social Photos Guide | `references/social-photos-design.md` |
|
|
277
|
+
| Icon Design Guide | `references/icon-design.md` |
|
|
278
|
+
|
|
279
|
+
## Scripts
|
|
280
|
+
|
|
281
|
+
| Script | Purpose |
|
|
282
|
+
|--------|---------|
|
|
283
|
+
| `scripts/logo/search.py` | Search logo styles, colors, industries |
|
|
284
|
+
| `scripts/logo/generate.py` | Generate logos with Gemini AI |
|
|
285
|
+
| `scripts/logo/core.py` | BM25 search engine for logo data |
|
|
286
|
+
| `scripts/cip/search.py` | Search CIP deliverables, styles, industries |
|
|
287
|
+
| `scripts/cip/generate.py` | Generate CIP mockups with Gemini |
|
|
288
|
+
| `scripts/cip/render-html.py` | Render HTML presentation from CIP mockups |
|
|
289
|
+
| `scripts/cip/core.py` | BM25 search engine for CIP data |
|
|
290
|
+
| `scripts/icon/generate.py` | Generate SVG icons with Gemini 3.1 Pro |
|
|
291
|
+
|
|
292
|
+
## Prerequisites
|
|
293
|
+
|
|
294
|
+
**Python:** This skill uses Python scripts. On Windows, use `python` instead of `python3` (e.g., `python scripts/logo/search.py` instead of `python3 scripts/logo/search.py`).
|
|
295
|
+
|
|
296
|
+
Check if Python is installed:
|
|
297
|
+
```bash
|
|
298
|
+
python3 --version || python --version
|
|
299
|
+
```
|
|
300
|
+
|
|
301
|
+
## Setup
|
|
302
|
+
|
|
303
|
+
```bash
|
|
304
|
+
export GEMINI_API_KEY="your-key" # https://aistudio.google.com/apikey
|
|
305
|
+
pip install google-genai pillow
|
|
306
|
+
```
|
|
307
|
+
|
|
308
|
+
> **Note for Windows:** Use `python` instead of `pip` where needed (e.g., `python -m pip install ...`).
|
|
309
|
+
|
|
310
|
+
## Integration
|
|
311
|
+
|
|
312
|
+
**External sub-skills:** brand, design-system, ui-styling
|
|
313
|
+
**Related Skills:** frontend-design, ui-pro-forge, ai-multimodal, chrome-devtools
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
No,Deliverable,Category,Keywords,Description,Dimensions,File Format,Logo Placement,Color Usage,Typography Notes,Mockup Context,Best Practices,Avoid
|
|
2
|
+
1,Primary Logo,Core Identity,logo main primary brand mark,Main logo used as primary brand identifier,Vector scalable,SVG AI EPS PNG,Center prominent,Full color palette,Primary typeface,Clean background product shots,Ensure clear space maintain proportions,Distortion crowding busy backgrounds
|
|
3
|
+
2,Logo Variations,Core Identity,logo alternate secondary horizontal vertical,Alternative logo formats for different applications,Vector scalable,SVG AI EPS PNG,Context dependent,Mono color reverse,Consistent with primary,Various application contexts,Create horizontal vertical stacked icon versions,Inconsistent modifications unauthorized changes
|
|
4
|
+
3,Business Card,Stationery,namecard card contact professional,Professional contact card with brand identity,3.5x2 inches 85x55mm,PDF AI print-ready,Front center or corner,Primary secondary colors,Name title contact details,Marble wood desk surface,Premium paper stock spot UV foil,Cluttered design too many fonts cheap paper
|
|
5
|
+
4,Letterhead,Stationery,letter paper document official,Branded document paper for official correspondence,A4 Letter size,PDF AI Word template,Top header or corner,Subtle brand colors,Body text headers,Flat lay with pen envelope,Consistent margins proper hierarchy,Overpowering logo excessive graphics
|
|
6
|
+
5,Envelope,Stationery,envelope mail correspondence,Branded envelopes for business mail,DL C4 C5 sizes,PDF AI print-ready,Flap or front corner,Primary brand color,Return address company name,Stacked with letterhead cards,Match letterhead design system,Misaligned printing poor paper quality
|
|
7
|
+
6,Folder,Stationery,folder presentation document holder,Presentation folder for documents,A4 Letter pocket folder,PDF AI die-cut template,Front cover spine,Full brand colors,Company tagline contact,Business documents inside,Pockets die-cuts premium finish,Flimsy material poor construction
|
|
8
|
+
7,Notebook,Stationery,notebook journal notepad branded,Branded notebooks for employees or gifts,A5 A6 sizes,Print cover design,Front cover emboss,Cover in brand colors,Logo minimal text,Desk flat lay with pen,Quality binding emboss or deboss,Cheap paper poor binding
|
|
9
|
+
8,Pen,Promotional,pen writing instrument promo,Branded pens for promotional use,Standard pen dimensions,Vector for print,Barrel clip,Limited color 1-2,Logo only or tagline,Product shot lifestyle,Quality mechanism smooth writing,Cheap mechanism poor print
|
|
10
|
+
9,ID Badge,Security Access,badge identification employee pass,Employee identification and access card,CR80 86x54mm,PDF AI template,Center or top,Photo area brand colors,Name department title,Lanyard neck office setting,Clear photo area security features,Poor photo quality cluttered design
|
|
11
|
+
10,Lanyard,Security Access,lanyard neck strap badge holder,Neck strap for ID badges,20-25mm width,Vector repeat pattern,Continuous pattern,Primary brand color,Logo repeated or continuous,Worn with badge professional,Quality material comfortable width,Scratchy material cheap clips
|
|
12
|
+
11,Access Card,Security Access,key card rfid access control,Electronic access control card,CR80 standard,PDF AI template,One side or both,Minimal brand colors,Card number access level,Security context door reader,Functional design clear hierarchy,Security info visible cluttered
|
|
13
|
+
12,Reception Signage,Office Environment,lobby reception wall sign 3D,Main reception area brand signage,Custom based on wall,3D fabrication files,Center of wall,Backlit or dimensional,Logo only or with tagline,Modern office lobby interior,Backlit LED brushed metal acrylic,Poor lighting cheap materials dim
|
|
14
|
+
13,Wayfinding Signage,Office Environment,directional signs navigation office,Interior navigation and directional signs,Various sizes,AI vector templates,Consistent placement,Secondary palette,Clear readable fonts,Hallway corridor office,Consistent system clear hierarchy,Inconsistent styles poor visibility
|
|
15
|
+
14,Meeting Room Signs,Office Environment,conference room name plate door,Meeting room identification signs,A5 A6 custom,AI templates,Center or left,Accent colors,Room name capacity,Glass door or wall mounted,Digital or static consistent style,Hard to read small text
|
|
16
|
+
15,Wall Graphics,Office Environment,mural wall art brand values,Large scale wall murals and graphics,Wall dimensions,Large format print,Full wall coverage,Full palette gradients,Mission values quotes,Open office space,Inspiring messaging quality install,Peeling edges poor resolution
|
|
17
|
+
16,Window Graphics,Office Environment,glass frosted privacy film,Frosted or printed window graphics,Window dimensions,Vector cut files,Privacy zones branding,Frosted with logo,Minimal text,Glass partitions entrance,Privacy function brand presence,Blocking natural light cluttered
|
|
18
|
+
17,Desk Accessories,Office Environment,desk organizer mousepad coaster,Branded desk items for employees,Various sizes,Print-ready files,Product surface,Subtle branding,Logo tagline,Desktop lifestyle shot,Useful quality materials,Purely decorative poor quality
|
|
19
|
+
18,Polo Shirt,Apparel,polo uniform employee clothing,Branded polo shirts for staff,S M L XL XXL,Embroidery vector,Left chest back,Garment brand colors,Logo small embroidered,Folded or worn lifestyle,Quality fabric embroidery,Cheap fabric poor embroidery
|
|
20
|
+
19,T-Shirt,Apparel,tshirt casual staff event,Casual branded t-shirts,S M L XL XXL,Screen print vector,Center chest back,Limited colors 1-3,Logo tagline graphic,Flat lay or worn model,Quality cotton proper sizing,Cheap material design too large
|
|
21
|
+
20,Cap Hat,Apparel,cap hat headwear baseball,Branded caps and hats,One size adjustable,Embroidery vector,Front center,1-2 colors embroidery,Logo small,Product shot worn,Quality embroidery structured cap,Cheap construction poor embroidery
|
|
22
|
+
21,Jacket,Apparel,jacket outerwear coat uniform,Branded jackets for outdoor staff,S M L XL XXL,Embroidery vector,Left chest back,Garment brand colors,Logo department,Lifestyle outdoor shot,Quality material practical design,Impractical poor quality
|
|
23
|
+
22,Apron,Apparel,apron uniform service hospitality,Branded aprons for service staff,Standard adjustable,Screen print embroidery,Center chest,Workwear colors,Logo business name,Hospitality setting,Durable material functional pockets,Poor material impractical design
|
|
24
|
+
23,Tote Bag,Promotional,bag shopping eco reusable,Branded reusable shopping bags,Various sizes,Screen print vector,Center both sides,1-2 colors typically,Logo tagline,Lifestyle shopping context,Quality canvas sturdy handles,Cheap material weak handles
|
|
25
|
+
24,Paper Bag,Promotional,shopping bag retail paper,Retail paper shopping bags,Small medium large,Print template,Side and front,Full color or kraft,Logo website,Retail product context,Quality paper rope or ribbon handles,Cheap paper weak handles
|
|
26
|
+
25,Gift Box,Promotional,packaging box gift premium,Premium gift packaging boxes,Various sizes,Die-cut templates,Lid or all sides,Brand colors patterns,Logo minimal text,Unboxing product shot,Quality board magnetic closure,Cheap cardboard poor construction
|
|
27
|
+
26,USB Drive,Promotional,flash drive storage tech promo,Branded USB flash drives,Standard USB size,Print area template,Drive surface,Limited 1-2 colors,Logo only,Product shot tech context,Quality drive sufficient storage,Cheap mechanism low storage
|
|
28
|
+
27,Water Bottle,Promotional,bottle drink drinkware hydration,Branded water bottles,500ml 750ml 1L,Print wrap template,Wrap or pad print,Bottle brand colors,Logo tagline,Lifestyle fitness outdoor,Quality insulated BPA-free,Cheap plastic leaking poor insulation
|
|
29
|
+
28,Mug Cup,Promotional,mug cup drinkware coffee,Branded mugs and cups,Standard 11oz 15oz,Sublimation vector,Wrap or one side,Full color sublimation,Logo tagline graphic,Lifestyle office desk,Quality ceramic dishwasher safe,Cheap material poor print durability
|
|
30
|
+
29,Umbrella,Promotional,umbrella rain promotional,Branded umbrellas,Standard compact golf,Panel print template,Panels or handle,Limited panel colors,Logo repeated,Lifestyle rainy weather,Quality mechanism wind resistant,Cheap mechanism breaks easily
|
|
31
|
+
30,Car Sedan,Vehicle,company car sedan branding,Sedan vehicle branding wrap,Vehicle template,Vehicle wrap template,Doors hood trunk,Partial or full wrap,Logo contact URL,Side angle motion blur,Professional installation quality vinyl,Amateur install bubbles peeling
|
|
32
|
+
31,Van,Vehicle,delivery van transport branding,Van and delivery vehicle branding,Vehicle template,Vehicle wrap template,All sides back,Bold visible colors,Logo contact services,Street delivery context,Maximum visibility contact info,Cluttered hard to read
|
|
33
|
+
32,Truck,Vehicle,truck lorry freight branding,Large truck and lorry branding,Vehicle template,Large format wrap,Sides rear trailer,High contrast visible,Logo contact large scale,Highway road context,High visibility fleet consistency,Inconsistent fleet poor visibility
|
|
34
|
+
33,Social Media Profile,Digital,avatar profile picture social,Social media profile pictures,Various platform sizes,PNG JPG optimized,Center crop safe,Simplified for small,Logo icon only,Platform context preview,Recognizable at small size,Too detailed loses clarity
|
|
35
|
+
34,Social Media Cover,Digital,banner cover header social,Social media cover and header images,Platform specific sizes,PNG JPG optimized,Safe zone placement,Full brand expression,Tagline campaign message,Platform context preview,Platform-specific safe zones,Text in unsafe crop zones
|
|
36
|
+
35,Email Signature,Digital,email signature footer contact,Professional email signature,600px max width,HTML responsive,Left aligned,Limited colors web-safe,Name title contact links,Email client preview,Responsive clean links,Images blocked heavy files
|
|
37
|
+
36,Website Favicon,Digital,favicon browser icon tab,Browser tab icon,16x16 32x32 ICO,ICO PNG SVG,Centered square,Simplified colors,Icon only,Browser tab context,Recognizable at tiny size,Too complex loses form
|
|
38
|
+
37,PowerPoint Template,Digital,presentation slides deck,Branded presentation templates,16:9 4:3 widescreen,PPTX template,Footer header title,Full brand system,Heading body fonts,Presentation meeting context,Master slides consistent layouts,Inconsistent slides poor hierarchy
|
|
39
|
+
38,Document Template,Digital,word document letterhead template,Branded document templates,A4 Letter,DOCX template,Header footer,Subtle consistent,Body heading styles,Document printed digital,Easy to use consistent,Hard to edit breaks formatting
|
|
40
|
+
39,Invoice Template,Digital,invoice billing financial document,Branded invoice templates,A4 Letter,PDF XLSX template,Header corner,Professional minimal,Clear hierarchy amounts,Financial context payment,Clear totals payment details,Confusing layout unclear totals
|
|
41
|
+
40,Packaging Box,Product,product box retail package,Product packaging boxes,Product specific,Dieline templates,Principal display panel,Retail appeal,Product name features,Retail shelf context,Stand out shelf appeal,Lost among competitors bland
|
|
42
|
+
41,Packaging Label,Product,label sticker product tag,Product labels and stickers,Various sizes,Vector dieline,Product surface,Brand compliant,Product required info,Applied to product,Regulatory compliant appealing,Missing required info poor adhesion
|
|
43
|
+
42,Product Tag,Product,hang tag swing tag retail,Hang tags and swing tags,Standard custom sizes,Die-cut template,Front centered,Brand colors,Product price info,Attached to product,Quality card stock string,Cheap card tears easily
|
|
44
|
+
43,Retail Display,Product,POP display stand retail,Point of purchase displays,Custom dimensions,Structural design,Display surfaces,Bold attention-getting,Brand product promo,Retail store context,Sturdy eye-catching,Flimsy unstable falls apart
|
|
45
|
+
44,Trade Show Booth,Events,exhibition stand booth display,Trade show booth design,10x10 10x20 custom,Large format print,Backdrop walls,Bold visible colors,Company key messages,Exhibition hall context,Professional portable modular,Cheap materials hard to assemble
|
|
46
|
+
45,Banner Stand,Events,roll up pull up banner,Retractable banner stands,80x200cm standard,Large format print,Full height center,Bold readable,Key message CTA,Event lobby entrance,Quality print mechanism,Flimsy curling edges poor mechanism
|
|
47
|
+
46,Table Cover,Events,tablecloth throw event,Branded table covers,6ft 8ft standard,Fabric print,Front and sides,Full brand expression,Logo tagline contact,Event booth table,Wrinkle-resistant fitted,Wrinkles cheap fabric poor fit
|
|
48
|
+
47,Backdrop,Events,media wall step repeat backdrop,Event backdrops and media walls,Custom event size,Large format print,Repeat pattern logo,Limited colors works on camera,Logo repeated pattern,Event photo opportunity,Photo-friendly repeat pattern,Random placement looks awkward
|
|
49
|
+
48,Name Badge Event,Events,event badge conference delegate,Event name badges,CR80 custom sizes,Template design,Top with logo,Event brand colors,Name company title,Conference event context,Clear name large enough,Name too small hard to read
|
|
50
|
+
49,Lanyard Event,Events,event lanyard conference sponsor,Event branded lanyards,20-25mm width,Repeat pattern,Continuous or repeat,Event sponsor colors,Event name sponsors,Worn at event,Quality material sponsor visibility,Scratchy poor print quality
|
|
51
|
+
50,Certificate,Documents,certificate award achievement,Achievement and recognition certificates,A4 Letter,Print template,Top header,Gold premium accents,Achievement details,Framed or presented,Premium paper emboss seal,Cheap paper looks unofficial
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
No,Industry,Keywords,CIP Style,Primary Colors,Secondary Colors,Typography,Key Deliverables,Mood,Best Practices,Avoid
|
|
2
|
+
1,Technology,tech software saas startup digital,Modern Tech Geometric,#6366F1 #0EA5E9 #10B981,#8B5CF6 #F8FAFC,Geometric sans modern,Business cards office signage digital templates vehicle,Innovative forward-thinking,Clean lines digital-first responsive,Dated fonts clip art overly complex
|
|
3
|
+
2,Finance Banking,bank finance investment wealth,Corporate Minimal Classic,#003366 #1E3A8A #D4AF37,#0F766E #F8FAFC,Traditional serif modern sans,Premium stationery office signage certificates,Trustworthy established,Conservative premium materials security,Trendy effects casual playful
|
|
4
|
+
3,Legal,law firm attorney legal services,Classic Traditional,#0F172A #1E3A8A #D4AF37,#713F12 #F5F5F4,Serif traditional professional,Letterhead certificates folders office,Authoritative trustworthy,Traditional balanced symmetrical,Playful colors casual fonts
|
|
5
|
+
4,Healthcare,medical hospital clinic wellness,Fresh Modern Minimal,#0077B6 #10B981 #FFFFFF,#0891B2 #F0FDF4,Clean professional sans,Staff uniforms ID badges signage,Caring professional clean,Calming colors simple shapes,Red aggressive clinical harsh
|
|
6
|
+
5,Real Estate,property housing development agency,Corporate Minimal Fresh,#0F766E #1E3A8A #D4AF37,#0369A1 #F8FAFC,Clean professional sans,Signage vehicle branding folders,Professional trustworthy,Premium materials quality finish,Cheap materials trendy effects
|
|
7
|
+
6,Hospitality,hotel resort restaurant hospitality,Luxury Premium Elegant,#D4AF37 #0F172A #FFFFFF,#8B4513 #FAFAF9,Elegant serif script,Uniforms stationery room signage,Welcoming luxurious,Consistent guest experience,Inconsistent cheap materials
|
|
8
|
+
7,Food Beverage,restaurant cafe food service,Warm Organic Vintage,#DC2626 #F97316 #8B4513,#CA8A04 #DEB887,Friendly script bold sans,Uniforms packaging signage menus,Appetizing inviting,Warm colors friendly appeal,Cold clinical sterile
|
|
9
|
+
8,Fashion,clothing apparel luxury brand,Luxury Premium Monochrome,#000000 #FFFFFF #D4AF37,#44403C #F5F5F5,Elegant serif thin sans,Shopping bags packaging tags,Sophisticated elegant,Minimal premium refined,Trendy clipart cheap materials
|
|
10
|
+
9,Beauty Cosmetics,skincare makeup salon spa,Soft Elegant,#F472B6 #D4AF37 #FFFFFF,#FDA4AF #FDF2F8,Elegant script thin sans,Packaging uniforms salon signage,Elegant feminine,Soft premium quality,Harsh masculine industrial
|
|
11
|
+
10,Education,school university learning,Fresh Modern Classic,#4F46E5 #059669 #FFFFFF,#7C3AED #F0FDF4,Clear readable professional,Certificates ID badges signage stationery,Trustworthy growth,Clear readable balanced,Overly playful unprofessional
|
|
12
|
+
11,Sports Fitness,gym athletic sports club,Bold Dynamic,#DC2626 #F97316 #000000,#FBBF24 #FFFFFF,Bold condensed strong,Uniforms gym signage merchandise,Energetic powerful,Bold dynamic movement,Weak passive static
|
|
13
|
+
12,Entertainment,music events media gaming,Bold Dynamic Gradient,#7C3AED #EC4899 #F59E0B,#06B6D4 #FFFFFF,Bold display creative,Event materials merchandise promotional,Exciting dynamic,Vibrant unique memorable,Conservative boring static
|
|
14
|
+
13,Automotive,car dealership service repair,Bold Dynamic Industrial,#DC2626 #1E3A8A #000000,#F97316 #FFFFFF,Bold modern sans,Vehicle branding uniforms signage,Powerful reliable,Strong clean professional,Weak delicate feminine
|
|
15
|
+
14,Construction,building contractor development,Industrial Bold,#F97316 #334155 #FFFFFF,#CA8A04 #1F2937,Strong bold sans,Vehicles signage uniforms safety gear,Strong reliable,Bold simple recognizable,Delicate complex trendy
|
|
16
|
+
15,Agriculture,farm organic produce natural,Warm Organic Natural,#228B22 #8B4513 #DEB887,#22C55E #F5F5DC,Organic friendly readable,Packaging vehicles signage,Natural sustainable,Earth tones organic materials,Industrial cold synthetic
|
|
17
|
+
16,Non-Profit,charity organization foundation,Fresh Modern Warm,#0891B2 #10B981 #F97316,#F472B6 #FFFFFF,Clear readable warm,Stationery event materials certificates,Caring hopeful,Clear message warm colors,Corporate cold complex
|
|
18
|
+
17,Consulting,business strategy management,Corporate Minimal Swiss,#0F172A #3B82F6 #FFFFFF,#10B981 #F8FAFC,Professional clean sans,Premium stationery presentations,Professional expert,Clean simple professional,Playful casual complex
|
|
19
|
+
18,Retail,shop store marketplace,Fresh Modern Playful,#6366F1 #F97316 #10B981,#EC4899 #FFFFFF,Modern friendly sans,Shopping bags signage uniforms,Modern friendly,Simple memorable scalable,Complex dated traditional
|
|
20
|
+
19,Manufacturing,factory production industrial,Industrial Raw Bold,#374151 #F97316 #FFFFFF,#1F2937 #D6D3D1,Strong bold condensed,Vehicle branding uniforms signage safety,Strong reliable industrial,Durable visible functional,Delicate decorative impractical
|
|
21
|
+
20,Logistics,shipping transport freight,Bold Dynamic Corporate,#0369A1 #F97316 #FFFFFF,#1E3A8A #F8FAFC,Bold modern sans,Fleet vehicles uniforms ID badges,Efficient reliable,Clear visible scalable fleet,Inconsistent fleet hard to read
|