@tidyfactor/design 1.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/.tidyfactor +52 -0
- package/AGENTS.md +75 -0
- package/CHANGELOG.md +210 -0
- package/LICENSE +17 -0
- package/README.ar.md +398 -0
- package/README.de.md +44 -0
- package/README.es.md +44 -0
- package/README.fa.md +44 -0
- package/README.fr.md +44 -0
- package/README.md +418 -0
- package/README.pt.md +44 -0
- package/README.zh.md +44 -0
- package/SKILL-REGISTRY.md +69 -0
- package/SKILL.md +46 -0
- package/VISION.md +43 -0
- package/assets/blog.png +0 -0
- package/assets/content_layout.png +0 -0
- package/assets/content_output.png +0 -0
- package/assets/dark.png +0 -0
- package/assets/dashboard_layout.png +0 -0
- package/assets/dashboard_output.png +0 -0
- package/assets/ecommerce_layout.png +0 -0
- package/assets/ecommerce_output.png +0 -0
- package/assets/github-social-preview-2.png +0 -0
- package/assets/github-social-preview.png +0 -0
- package/assets/hero-banner.png +0 -0
- package/assets/light.png +0 -0
- package/assets/media_layout.png +0 -0
- package/assets/media_output.png +0 -0
- package/assets/og-default.png +0 -0
- package/assets/video.png +0 -0
- package/bin/add-skill.js +31 -0
- package/bin/create-kit.js +372 -0
- package/bin/remove-skill.js +137 -0
- package/brand.json +279 -0
- package/memory/01-design-schools.md +85 -0
- package/memory/02-design-tokens.md +41 -0
- package/memory/03-narrative-conversion.md +47 -0
- package/memory/04-motion-principles.md +44 -0
- package/memory/05-component-anatomy.md +34 -0
- package/memory/06-quality-bar.md +83 -0
- package/memory/07-consistency-contract.md +33 -0
- package/memory/08-arabic-bilingual.md +54 -0
- package/memory/09-prototype-flow.md +36 -0
- package/memory/10-python-tooling.md +64 -0
- package/memory/11-brand-json-v2.md +86 -0
- package/memory/12-typography-matrix.md +31 -0
- package/memory/13-layout-archetypes.md +30 -0
- package/memory/14-nav-footer-catalog.md +26 -0
- package/memory/15-performance-budget.md +18 -0
- package/memory/16-design-movements-guide.md +1084 -0
- package/memory/17-storytelling-industries-ux.md +143 -0
- package/memory/18-design-decision-engine.md +81 -0
- package/package.json +64 -0
- package/references/commands/_template.md +27 -0
- package/references/commands/assets.md +35 -0
- package/references/commands/audit.md +15 -0
- package/references/commands/brand.md +85 -0
- package/references/commands/brief.md +107 -0
- package/references/commands/clone.md +26 -0
- package/references/commands/components.md +46 -0
- package/references/commands/dashboard.md +45 -0
- package/references/commands/deploy.md +45 -0
- package/references/commands/flow.md +44 -0
- package/references/commands/handoff.md +53 -0
- package/references/commands/i18n.md +64 -0
- package/references/commands/init.md +30 -0
- package/references/commands/layout.md +81 -0
- package/references/commands/motion.md +62 -0
- package/references/commands/nav-footer.md +54 -0
- package/references/commands/page.md +45 -0
- package/references/commands/palette.md +35 -0
- package/references/commands/perf.md +57 -0
- package/references/commands/retrofit.md +15 -0
- package/references/commands/school.md +41 -0
- package/references/commands/states.md +48 -0
- package/references/commands/study.md +98 -0
- package/references/commands/tokens.md +45 -0
- package/references/commands/typography.md +87 -0
- package/references/foundations/daisyui.md +44 -0
- package/references/foundations/hybrid.md +32 -0
- package/references/foundations/native.md +31 -0
- package/references/foundations/tailwind-utility.md +43 -0
- package/references/memory/01-design-schools.md +85 -0
- package/references/memory/02-design-tokens.md +41 -0
- package/references/memory/03-narrative-conversion.md +47 -0
- package/references/memory/04-motion-principles.md +44 -0
- package/references/memory/05-component-anatomy.md +34 -0
- package/references/memory/06-quality-bar.md +83 -0
- package/references/memory/07-consistency-contract.md +33 -0
- package/references/memory/08-arabic-bilingual.md +54 -0
- package/references/memory/09-prototype-flow.md +36 -0
- package/references/memory/10-python-tooling.md +64 -0
- package/references/memory/11-brand-json-v2.md +86 -0
- package/references/memory/12-typography-matrix.md +31 -0
- package/references/memory/13-layout-archetypes.md +30 -0
- package/references/memory/14-nav-footer-catalog.md +26 -0
- package/references/memory/15-performance-budget.md +18 -0
- package/references/memory/16-design-movements-guide.md +1084 -0
- package/references/memory/17-storytelling-industries-ux.md +143 -0
- package/references/memory/18-design-decision-engine.md +81 -0
- package/references/memory/architecture.md +39 -0
- package/references/memory/decision-points.md +50 -0
- package/references/memory/foundations.md +15 -0
- package/references/memory/quality-bar.md +20 -0
- package/references/tidyfactor-vision.md +66 -0
- package/references/workflow.md +49 -0
- package/references/workflows/audit-prototype.md +26 -0
- package/references/workflows/brief.md +30 -0
- package/references/workflows/clone-prototype.md +27 -0
- package/references/workflows/init-prototype.md +28 -0
- package/references/workflows/retrofit-prototype.md +25 -0
- package/scripts/__pycache__/_utils.cpython-312.pyc +0 -0
- package/scripts/_utils.py +60 -0
- package/scripts/build.py +194 -0
- package/scripts/check_alpha.py +52 -0
- package/scripts/extract_palette.py +139 -0
- package/scripts/generate_transitions.py +105 -0
- package/scripts/inspect_images.py +48 -0
- package/scripts/minify_assets.py +140 -0
- package/scripts/optimize_assets.py +91 -0
- package/scripts/optimize_images.py +176 -0
- package/scripts/prepare_images.py +67 -0
- package/scripts/remove_backgrounds.py +61 -0
- package/scripts/test_build.py +228 -0
- package/templates/design-system/base.css +75 -0
- package/templates/design-system/components.css +229 -0
- package/templates/design-system/interactions.js +31 -0
- package/templates/design-system/motion.js +42 -0
- package/templates/design-system/tokens.css +81 -0
- package/templates/design-system/utilities.css +47 -0
- package/templates/index.html +84 -0
- package/templates/proto-nav.js +56 -0
- package/tools/build-skill.js +126 -0
- package/tools/validate-skill.js +144 -0
- package/tools/validate_skill.py +121 -0
|
@@ -0,0 +1,1084 @@
|
|
|
1
|
+
# 16 · Design Movements & Aesthetics Knowledge Base
|
|
2
|
+
|
|
3
|
+
A comprehensive guide for AI coding agents (`tidyfactor-design`) declaring exact design tokens, visual decisions, CSS rules, typography pairings, color palettes, shadow styles, component behaviors, motion language, and executable signature elements for **all 20 Visual Aesthetics & Design Movements**.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 🎨 20 Visual Aesthetics & Design Movements
|
|
8
|
+
|
|
9
|
+
### 1. Swiss Style (International Typographic Style)
|
|
10
|
+
* **Visual Philosophy**: Extreme objectivity, clarity, and mathematical grid alignment. Typography does 90% of the visual work.
|
|
11
|
+
|
|
12
|
+
```yaml
|
|
13
|
+
confidence:
|
|
14
|
+
production: ★★★★★
|
|
15
|
+
marketing: ★★★☆☆
|
|
16
|
+
dashboard: ★★★★★
|
|
17
|
+
landing: ★★★★☆
|
|
18
|
+
mobile: ★★★★☆
|
|
19
|
+
accessibility: ★★★★★
|
|
20
|
+
|
|
21
|
+
compatibility:
|
|
22
|
+
compatible: [Minimalism, Editorial, Corporate, Industrial, Bauhaus]
|
|
23
|
+
avoid: [Claymorphism, Corporate Memphis, Neumorphism, Y2K, Vaporwave]
|
|
24
|
+
|
|
25
|
+
brandPersonality: [Precise, Confident, Calm, Rational, Technical, Trustworthy]
|
|
26
|
+
|
|
27
|
+
visualDNA:
|
|
28
|
+
grid: ★★★★★
|
|
29
|
+
typography: ★★★★★
|
|
30
|
+
geometry: ★★★★★
|
|
31
|
+
illustration: ★☆☆☆☆
|
|
32
|
+
motion: ★☆☆☆☆
|
|
33
|
+
texture: ★☆☆☆☆
|
|
34
|
+
photography: ★★☆☆☆
|
|
35
|
+
depth: ★☆☆☆☆
|
|
36
|
+
|
|
37
|
+
componentBehaviour:
|
|
38
|
+
buttons: filled | square (0px/2px) | 1px border | no shadow
|
|
39
|
+
cards: flat surface | hairline 1px border | sharp corners
|
|
40
|
+
forms: dense data fields | clean inline labels
|
|
41
|
+
navigation: top edge-aligned | thin hairline bottom rule
|
|
42
|
+
search: prominent search bar with monospaced keyboard shortcut badge
|
|
43
|
+
|
|
44
|
+
motionLanguage:
|
|
45
|
+
duration: 150ms
|
|
46
|
+
curve: ease-out
|
|
47
|
+
energy: low
|
|
48
|
+
scroll: none
|
|
49
|
+
hover: subtle background tint shift
|
|
50
|
+
|
|
51
|
+
executableSignature: |
|
|
52
|
+
/* Swiss Signature: Hairline grid borders + massive scale contrast */
|
|
53
|
+
.swiss-grid { display: grid; grid-template-columns: repeat(12, 1fr); border-top: 1px solid var(--border); }
|
|
54
|
+
.swiss-cell { border-right: 1px solid var(--border); padding: 1.5rem; }
|
|
55
|
+
.swiss-title { font-size: clamp(3rem, 7vw, 6rem); letter-spacing: -0.03em; font-weight: 700; }
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
* **Color Palette**: Monochromatic neutrals (stark white `#FFFFFF`, cool ink `#0F172A`, slate `#475569`) with 1 vibrant primary accent (Swiss Red `#E11D48` or International Blue `#2563EB`).
|
|
59
|
+
* **Typography**: Clean, unadorned sans-serifs (`Outfit`, `Inter`, `Helvetica`). Tight letter-spacing (`-0.02em`), massive size contrast.
|
|
60
|
+
* **Anti-Pattern Warning**: Applying the grid so rigidly that the page looks like an unformatted financial spreadsheet.
|
|
61
|
+
|
|
62
|
+
---
|
|
63
|
+
|
|
64
|
+
### 2. Flat Design
|
|
65
|
+
* **Visual Philosophy**: Digital-first 2D minimalism. Completely eliminates physical textures, bevels, and realistic shadows in favor of crisp vector shapes and vibrant color blocks.
|
|
66
|
+
|
|
67
|
+
```yaml
|
|
68
|
+
confidence:
|
|
69
|
+
production: ★★★★★
|
|
70
|
+
marketing: ★★★★☆
|
|
71
|
+
dashboard: ★★★★☆
|
|
72
|
+
landing: ★★★★☆
|
|
73
|
+
mobile: ★★★★★
|
|
74
|
+
accessibility: ★★★★☆
|
|
75
|
+
|
|
76
|
+
compatibility:
|
|
77
|
+
compatible: [Corporate Memphis, Minimalist, Material, Swiss]
|
|
78
|
+
avoid: [Skeuomorphism, Glassmorphism, Neumorphism, Cyberpunk]
|
|
79
|
+
|
|
80
|
+
brandPersonality: [Direct, Friendly, Clear, Efficient, Accessible]
|
|
81
|
+
|
|
82
|
+
visualDNA:
|
|
83
|
+
grid: ★★★★☆
|
|
84
|
+
typography: ★★★★☆
|
|
85
|
+
geometry: ★★★★☆
|
|
86
|
+
illustration: ★★★★☆
|
|
87
|
+
motion: ★★☆☆☆
|
|
88
|
+
texture: ★☆☆☆☆
|
|
89
|
+
photography: ★★☆☆☆
|
|
90
|
+
depth: ★☆☆☆☆
|
|
91
|
+
|
|
92
|
+
componentBehaviour:
|
|
93
|
+
buttons: solid 2D fill | rounded-md (8px) | no shadow
|
|
94
|
+
cards: flat solid surface tint | border-none | shadow-none
|
|
95
|
+
forms: clean input fields | solid background focus ring
|
|
96
|
+
navigation: top bar | solid brand background
|
|
97
|
+
search: pill search input with flat icon button
|
|
98
|
+
|
|
99
|
+
motionLanguage:
|
|
100
|
+
duration: 200ms
|
|
101
|
+
curve: ease-in-out
|
|
102
|
+
energy: medium
|
|
103
|
+
scroll: smooth
|
|
104
|
+
hover: slight background darkening
|
|
105
|
+
|
|
106
|
+
executableSignature: |
|
|
107
|
+
/* Flat Signature: Solid 2D fill with zero drop shadow */
|
|
108
|
+
.flat-card { background: var(--color-surface-subtle); border-radius: 12px; padding: 1.5rem; box-shadow: none; }
|
|
109
|
+
.flat-btn { background: var(--color-primary); color: #fff; border-radius: 8px; border: none; font-weight: 600; }
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
* **Color Palette**: Saturated 2D colors (Teal `#0D9488`, Cyan `#06B6D4`, Emerald `#10B981`, Amber `#F59E0B`, Indigo `#4F46E5`).
|
|
113
|
+
* **Typography**: Friendly geometric sans-serifs (`Outfit`, `Inter`, `Tajawal`).
|
|
114
|
+
* **Anti-Pattern Warning**: Making clickable buttons look so flat that users cannot distinguish interactive elements from static labels.
|
|
115
|
+
|
|
116
|
+
---
|
|
117
|
+
|
|
118
|
+
### 3. Material Design (Paper & Ink Physics)
|
|
119
|
+
* **Visual Philosophy**: Simulates physical paper sheets floating in a 3D light field. Surfaces stack with elevation shadows and move with natural momentum.
|
|
120
|
+
|
|
121
|
+
```yaml
|
|
122
|
+
confidence:
|
|
123
|
+
production: ★★★★★
|
|
124
|
+
marketing: ★★★☆☆
|
|
125
|
+
dashboard: ★★★★★
|
|
126
|
+
landing: ★★★☆☆
|
|
127
|
+
mobile: ★★★★★
|
|
128
|
+
accessibility: ★★★★★
|
|
129
|
+
|
|
130
|
+
compatibility:
|
|
131
|
+
compatible: [Flat, Minimalist, Corporate, Bento Box]
|
|
132
|
+
avoid: [Brutalism, Cyberpunk, Neo-Brutalism, Vaporwave]
|
|
133
|
+
|
|
134
|
+
brandPersonality: [Systematic, Intuitive, Structured, Responsive, Familiar]
|
|
135
|
+
|
|
136
|
+
visualDNA:
|
|
137
|
+
grid: ★★★★☆
|
|
138
|
+
typography: ★★★★☆
|
|
139
|
+
geometry: ★★★★☆
|
|
140
|
+
illustration: ★★★☆☆
|
|
141
|
+
motion: ★★★★☆
|
|
142
|
+
texture: ★☆☆☆☆
|
|
143
|
+
photography: ★★★☆☆
|
|
144
|
+
depth: ★★★★☆
|
|
145
|
+
|
|
146
|
+
componentBehaviour:
|
|
147
|
+
buttons: elevated surface or text-link | rounded-md (12px) | ripple effect
|
|
148
|
+
cards: elevated paper card | shadow-sm to shadow-md on hover | rounded-xl
|
|
149
|
+
forms: outlined or filled floating-label inputs
|
|
150
|
+
navigation: bottom navigation rail (mobile) or persistent drawer
|
|
151
|
+
search: floating search bar card with rounded corners
|
|
152
|
+
|
|
153
|
+
motionLanguage:
|
|
154
|
+
duration: 250ms
|
|
155
|
+
curve: cubic-bezier(0.4, 0.0, 0.2, 1)
|
|
156
|
+
energy: medium
|
|
157
|
+
scroll: smooth elevation shifts
|
|
158
|
+
hover: shadow elevation increase (dp2 -> dp8)
|
|
159
|
+
|
|
160
|
+
executableSignature: |
|
|
161
|
+
/* Material Signature: Paper elevation shadow + touch ripple */
|
|
162
|
+
.material-card { background: #ffffff; border-radius: 16px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); transition: box-shadow 250ms ease; }
|
|
163
|
+
.material-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
* **Color Palette**: Tonal color palettes (Primary `#0F62FE`, Surface `#F6F7F8`, Surface Elevation `#FFFFFF`, Dark `#14171C`).
|
|
167
|
+
* **Typography**: Clean readable sans-serifs (`Roboto`, `Inter`, `Tajawal`).
|
|
168
|
+
* **Anti-Pattern Warning**: Copying Google's specific component shapes wholesale without infusing brand identity.
|
|
169
|
+
|
|
170
|
+
---
|
|
171
|
+
|
|
172
|
+
### 4. Minimalism
|
|
173
|
+
* **Visual Philosophy**: Radical restraint. Strips away all non-essential decorative elements to focus purely on high-contrast typography, content, and spatial rhythm.
|
|
174
|
+
|
|
175
|
+
```yaml
|
|
176
|
+
confidence:
|
|
177
|
+
production: ★★★★☆
|
|
178
|
+
marketing: ★★★★★
|
|
179
|
+
dashboard: ★★★☆☆
|
|
180
|
+
landing: ★★★★★
|
|
181
|
+
mobile: ★★★★☆
|
|
182
|
+
accessibility: ★★★★☆
|
|
183
|
+
|
|
184
|
+
compatibility:
|
|
185
|
+
compatible: [Swiss, Editorial, Bento Box, Organic]
|
|
186
|
+
avoid: [Maximalism, Neo-Brutalism, Cyberpunk, Mixed Media]
|
|
187
|
+
|
|
188
|
+
brandPersonality: [Refined, Elegant, Quiet, Sophisticated, Exclusive]
|
|
189
|
+
|
|
190
|
+
visualDNA:
|
|
191
|
+
grid: ★★★★☆
|
|
192
|
+
typography: ★★★★★
|
|
193
|
+
geometry: ★★★☆☆
|
|
194
|
+
illustration: ★☆☆☆☆
|
|
195
|
+
motion: ★★☆☆☆
|
|
196
|
+
texture: ★☆☆☆☆
|
|
197
|
+
photography: ★★★★☆
|
|
198
|
+
depth: ★☆☆☆☆
|
|
199
|
+
|
|
200
|
+
componentBehaviour:
|
|
201
|
+
buttons: ghost or thin outline | rounded-md or pill | no shadow
|
|
202
|
+
cards: borderless or 1px ultra-light hairline border
|
|
203
|
+
forms: single-line underline inputs
|
|
204
|
+
navigation: minimal wordmark left, single action right
|
|
205
|
+
search: subtle search icon trigger expanding inline
|
|
206
|
+
|
|
207
|
+
motionLanguage:
|
|
208
|
+
duration: 300ms
|
|
209
|
+
curve: cubic-bezier(0.16, 1, 0.3, 1)
|
|
210
|
+
energy: low
|
|
211
|
+
scroll: subtle opacity fade-ins
|
|
212
|
+
hover: delicate color opacity shift
|
|
213
|
+
|
|
214
|
+
executableSignature: |
|
|
215
|
+
/* Minimalist Signature: Expansive whitespace + high-contrast display type */
|
|
216
|
+
.minimal-hero { padding: 8rem 2rem; max-width: 800px; margin: 0 auto; text-align: center; }
|
|
217
|
+
.minimal-headline { font-size: clamp(3rem, 6vw, 5rem); font-weight: 300; letter-spacing: -0.02em; line-height: 1.1; }
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
* **Color Palette**: Ultra-restrained neutrals (`#FFFFFF`, `#F8FAFC`, `#0F172A`, `#64748B`) with max 1 accent color.
|
|
221
|
+
* **Typography**: Refined display typography (`El Messiri`, `Outfit`, `Cormorant Garamond`).
|
|
222
|
+
* **Anti-Pattern Warning**: Using minimalism as an excuse for lack of design decisions — every remaining pixel must be intentionally placed.
|
|
223
|
+
|
|
224
|
+
---
|
|
225
|
+
|
|
226
|
+
### 5. Brutalism & Neo-Brutalism
|
|
227
|
+
* **Visual Philosophy**: High-energy, raw, and intentionally unpolished aesthetic. Neo-Brutalism combines stark black borders and hard offset shadows with vibrant pop-art colors.
|
|
228
|
+
|
|
229
|
+
```yaml
|
|
230
|
+
confidence:
|
|
231
|
+
production: ★★★☆☆
|
|
232
|
+
marketing: ★★★★★
|
|
233
|
+
dashboard: ★★☆☆☆
|
|
234
|
+
landing: ★★★★★
|
|
235
|
+
mobile: ★★★☆☆
|
|
236
|
+
accessibility: ★★★★☆
|
|
237
|
+
|
|
238
|
+
compatibility:
|
|
239
|
+
compatible: [Industrial, Pop Art, Kinetic Typography, Memphis]
|
|
240
|
+
avoid: [Glassmorphism, Neumorphism, Skeuomorphism, Aurora]
|
|
241
|
+
|
|
242
|
+
brandPersonality: [Bold, Unapologetic, Rebellious, High-Energy, Raw, Creative]
|
|
243
|
+
|
|
244
|
+
visualDNA:
|
|
245
|
+
grid: ★★★★★
|
|
246
|
+
typography: ★★★★★
|
|
247
|
+
geometry: ★★★★★
|
|
248
|
+
illustration: ★★★☆☆
|
|
249
|
+
motion: ★★★☆☆
|
|
250
|
+
texture: ★★☆☆☆
|
|
251
|
+
photography: ★★★☆☆
|
|
252
|
+
depth: ★★☆☆☆
|
|
253
|
+
|
|
254
|
+
componentBehaviour:
|
|
255
|
+
buttons: solid vibrant fill | 2px solid #000 | 4px 4px 0px #000 shadow | hover press down
|
|
256
|
+
cards: solid background | 2px solid #000 | 4px 4px 0px #000 shadow | sharp/rounded-lg
|
|
257
|
+
forms: thick 2px black border inputs | hard offset focus shadow
|
|
258
|
+
navigation: thick bottom border | high contrast sticker pills
|
|
259
|
+
search: prominent input with hard black shadow CTA button
|
|
260
|
+
|
|
261
|
+
motionLanguage:
|
|
262
|
+
duration: 100ms
|
|
263
|
+
curve: steps(2) or linear
|
|
264
|
+
energy: high
|
|
265
|
+
scroll: hard marquee scroll
|
|
266
|
+
hover: translate(2px, 2px) shadow shrink
|
|
267
|
+
|
|
268
|
+
executableSignature: |
|
|
269
|
+
/* Neo-Brutalist Signature: 2px solid black border + 4px hard offset shadow */
|
|
270
|
+
.neo-btn { background: #FACC15; color: #000; border: 2px solid #000; box-shadow: 4px 4px 0px #000; font-weight: 800; padding: 0.75rem 1.5rem; transition: all 100ms ease; }
|
|
271
|
+
.neo-btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0px #000; }
|
|
272
|
+
```
|
|
273
|
+
|
|
274
|
+
* **Color Palette**: Electric Yellow `#FACC15`, Neon Pink `#EC4899`, Mint `#34D399`, Cyan `#22D3EE`, Stark Black `#000000`, Pure White `#FFFFFF`.
|
|
275
|
+
* **Typography**: Heavy bold sans-serif headlines paired with monospaced code fonts (`JetBrains Mono`, `Oswald`).
|
|
276
|
+
* **Anti-Pattern Warning**: Confusing unstyled broken HTML with Neo-Brutalism — Neo-Brutalism requires precise contrast, clear usability, and intentional offset shadows.
|
|
277
|
+
|
|
278
|
+
---
|
|
279
|
+
|
|
280
|
+
### 6. Bauhaus (Digital Interpretation)
|
|
281
|
+
* **Visual Philosophy**: "Form follows function" meets primary geometry. Uses primary colors and basic geometric shapes (circle, square, triangle) as structural layout anchors.
|
|
282
|
+
|
|
283
|
+
```yaml
|
|
284
|
+
confidence:
|
|
285
|
+
production: ★★★★☆
|
|
286
|
+
marketing: ★★★★☆
|
|
287
|
+
dashboard: ★★★☆☆
|
|
288
|
+
landing: ★★★★☆
|
|
289
|
+
mobile: ★★★★☆
|
|
290
|
+
accessibility: ★★★★★
|
|
291
|
+
|
|
292
|
+
compatibility:
|
|
293
|
+
compatible: [Swiss, Minimalist, Editorial, Modernism]
|
|
294
|
+
avoid: [Glassmorphism, Claymorphism, Organic, Neumorphism]
|
|
295
|
+
|
|
296
|
+
brandPersonality: [Constructive, Geometric, Rational, Artistic, Foundational]
|
|
297
|
+
|
|
298
|
+
visualDNA:
|
|
299
|
+
grid: ★★★★★
|
|
300
|
+
typography: ★★★★★
|
|
301
|
+
geometry: ★★★★★
|
|
302
|
+
illustration: ★★☆☆☆
|
|
303
|
+
motion: ★★☆☆☆
|
|
304
|
+
texture: ★☆☆☆☆
|
|
305
|
+
photography: ★★☆☆☆
|
|
306
|
+
depth: ★☆☆☆☆
|
|
307
|
+
|
|
308
|
+
componentBehaviour:
|
|
309
|
+
buttons: primary color filled | square or circular end-caps | 2px solid border
|
|
310
|
+
cards: color-blocked panels | geometric borders | sharp corners
|
|
311
|
+
forms: clean rectangular fields with primary color focus indicators
|
|
312
|
+
navigation: asymmetric top bar with circular emblem anchor
|
|
313
|
+
search: geometric search bar with primary red/blue trigger icon
|
|
314
|
+
|
|
315
|
+
motionLanguage:
|
|
316
|
+
duration: 200ms
|
|
317
|
+
curve: ease-out
|
|
318
|
+
energy: medium
|
|
319
|
+
scroll: none
|
|
320
|
+
hover: color block swap
|
|
321
|
+
|
|
322
|
+
executableSignature: |
|
|
323
|
+
/* Bauhaus Signature: Primary color-blocked geometry */
|
|
324
|
+
.bauhaus-badge { background: #DC2626; color: #fff; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
|
|
325
|
+
.bauhaus-card { border-left: 6px solid #2563EB; background: #F9FAFB; padding: 1.5rem; }
|
|
326
|
+
```
|
|
327
|
+
|
|
328
|
+
* **Color Palette**: Primary triad (Bauhaus Red `#DC2626`, Primary Blue `#2563EB`, Golden Yellow `#D97706`, Jet Black `#0F172A`, Off-White `#F9FAFB`).
|
|
329
|
+
* **Typography**: Geometric sans-serifs (`Outfit`, `Futura-style`).
|
|
330
|
+
* **Anti-Pattern Warning**: Placing floating circles and triangles on a page with no structural layout purpose.
|
|
331
|
+
|
|
332
|
+
---
|
|
333
|
+
|
|
334
|
+
### 7. Skeuomorphism & Digital Skeuomorphism
|
|
335
|
+
* **Visual Philosophy**: UI elements mirror physical real-world counterparts through textures, inner bevels, gradients, and realistic lighting.
|
|
336
|
+
|
|
337
|
+
```yaml
|
|
338
|
+
confidence:
|
|
339
|
+
production: ★★☆☆☆
|
|
340
|
+
marketing: ★★★☆☆
|
|
341
|
+
dashboard: ★★★☆☆
|
|
342
|
+
landing: ★★★☆☆
|
|
343
|
+
mobile: ★★☆☆☆
|
|
344
|
+
accessibility: ★★☆☆☆
|
|
345
|
+
|
|
346
|
+
compatibility:
|
|
347
|
+
compatible: [Industrial, Neumorphism, Editorial]
|
|
348
|
+
avoid: [Flat, Neo-Brutalism, Swiss, Material]
|
|
349
|
+
|
|
350
|
+
brandPersonality: [Tactile, Nostalgic, Craft-Focused, Physical, Instrumental]
|
|
351
|
+
|
|
352
|
+
visualDNA:
|
|
353
|
+
grid: ★★★☆☆
|
|
354
|
+
typography: ★★★☆☆
|
|
355
|
+
geometry: ★★★☆☆
|
|
356
|
+
illustration: ★★★☆☆
|
|
357
|
+
motion: ★★☆☆☆
|
|
358
|
+
texture: ★★★★★
|
|
359
|
+
photography: ★★★☆☆
|
|
360
|
+
depth: ★★★★★
|
|
361
|
+
|
|
362
|
+
componentBehaviour:
|
|
363
|
+
buttons: tactile push-button | metallic/leather gradient fill | inner highlight bevel
|
|
364
|
+
cards: leather/metal textured card | inset shadow container
|
|
365
|
+
forms: recessed input wells | inner top shadow
|
|
366
|
+
navigation: instrument panel header with physical toggle switches
|
|
367
|
+
search: inset search well with metallic magnifying glass button
|
|
368
|
+
|
|
369
|
+
motionLanguage:
|
|
370
|
+
duration: 150ms
|
|
371
|
+
curve: ease-in-out
|
|
372
|
+
energy: low
|
|
373
|
+
scroll: mechanical click feel
|
|
374
|
+
hover: specular light highlight shift
|
|
375
|
+
|
|
376
|
+
executableSignature: |
|
|
377
|
+
/* Skeuomorphic Signature: Dual inner/outer bevel & tactile gradient */
|
|
378
|
+
.skeuo-btn { background: linear-gradient(180deg, #3B82F6 0%, #1D4ED8 100%); border: 1px solid #1E40AF; box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 4px 6px rgba(0,0,0,0.3); border-radius: 8px; color: #fff; font-weight: 600; }
|
|
379
|
+
```
|
|
380
|
+
|
|
381
|
+
* **Color Palette**: Tactile tones (Leather `#451A03`, Titanium `#64748B`, Cream Paper `#FDFBF7`, Deep Slate `#0F172A`).
|
|
382
|
+
* **Typography**: Classic serifs or technical instrument faces (`Cormorant Garamond`, `JetBrains Mono`).
|
|
383
|
+
* **Anti-Pattern Warning**: Overloading modern web apps with heavy textures that degrade mobile performance or screen reader access.
|
|
384
|
+
|
|
385
|
+
---
|
|
386
|
+
|
|
387
|
+
### 8. Glassmorphism
|
|
388
|
+
* **Visual Philosophy**: Frosted-glass translucency, multi-layered spatial hierarchy, and background blurring over vibrant backdrops.
|
|
389
|
+
|
|
390
|
+
```yaml
|
|
391
|
+
confidence:
|
|
392
|
+
production: ★★★★☆
|
|
393
|
+
marketing: ★★★★★
|
|
394
|
+
dashboard: ★★★★☆
|
|
395
|
+
landing: ★★★★★
|
|
396
|
+
mobile: ★★★★☆
|
|
397
|
+
accessibility: ★★★☆☆
|
|
398
|
+
|
|
399
|
+
compatibility:
|
|
400
|
+
compatible: [Aurora UI, Bento Box, Minimalist, Cyberpunk]
|
|
401
|
+
avoid: [Brutalism, Neo-Brutalism, Flat, Bauhaus]
|
|
402
|
+
|
|
403
|
+
brandPersonality: [Futuristic, Sleek, Spatial, Luminous, Premium]
|
|
404
|
+
|
|
405
|
+
visualDNA:
|
|
406
|
+
grid: ★★★★☆
|
|
407
|
+
typography: ★★★★☆
|
|
408
|
+
geometry: ★★★★☆
|
|
409
|
+
illustration: ★★☆☆☆
|
|
410
|
+
motion: ★★★☆☆
|
|
411
|
+
texture: ★★☆☆☆
|
|
412
|
+
photography: ★★★★☆
|
|
413
|
+
depth: ★★★★★
|
|
414
|
+
|
|
415
|
+
componentBehaviour:
|
|
416
|
+
buttons: frosted translucent pill | 1px light border | subtle glow hover
|
|
417
|
+
cards: frosted glass card | backdrop-filter blur | 1px semi-transparent white border
|
|
418
|
+
forms: translucent input fields with frosted background
|
|
419
|
+
navigation: floating frosted pill navbar centered at top
|
|
420
|
+
search: frosted search input bar with glass icon badge
|
|
421
|
+
|
|
422
|
+
motionLanguage:
|
|
423
|
+
duration: 250ms
|
|
424
|
+
curve: cubic-bezier(0.16, 1, 0.3, 1)
|
|
425
|
+
energy: medium
|
|
426
|
+
scroll: parallax glass depth layering
|
|
427
|
+
hover: backdrop blur increase & border highlight
|
|
428
|
+
|
|
429
|
+
executableSignature: |
|
|
430
|
+
/* Glassmorphism Signature: Backdrop blur + semi-transparent border */
|
|
431
|
+
.glass-card { background: rgba(255, 255, 255, 0.12); backdrop-filter: blur(16px) saturate(180%); -webkit-backdrop-filter: blur(16px) saturate(180%); border: 1px solid rgba(255, 255, 255, 0.2); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12); border-radius: 20px; }
|
|
432
|
+
```
|
|
433
|
+
|
|
434
|
+
* **Color Palette**: Semi-transparent whites and darks (`rgba(255, 255, 255, 0.15)` / `rgba(15, 23, 42, 0.65)`) over vibrant background mesh gradients.
|
|
435
|
+
* **Typography**: Ultra-clean modern sans-serifs (`Outfit`, `Inter`, `Tajawal`).
|
|
436
|
+
* **Anti-Pattern Warning**: Layering glass panel over glass panel without sufficient text contrast — contrast breaks down rapidly if background blur is under-calculated.
|
|
437
|
+
|
|
438
|
+
---
|
|
439
|
+
|
|
440
|
+
### 9. Maximalism & Mixed Media
|
|
441
|
+
* **Visual Philosophy**: "More is more." Rich visual density, layered typography, kinetic text, collage imagery, and energetic color collisions.
|
|
442
|
+
|
|
443
|
+
```yaml
|
|
444
|
+
confidence:
|
|
445
|
+
production: ★★☆☆☆
|
|
446
|
+
marketing: ★★★★★
|
|
447
|
+
dashboard: ★☆☆☆☆
|
|
448
|
+
landing: ★★★★☆
|
|
449
|
+
mobile: ★★★☆☆
|
|
450
|
+
accessibility: ★★☆☆☆
|
|
451
|
+
|
|
452
|
+
compatibility:
|
|
453
|
+
compatible: [Neo-Brutalism, Kinetic Typography, Cyberpunk, Memphis]
|
|
454
|
+
avoid: [Minimalism, Swiss, Material, Corporate]
|
|
455
|
+
|
|
456
|
+
brandPersonality: [Energetic, Unconventional, Loud, Experimental, Expressive]
|
|
457
|
+
|
|
458
|
+
visualDNA:
|
|
459
|
+
grid: ★★☆☆☆
|
|
460
|
+
typography: ★★★★★
|
|
461
|
+
geometry: ★★★☆☆
|
|
462
|
+
illustration: ★★★★★
|
|
463
|
+
motion: ★★★★★
|
|
464
|
+
texture: ★★★★☆
|
|
465
|
+
photography: ★★★★★
|
|
466
|
+
depth: ★★★★☆
|
|
467
|
+
|
|
468
|
+
componentBehaviour:
|
|
469
|
+
buttons: high-contrast multi-color button | custom typography mix
|
|
470
|
+
cards: collage card with overlapping sticker badges & textures
|
|
471
|
+
forms: expressive form fields with contrasting border styles
|
|
472
|
+
navigation: marquee ticker header with overlapping logo emblem
|
|
473
|
+
search: prominent full-width search input with animated search prompt
|
|
474
|
+
|
|
475
|
+
motionLanguage:
|
|
476
|
+
duration: 350ms
|
|
477
|
+
curve: cubic-bezier(0.34, 1.56, 0.64, 1)
|
|
478
|
+
energy: high
|
|
479
|
+
scroll: marquee text ticker & parallax stickers
|
|
480
|
+
hover: scale bounce & color inversion
|
|
481
|
+
|
|
482
|
+
executableSignature: |
|
|
483
|
+
/* Maximalist Signature: Overlapping sticker badge + kinetic ticker */
|
|
484
|
+
.maximal-badge { transform: rotate(-4deg); background: #EC4899; color: #fff; padding: 0.4rem 1rem; font-weight: 900; box-shadow: 3px 3px 0 #000; display: inline-block; }
|
|
485
|
+
.maximal-marquee { display: flex; overflow: hidden; white-space: nowrap; font-size: 2rem; font-weight: 800; }
|
|
486
|
+
```
|
|
487
|
+
|
|
488
|
+
* **Color Palette**: High-voltage multi-color palettes (Vivid Purple `#7C3AED`, Acid Green `#84CC16`, Hot Crimson `#E11D48`, Deep Indigo `#312E81`).
|
|
489
|
+
* **Typography**: Unexpected headline pairings (Super-bold Serif + Condensed Mono + Display Sans).
|
|
490
|
+
* **Anti-Pattern Warning**: Visual chaos without focal hierarchy — the primary CTA and navigation must remain crystal-clear amidst the maximalism.
|
|
491
|
+
|
|
492
|
+
---
|
|
493
|
+
|
|
494
|
+
### 10. Industrial Style (Web App / Technical)
|
|
495
|
+
* **Visual Philosophy**: Architectural and engineering rawness. Blueprint grids, monospaced data density, titanium grounds, and mechanical precision.
|
|
496
|
+
|
|
497
|
+
```yaml
|
|
498
|
+
confidence:
|
|
499
|
+
production: ★★★★★
|
|
500
|
+
marketing: ★★★☆☆
|
|
501
|
+
dashboard: ★★★★★
|
|
502
|
+
landing: ★★★★☆
|
|
503
|
+
mobile: ★★★★☆
|
|
504
|
+
accessibility: ★★★★★
|
|
505
|
+
|
|
506
|
+
compatibility:
|
|
507
|
+
compatible: [Swiss, Brutalism, Cyberpunk, Bento Box]
|
|
508
|
+
avoid: [Corporate Memphis, Claymorphism, Organic, Frutiger Aero]
|
|
509
|
+
|
|
510
|
+
brandPersonality: [Technical, Mechanical, Precision-Engineered, Utilitarian, Robust]
|
|
511
|
+
|
|
512
|
+
visualDNA:
|
|
513
|
+
grid: ★★★★★
|
|
514
|
+
typography: ★★★★★
|
|
515
|
+
geometry: ★★★★☆
|
|
516
|
+
illustration: ★☆☆☆☆
|
|
517
|
+
motion: ★☆☆☆☆
|
|
518
|
+
texture: ★★☆☆☆
|
|
519
|
+
photography: ★★☆☆☆
|
|
520
|
+
depth: ★☆☆☆☆
|
|
521
|
+
|
|
522
|
+
componentBehaviour:
|
|
523
|
+
buttons: monospaced label button | sharp 2px corners | hairline border
|
|
524
|
+
cards: titanium surface card | fine blueprint hairline border (`1px solid #334155`)
|
|
525
|
+
forms: compact monospaced input fields with unit suffixes (`ms`, `kb`, `fps`)
|
|
526
|
+
navigation: telemetry status bar with `● LIVE` indicator dot
|
|
527
|
+
search: monospaced CLI prompt input (`> search_query...`)
|
|
528
|
+
|
|
529
|
+
motionLanguage:
|
|
530
|
+
duration: 100ms
|
|
531
|
+
curve: linear
|
|
532
|
+
energy: low
|
|
533
|
+
scroll: none
|
|
534
|
+
hover: hairline border color shift to amber/cyan
|
|
535
|
+
|
|
536
|
+
executableSignature: |
|
|
537
|
+
/* Industrial Signature: Blueprint hairline grid + telemetry dot */
|
|
538
|
+
.industrial-card { background: #0F172A; border: 1px solid #334155; padding: 1.25rem; font-family: 'JetBrains Mono', monospace; }
|
|
539
|
+
.industrial-status { display: inline-flex; align-items: center; gap: 0.5rem; color: #F59E0B; font-size: 0.75rem; }
|
|
540
|
+
```
|
|
541
|
+
|
|
542
|
+
* **Color Palette**: Monochromatic metal (`#090A0F`, `#1E293B`, `#334155`, `#94A3B8`) with high-visibility signal accents (Amber `#F59E0B` or Safety Orange `#FF6B00`).
|
|
543
|
+
* **Typography**: Monospaced fonts for all data (`JetBrains Mono`, `Menlo`) paired with industrial sans (`Oswald`).
|
|
544
|
+
* **Anti-Pattern Warning**: Making text sizes so small and dense that readability on mobile viewports fails.
|
|
545
|
+
|
|
546
|
+
---
|
|
547
|
+
|
|
548
|
+
### 11. Bento Box UI (Bento Grid)
|
|
549
|
+
* **Visual Philosophy**: Compartmentalized modular rectangular tiles inspired by Japanese bento lunch boxes. High information density with responsive masonry grid rhythm.
|
|
550
|
+
|
|
551
|
+
```yaml
|
|
552
|
+
confidence:
|
|
553
|
+
production: ★★★★★
|
|
554
|
+
marketing: ★★★★★
|
|
555
|
+
dashboard: ★★★★★
|
|
556
|
+
landing: ★★★★★
|
|
557
|
+
mobile: ★★★★★
|
|
558
|
+
accessibility: ★★★★★
|
|
559
|
+
|
|
560
|
+
compatibility:
|
|
561
|
+
compatible: [Minimalist, Glassmorphism, Material, Industrial, Aurora]
|
|
562
|
+
avoid: [Maximalism, Neo-Brutalism, Skeuomorphism]
|
|
563
|
+
|
|
564
|
+
brandPersonality: [Organized, Efficient, Modular, High-Tech, Clean]
|
|
565
|
+
|
|
566
|
+
visualDNA:
|
|
567
|
+
grid: ★★★★★
|
|
568
|
+
typography: ★★★★☆
|
|
569
|
+
geometry: ★★★★★
|
|
570
|
+
illustration: ★★★☆☆
|
|
571
|
+
motion: ★★☆☆☆
|
|
572
|
+
texture: ★☆☆☆☆
|
|
573
|
+
photography: ★★★★☆
|
|
574
|
+
depth: ★★☆☆☆
|
|
575
|
+
|
|
576
|
+
componentBehaviour:
|
|
577
|
+
buttons: rounded-xl button | primary color fill
|
|
578
|
+
cards: modular bento tile | rounded-2xl (20px-24px) | 1px subtle border | subtle hover lift
|
|
579
|
+
forms: rounded input fields embedded directly inside bento tiles
|
|
580
|
+
navigation: clean header navbar aligned with bento grid container
|
|
581
|
+
search: bento search tile with live keyboard shortcut badge
|
|
582
|
+
|
|
583
|
+
motionLanguage:
|
|
584
|
+
duration: 200ms
|
|
585
|
+
curve: cubic-bezier(0.16, 1, 0.3, 1)
|
|
586
|
+
energy: medium
|
|
587
|
+
scroll: smooth staggered card fade-ins
|
|
588
|
+
hover: translate-y(-4px) lift
|
|
589
|
+
|
|
590
|
+
executableSignature: |
|
|
591
|
+
/* Bento Grid Signature: Modular rounded-2xl masonry tiles */
|
|
592
|
+
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
|
|
593
|
+
.bento-tile { background: var(--color-surface); border: 1px solid var(--border); border-radius: 24px; padding: 1.75rem; transition: transform 200ms ease; }
|
|
594
|
+
.bento-tile:hover { transform: translateY(-4px); }
|
|
595
|
+
```
|
|
596
|
+
|
|
597
|
+
* **Color Palette**: Subtle surface steps (`#F8FAFC`, `#F1F5F9`, `#E2E8F0` for light; `#0F172A`, `#1E293B`, `#334155` for dark) with 1 primary accent.
|
|
598
|
+
* **Typography**: Clean geometric sans-serifs (`Outfit`, `Inter`, `Tajawal`).
|
|
599
|
+
* **Anti-Pattern Warning**: Filling bento tiles with generic icon+headline filler — every bento card must showcase a distinct visual widget or interactive micro-preview.
|
|
600
|
+
|
|
601
|
+
---
|
|
602
|
+
|
|
603
|
+
### 12. Aurora UI (Mesh Gradients)
|
|
604
|
+
* **Visual Philosophy**: Glowing, fluid background mesh gradients resembling the Northern Lights. Gives a futuristic, high-tech feel without cluttering foreground content.
|
|
605
|
+
|
|
606
|
+
```yaml
|
|
607
|
+
confidence:
|
|
608
|
+
production: ★★★★☆
|
|
609
|
+
marketing: ★★★★★
|
|
610
|
+
dashboard: ★★★★☆
|
|
611
|
+
landing: ★★★★★
|
|
612
|
+
mobile: ★★★★☆
|
|
613
|
+
accessibility: ★★★★☆
|
|
614
|
+
|
|
615
|
+
compatibility:
|
|
616
|
+
compatible: [Glassmorphism, Bento Box, Minimalist, Cyberpunk]
|
|
617
|
+
avoid: [Brutalism, Neo-Brutalism, Skeuomorphism, Swiss]
|
|
618
|
+
|
|
619
|
+
brandPersonality: [Luminescent, Futuristic, Innovative, Fluid, Magical]
|
|
620
|
+
|
|
621
|
+
visualDNA:
|
|
622
|
+
grid: ★★★☆☆
|
|
623
|
+
typography: ★★★★☆
|
|
624
|
+
geometry: ★★★☆☆
|
|
625
|
+
illustration: ★★☆☆☆
|
|
626
|
+
motion: ★★★★☆
|
|
627
|
+
texture: ★☆☆☆☆
|
|
628
|
+
photography: ★★★☆☆
|
|
629
|
+
depth: ★★★★☆
|
|
630
|
+
|
|
631
|
+
componentBehaviour:
|
|
632
|
+
buttons: glowing primary button | subtle radial backlight ring
|
|
633
|
+
cards: dark card with glowing mesh aura behind background
|
|
634
|
+
forms: glowing input focus ring with mesh backdrop
|
|
635
|
+
navigation: transparent dark navbar with glowing gradient border
|
|
636
|
+
search: glowing mesh search pill container
|
|
637
|
+
|
|
638
|
+
motionLanguage:
|
|
639
|
+
duration: 8000ms (mesh drift) / 200ms (interaction)
|
|
640
|
+
curve: ease-in-out
|
|
641
|
+
energy: medium (ambient glow drift)
|
|
642
|
+
scroll: smooth parallax mesh glow shift
|
|
643
|
+
hover: glow intensity increase
|
|
644
|
+
|
|
645
|
+
executableSignature: |
|
|
646
|
+
/* Aurora Mesh Signature: Blended glowing blur backdrop */
|
|
647
|
+
.aurora-bg { position: relative; background: #0F172A; overflow: hidden; }
|
|
648
|
+
.aurora-bg::before { content: ''; position: absolute; top: -20%; left: -20%; width: 140%; height: 140%; background: radial-gradient(circle, rgba(79,70,229,0.3) 0%, rgba(6,182,212,0.2) 40%, transparent 70%); filter: blur(60px); }
|
|
649
|
+
```
|
|
650
|
+
|
|
651
|
+
* **Color Palette**: Blended luminescent gradients (Indigo `#4F46E5` → Cyan `#06B6D4` → Emerald `#10B981` → Violet `#8B5CF6`).
|
|
652
|
+
* **Typography**: Crisp modern sans-serifs (`Outfit`, `Inter`).
|
|
653
|
+
* **Anti-Pattern Warning**: Putting high-intensity mesh gradients directly behind small dark body text, destroying readability.
|
|
654
|
+
|
|
655
|
+
---
|
|
656
|
+
|
|
657
|
+
### 13. Neumorphism (Soft UI)
|
|
658
|
+
* **Visual Philosophy**: Minimalist evolution of skeuomorphism where UI elements appear extruded directly out of the background surface.
|
|
659
|
+
|
|
660
|
+
```yaml
|
|
661
|
+
confidence:
|
|
662
|
+
production: ★★☆☆☆
|
|
663
|
+
marketing: ★★★☆☆
|
|
664
|
+
dashboard: ★★★☆☆
|
|
665
|
+
landing: ★★★☆☆
|
|
666
|
+
mobile: ★★☆☆☆
|
|
667
|
+
accessibility: ★☆☆☆☆
|
|
668
|
+
|
|
669
|
+
compatibility:
|
|
670
|
+
compatible: [Minimalist, Skeuomorphism, Organic]
|
|
671
|
+
avoid: [Flat, Neo-Brutalism, Cyberpunk, Swiss]
|
|
672
|
+
|
|
673
|
+
brandPersonality: [Soft, Tactile, Monochromatic, Subtle, Futuristic]
|
|
674
|
+
|
|
675
|
+
visualDNA:
|
|
676
|
+
grid: ★★★☆☆
|
|
677
|
+
typography: ★★★☆☆
|
|
678
|
+
geometry: ★★★★☆
|
|
679
|
+
illustration: ★☆☆☆☆
|
|
680
|
+
motion: ★★☆☆☆
|
|
681
|
+
texture: ★★☆☆☆
|
|
682
|
+
photography: ★★☆☆☆
|
|
683
|
+
depth: ★★★★★
|
|
684
|
+
|
|
685
|
+
componentBehaviour:
|
|
686
|
+
buttons: extruded soft push button | dual light/dark shadow | inset shadow on press
|
|
687
|
+
cards: extruded surface card | rounded-2xl | zero border outline
|
|
688
|
+
forms: inset shadow input well (`box-shadow: inset 3px 3px 6px #b8b9be, inset -3px -3px 6px #ffffff`)
|
|
689
|
+
navigation: soft extruded navbar rail
|
|
690
|
+
search: inset search well with soft extruded trigger button
|
|
691
|
+
|
|
692
|
+
motionLanguage:
|
|
693
|
+
duration: 150ms
|
|
694
|
+
curve: ease-out
|
|
695
|
+
energy: low
|
|
696
|
+
scroll: none
|
|
697
|
+
hover: shadow depth shift (extruded to inset on click)
|
|
698
|
+
|
|
699
|
+
executableSignature: |
|
|
700
|
+
/* Neumorphic Signature: Dual soft light/dark extrusion shadow */
|
|
701
|
+
.neu-card { background: #E0E5EC; border-radius: 20px; box-shadow: 8px 8px 16px #a3b1c6, -8px -8px 16px #ffffff; padding: 1.5rem; }
|
|
702
|
+
.neu-input { background: #E0E5EC; border-radius: 12px; box-shadow: inset 4px 4px 8px #a3b1c6, inset -4px -4px 8px #ffffff; border: none; }
|
|
703
|
+
```
|
|
704
|
+
|
|
705
|
+
* **Color Palette**: Monochromatic low-contrast grounds (Light `#E0E5EC` or Dark `#1E293B`).
|
|
706
|
+
* **Typography**: Soft rounded sans-serifs (`Outfit`, `Tajawal`).
|
|
707
|
+
* **Anti-Pattern Warning**: Neumorphic buttons often fail WCAG 2.1 AA contrast if high-contrast text or border outlines are omitted.
|
|
708
|
+
|
|
709
|
+
---
|
|
710
|
+
|
|
711
|
+
### 14. Corporate Memphis (Alegria)
|
|
712
|
+
* **Visual Philosophy**: Friendly, approachable flat illustration and UI style featuring geometric characters with colorful, disproportionate limbs.
|
|
713
|
+
|
|
714
|
+
```yaml
|
|
715
|
+
confidence:
|
|
716
|
+
production: ★★★★☆
|
|
717
|
+
marketing: ★★★★☆
|
|
718
|
+
dashboard: ★★★☆☆
|
|
719
|
+
landing: ★★★★☆
|
|
720
|
+
mobile: ★★★★☆
|
|
721
|
+
accessibility: ★★★★☆
|
|
722
|
+
|
|
723
|
+
compatibility:
|
|
724
|
+
compatible: [Flat, Material, Minimalist]
|
|
725
|
+
avoid: [Industrial, Cyberpunk, Neo-Brutalism, Skeuomorphism]
|
|
726
|
+
|
|
727
|
+
brandPersonality: [Friendly, Approachable, Inclusive, Playful, Optimistic]
|
|
728
|
+
|
|
729
|
+
visualDNA:
|
|
730
|
+
grid: ★★★☆☆
|
|
731
|
+
typography: ★★★★☆
|
|
732
|
+
geometry: ★★★★☆
|
|
733
|
+
illustration: ★★★★★
|
|
734
|
+
motion: ★★★☆☆
|
|
735
|
+
texture: ★☆☆☆☆
|
|
736
|
+
photography: ★☆☆☆☆
|
|
737
|
+
depth: ★☆☆☆☆
|
|
738
|
+
|
|
739
|
+
componentBehaviour:
|
|
740
|
+
buttons: pill button (`border-radius: 9999px`) | friendly pastel fill
|
|
741
|
+
cards: soft pastel card panel (`#F8FAFC`) | rounded-2xl | no sharp edges
|
|
742
|
+
forms: friendly rounded inputs with soft pastel focus ring
|
|
743
|
+
navigation: top bar with friendly character emblem illustration
|
|
744
|
+
search: pill search input with rounded search icon
|
|
745
|
+
|
|
746
|
+
motionLanguage:
|
|
747
|
+
duration: 250ms
|
|
748
|
+
curve: cubic-bezier(0.34, 1.56, 0.64, 1)
|
|
749
|
+
energy: medium
|
|
750
|
+
scroll: floating illustration entrance
|
|
751
|
+
hover: gentle scale bounce
|
|
752
|
+
|
|
753
|
+
executableSignature: |
|
|
754
|
+
/* Corporate Memphis Signature: Soft pastel pill button + rounded card panel */
|
|
755
|
+
.memphis-card { background: #F8FAFC; border-radius: 24px; padding: 2rem; border: 1px solid #E2E8F0; }
|
|
756
|
+
.memphis-pill { background: #7C3AED; color: #fff; border-radius: 9999px; padding: 0.75rem 1.75rem; font-weight: 600; }
|
|
757
|
+
```
|
|
758
|
+
|
|
759
|
+
* **Color Palette**: Playful pastel and vibrant tones (Warm Peach `#FFEDD5`, Soft Purple `#DDD6FE`, Mint `#A7F3D0`, Sky Blue `#BAE6FD`).
|
|
760
|
+
* **Typography**: Friendly rounded sans-serifs (`Outfit`, `Tajawal`).
|
|
761
|
+
* **Anti-Pattern Warning**: Using Corporate Memphis for high-security FinTech or industrial medical tools where gravity and trust are paramount.
|
|
762
|
+
|
|
763
|
+
---
|
|
764
|
+
|
|
765
|
+
### 15. Cyberpunk & Vaporwave
|
|
766
|
+
* **Visual Philosophy**: High-tech dystopian aesthetic (Cyberpunk) or 80s nostalgic retro-futurism (Vaporwave). High-octane neon accents over pitch-black grounds.
|
|
767
|
+
|
|
768
|
+
```yaml
|
|
769
|
+
confidence:
|
|
770
|
+
production: ★★★☆☆
|
|
771
|
+
marketing: ★★★★★
|
|
772
|
+
dashboard: ★★★★☆
|
|
773
|
+
landing: ★★★★★
|
|
774
|
+
mobile: ★★★☆☆
|
|
775
|
+
accessibility: ★★★☆☆
|
|
776
|
+
|
|
777
|
+
compatibility:
|
|
778
|
+
compatible: [Industrial, Neon, Kinetic Typography, Glassmorphism]
|
|
779
|
+
avoid: [Corporate Memphis, Claymorphism, Organic, Swiss]
|
|
780
|
+
|
|
781
|
+
brandPersonality: [Rebellious, Dystopian, High-Tech, High-Octane, Futuristic]
|
|
782
|
+
|
|
783
|
+
visualDNA:
|
|
784
|
+
grid: ★★★★☆
|
|
785
|
+
typography: ★★★★★
|
|
786
|
+
geometry: ★★★★☆
|
|
787
|
+
illustration: ★★☆☆☆
|
|
788
|
+
motion: ★★★★☆
|
|
789
|
+
texture: ★★★☆☆
|
|
790
|
+
photography: ★★☆☆☆
|
|
791
|
+
depth: ★★★☆☆
|
|
792
|
+
|
|
793
|
+
componentBehaviour:
|
|
794
|
+
buttons: neon border button (`1px solid #00F0FF`) | glowing text | sharp chamfered corners
|
|
795
|
+
cards: dark card (`#090A0F`) | neon glow border | monospaced header bar
|
|
796
|
+
forms: monospaced neon-bordered inputs with scanline overlays
|
|
797
|
+
navigation: terminal HUD top bar with live telemetry counters
|
|
798
|
+
search: monospaced prompt (`> SEARCH_SYSTEM`) with neon trigger button
|
|
799
|
+
|
|
800
|
+
motionLanguage:
|
|
801
|
+
duration: 150ms
|
|
802
|
+
curve: steps(3) or linear
|
|
803
|
+
energy: high
|
|
804
|
+
scroll: glitch keyframe reveals & scanline drift
|
|
805
|
+
hover: neon border glow pulse
|
|
806
|
+
|
|
807
|
+
executableSignature: |
|
|
808
|
+
/* Cyberpunk Signature: Pitch-black ground + neon glow border */
|
|
809
|
+
.cyber-card { background: #090A0F; border: 1px solid #00F0FF; box-shadow: 0 0 12px rgba(0, 240, 255, 0.3); font-family: 'JetBrains Mono', monospace; padding: 1.5rem; }
|
|
810
|
+
.cyber-btn { background: #00F0FF; color: #000; font-weight: 800; text-transform: uppercase; border: none; clip-path: polygon(0 0, 90% 0, 100% 30%, 100% 100%, 10% 100%, 0 70%); }
|
|
811
|
+
```
|
|
812
|
+
|
|
813
|
+
* **Color Palette**: Pitch Black (`#050508`), Neon Cyan (`#00F0FF`), Neon Magenta (`#FF007F`), Acid Yellow (`#FFE600`).
|
|
814
|
+
* **Typography**: Monospaced code fonts (`JetBrains Mono`) paired with heavy industrial display titles (`Oswald`).
|
|
815
|
+
* **Anti-Pattern Warning**: Overusing glitch animations to the point where text becomes unreadable or triggers motion sickness.
|
|
816
|
+
|
|
817
|
+
---
|
|
818
|
+
|
|
819
|
+
### 16. Claymorphism
|
|
820
|
+
* **Visual Philosophy**: Playful 3D clay-like elements featuring soft matte surfaces, rounded puffy volumes, and deep warm inner reflections.
|
|
821
|
+
|
|
822
|
+
```yaml
|
|
823
|
+
confidence:
|
|
824
|
+
production: ★★☆☆☆
|
|
825
|
+
marketing: ★★★★☆
|
|
826
|
+
dashboard: ★★☆☆☆
|
|
827
|
+
landing: ★★★★☆
|
|
828
|
+
mobile: ★★★☆☆
|
|
829
|
+
accessibility: ★★★☆☆
|
|
830
|
+
|
|
831
|
+
compatibility:
|
|
832
|
+
compatible: [Corporate Memphis, Flat, Glassmorphism]
|
|
833
|
+
avoid: [Swiss, Brutalism, Industrial, Cyberpunk]
|
|
834
|
+
|
|
835
|
+
brandPersonality: [Playful, Friendly, Tactile, Whimsical, Gamified]
|
|
836
|
+
|
|
837
|
+
visualDNA:
|
|
838
|
+
grid: ★★★☆☆
|
|
839
|
+
typography: ★★★★☆
|
|
840
|
+
geometry: ★★★★☆
|
|
841
|
+
illustration: ★★★★☆
|
|
842
|
+
motion: ★★★☆☆
|
|
843
|
+
texture: ★★★☆☆
|
|
844
|
+
photography: ★☆☆☆☆
|
|
845
|
+
depth: ★★★★★
|
|
846
|
+
|
|
847
|
+
componentBehaviour:
|
|
848
|
+
buttons: puffy 3D clay button | deep inner light reflection | rounded-2xl
|
|
849
|
+
cards: puffy clay card | deep warm drop shadow + inner highlight
|
|
850
|
+
forms: rounded clay input wells
|
|
851
|
+
navigation: puffy floating top bar with rounded clay icons
|
|
852
|
+
search: clay search pill with soft 3D magnifying glass button
|
|
853
|
+
|
|
854
|
+
motionLanguage:
|
|
855
|
+
duration: 300ms
|
|
856
|
+
curve: cubic-bezier(0.34, 1.56, 0.64, 1)
|
|
857
|
+
energy: medium
|
|
858
|
+
scroll: smooth floating clay bounce
|
|
859
|
+
hover: 3D press-down spring animation
|
|
860
|
+
|
|
861
|
+
executableSignature: |
|
|
862
|
+
/* Claymorphism Signature: Puffy rounded volume + dual inner highlight */
|
|
863
|
+
.clay-card { background: #FFFBEB; border-radius: 28px; box-shadow: 8px 8px 16px rgba(0,0,0,0.08), inset -8px -8px 12px rgba(0,0,0,0.08), inset 8px 8px 12px rgba(255,255,255,0.7); padding: 1.75rem; }
|
|
864
|
+
```
|
|
865
|
+
|
|
866
|
+
* **Color Palette**: Soft pastel clay tones (Bubblegum `#F472B6`, Soft Sky `#38BDF8`, Mint `#34D399`, Clay Cream `#FFFBEB`).
|
|
867
|
+
* **Typography**: Round, friendly typography (`Outfit`, `Tajawal`).
|
|
868
|
+
* **Anti-Pattern Warning**: Excessive clay depth on small UI controls causing layout alignment issues on mobile screens.
|
|
869
|
+
|
|
870
|
+
---
|
|
871
|
+
|
|
872
|
+
### 17. Isometric Design
|
|
873
|
+
* **Visual Philosophy**: 3D parallel projection without converging perspective lines, creating detailed technical micro-worlds on 2D surfaces.
|
|
874
|
+
|
|
875
|
+
```yaml
|
|
876
|
+
confidence:
|
|
877
|
+
production: ★★★★☆
|
|
878
|
+
marketing: ★★★★★
|
|
879
|
+
dashboard: ★★★★☆
|
|
880
|
+
landing: ★★★★★
|
|
881
|
+
mobile: ★★★☆☆
|
|
882
|
+
accessibility: ★★★★☆
|
|
883
|
+
|
|
884
|
+
compatibility:
|
|
885
|
+
compatible: [Bento Box, Industrial, Corporate, Flat]
|
|
886
|
+
avoid: [Neo-Brutalism, Skeuomorphism, Cyberpunk]
|
|
887
|
+
|
|
888
|
+
brandPersonality: [Architectural, Technical, Analytical, Structured, Systemic]
|
|
889
|
+
|
|
890
|
+
visualDNA:
|
|
891
|
+
grid: ★★★★★
|
|
892
|
+
typography: ★★★★☆
|
|
893
|
+
geometry: ★★★★★
|
|
894
|
+
illustration: ★★★★★
|
|
895
|
+
motion: ★★☆☆☆
|
|
896
|
+
texture: ★☆☆☆☆
|
|
897
|
+
photography: ★★☆☆☆
|
|
898
|
+
depth: ★★★★☆
|
|
899
|
+
|
|
900
|
+
componentBehaviour:
|
|
901
|
+
buttons: clean vector button | sharp crisp edges
|
|
902
|
+
cards: vector card containing isometric SVG workflow diagram
|
|
903
|
+
forms: clean input fields aligned with isometric visual tiles
|
|
904
|
+
navigation: clean header top bar
|
|
905
|
+
search: isometric search trigger widget
|
|
906
|
+
|
|
907
|
+
motionLanguage:
|
|
908
|
+
duration: 250ms
|
|
909
|
+
curve: ease-out
|
|
910
|
+
energy: low
|
|
911
|
+
scroll: isometric layer parallax
|
|
912
|
+
hover: SVG 3D tile lift
|
|
913
|
+
|
|
914
|
+
executableSignature: |
|
|
915
|
+
/* Isometric Signature: 30-degree vector projection grid */
|
|
916
|
+
.iso-stage { transform: rotateX(60deg) rotateZ(-45deg); transform-style: preserve-3d; }
|
|
917
|
+
.iso-card { background: var(--color-surface); border: 1px solid var(--border); box-shadow: -10px 10px 0px rgba(0,0,0,0.05); }
|
|
918
|
+
```
|
|
919
|
+
|
|
920
|
+
* **Color Palette**: Structured multi-tone gradients (Primary Blue `#2563EB`, Slate `#475569`, Indigo `#4F46E5`).
|
|
921
|
+
* **Typography**: Crisp technical sans-serifs (`Inter`, `JetBrains Mono`).
|
|
922
|
+
* **Anti-Pattern Warning**: Using static raster PNG isometric images that pixelate on retina displays — use clean SVG vectors.
|
|
923
|
+
|
|
924
|
+
---
|
|
925
|
+
|
|
926
|
+
### 18. Kinetic Typography
|
|
927
|
+
* **Visual Philosophy**: Moving, scaling, and interactive text becomes the primary visual and structural hero element of the page, replacing traditional hero imagery.
|
|
928
|
+
|
|
929
|
+
```yaml
|
|
930
|
+
confidence:
|
|
931
|
+
production: ★★★☆☆
|
|
932
|
+
marketing: ★★★★★
|
|
933
|
+
dashboard: ★☆☆☆☆
|
|
934
|
+
landing: ★★★★★
|
|
935
|
+
mobile: ★★★☆☆
|
|
936
|
+
accessibility: ★★☆☆☆
|
|
937
|
+
|
|
938
|
+
compatibility:
|
|
939
|
+
compatible: [Swiss, Minimalist, Maximalism, Brutalism]
|
|
940
|
+
avoid: [Corporate Memphis, Skeuomorphism, Claymorphism]
|
|
941
|
+
|
|
942
|
+
brandPersonality: [Expressive, High-Contrast, Authoritative, Bold, Dynamic]
|
|
943
|
+
|
|
944
|
+
visualDNA:
|
|
945
|
+
grid: ★★★★☆
|
|
946
|
+
typography: ★★★★★
|
|
947
|
+
geometry: ★★★☆☆
|
|
948
|
+
illustration: ★☆☆☆☆
|
|
949
|
+
motion: ★★★★★
|
|
950
|
+
texture: ★☆☆☆☆
|
|
951
|
+
photography: ★★☆☆☆
|
|
952
|
+
depth: ★☆☆☆☆
|
|
953
|
+
|
|
954
|
+
componentBehaviour:
|
|
955
|
+
buttons: giant typography CTA link with arrow hover shift
|
|
956
|
+
cards: high-contrast text card with massive headline scale contrast
|
|
957
|
+
forms: full-width display input field with floating scaling label
|
|
958
|
+
navigation: full-viewport kinetic overlay navigation modal
|
|
959
|
+
search: giant full-screen interactive search overlay
|
|
960
|
+
|
|
961
|
+
motionLanguage:
|
|
962
|
+
duration: 400ms
|
|
963
|
+
curve: cubic-bezier(0.16, 1, 0.3, 1)
|
|
964
|
+
energy: high
|
|
965
|
+
scroll: marquee text scroll ticker
|
|
966
|
+
hover: interactive font-weight / letter-spacing stretch
|
|
967
|
+
|
|
968
|
+
executableSignature: |
|
|
969
|
+
/* Kinetic Typography Signature: Massive clamp font headline + marquee scroll */
|
|
970
|
+
.kinetic-title { font-size: clamp(3.5rem, 11vw, 8.5rem); font-weight: 900; line-height: 0.9; text-transform: uppercase; letter-spacing: -0.04em; }
|
|
971
|
+
.kinetic-outline { -webkit-text-stroke: 1.5px var(--color-primary); color: transparent; }
|
|
972
|
+
```
|
|
973
|
+
|
|
974
|
+
* **Color Palette**: Ultra-high contrast stark black & white (`#000000` / `#FFFFFF`) with 1 sharp signal accent (Vermilion `#EF4444` or Electric Blue `#2563EB`).
|
|
975
|
+
* **Typography**: Distinctive display serif or sans (`El Messiri`, `Outfit`, `Fraunces`, `Oswald`).
|
|
976
|
+
* **Anti-Pattern Warning**: Text moving too fast for users to read, or violating `prefers-reduced-motion` accessibility standards.
|
|
977
|
+
|
|
978
|
+
---
|
|
979
|
+
|
|
980
|
+
### 19. Organic / Amorphous UI
|
|
981
|
+
* **Visual Philosophy**: Natural, fluid, and asymmetrical blob-like shapes that break away from rigid rectangular grids.
|
|
982
|
+
|
|
983
|
+
```yaml
|
|
984
|
+
confidence:
|
|
985
|
+
production: ★★★☆☆
|
|
986
|
+
marketing: ★★★★☆
|
|
987
|
+
dashboard: ★★☆☆☆
|
|
988
|
+
landing: ★★★★☆
|
|
989
|
+
mobile: ★★★★☆
|
|
990
|
+
accessibility: ★★★★☆
|
|
991
|
+
|
|
992
|
+
compatibility:
|
|
993
|
+
compatible: [Minimalist, Corporate Memphis, Editorial]
|
|
994
|
+
avoid: [Swiss, Industrial, Cyberpunk, Bento Box]
|
|
995
|
+
|
|
996
|
+
brandPersonality: [Natural, Fluid, Calming, Warm, Harmonious]
|
|
997
|
+
|
|
998
|
+
visualDNA:
|
|
999
|
+
grid: ★★☆☆☆
|
|
1000
|
+
typography: ★★★★☆
|
|
1001
|
+
geometry: ★★☆☆☆
|
|
1002
|
+
illustration: ★★★★☆
|
|
1003
|
+
motion: ★★★☆☆
|
|
1004
|
+
texture: ★★☆☆☆
|
|
1005
|
+
photography: ★★★★☆
|
|
1006
|
+
depth: ★★☆☆☆
|
|
1007
|
+
|
|
1008
|
+
componentBehaviour:
|
|
1009
|
+
buttons: fluid organic pill button | warm natural fill
|
|
1010
|
+
cards: asymmetrical amorphous card (`border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%`)
|
|
1011
|
+
forms: soft rounded input fields with warm earthy focus indicator
|
|
1012
|
+
navigation: fluid top bar with SVG wave bottom divider
|
|
1013
|
+
search: organic search pill with soft leaf icon trigger
|
|
1014
|
+
|
|
1015
|
+
motionLanguage:
|
|
1016
|
+
duration: 6000ms (blob morph) / 250ms (click)
|
|
1017
|
+
curve: ease-in-out
|
|
1018
|
+
energy: low (gentle fluid morphing)
|
|
1019
|
+
scroll: smooth organic wave parallax
|
|
1020
|
+
hover: fluid shape morph shift
|
|
1021
|
+
|
|
1022
|
+
executableSignature: |
|
|
1023
|
+
/* Organic UI Signature: Asymmetrical fluid morphing border */
|
|
1024
|
+
.organic-blob { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; background: #F59E0B; transition: border-radius 6s ease-in-out infinite alternate; }
|
|
1025
|
+
.organic-card { background: #FDFBF7; border-radius: 32px 16px 40px 20px; padding: 2rem; border: 1px solid #E5E7EB; }
|
|
1026
|
+
```
|
|
1027
|
+
|
|
1028
|
+
* **Color Palette**: Warm earthy tones (Terracotta `#C2410C`, Sage `#047857`, Sand `#F59E0B`, Cream Paper `#FDFBF7`).
|
|
1029
|
+
* **Typography**: Warm serif or organic sans (`Markazi Text`, `Almarai`, `Tajawal`).
|
|
1030
|
+
* **Anti-Pattern Warning**: Using amorphous shapes for data tables or forms where rectangular alignment is required for usability.
|
|
1031
|
+
|
|
1032
|
+
---
|
|
1033
|
+
|
|
1034
|
+
### 20. Frutiger Aero & Y2K Revival
|
|
1035
|
+
* **Visual Philosophy**: Early 2000s optimistic tech aesthetic. Glossy glass buttons, vibrant sky-blue & lime-green gradients, lens flares, and skeuomorphic water droplets.
|
|
1036
|
+
|
|
1037
|
+
```yaml
|
|
1038
|
+
confidence:
|
|
1039
|
+
production: ★★☆☆☆
|
|
1040
|
+
marketing: ★★★★☆
|
|
1041
|
+
dashboard: ★★☆☆☆
|
|
1042
|
+
landing: ★★★★☆
|
|
1043
|
+
mobile: ★★★☆☆
|
|
1044
|
+
accessibility: ★★★☆☆
|
|
1045
|
+
|
|
1046
|
+
compatibility:
|
|
1047
|
+
compatible: [Glassmorphism, Skeuomorphism, Y2K]
|
|
1048
|
+
avoid: [Swiss, Brutalism, Neo-Brutalism, Industrial]
|
|
1049
|
+
|
|
1050
|
+
brandPersonality: [Optimistic, Luminous, Nostalgic, Vibrant, Glossy]
|
|
1051
|
+
|
|
1052
|
+
visualDNA:
|
|
1053
|
+
grid: ★★★☆☆
|
|
1054
|
+
typography: ★★★☆☆
|
|
1055
|
+
geometry: ★★★★☆
|
|
1056
|
+
illustration: ★★★☆☆
|
|
1057
|
+
motion: ★★★☆☆
|
|
1058
|
+
texture: ★★★★☆
|
|
1059
|
+
photography: ★★★☆☆
|
|
1060
|
+
depth: ★★★★☆
|
|
1061
|
+
|
|
1062
|
+
componentBehaviour:
|
|
1063
|
+
buttons: glossy glass button pill | linear top highlight gradient | bright rounded edges
|
|
1064
|
+
cards: glossy Aero card | vibrant sky blue gradient backdrop | rounded-2xl
|
|
1065
|
+
forms: glossy input wells with top highlight sheen
|
|
1066
|
+
navigation: glossy glass header bar with bright emblem lens flare
|
|
1067
|
+
search: glossy search pill container with aero search trigger
|
|
1068
|
+
|
|
1069
|
+
motionLanguage:
|
|
1070
|
+
duration: 200ms
|
|
1071
|
+
curve: ease-out
|
|
1072
|
+
energy: medium
|
|
1073
|
+
scroll: lens flare shimmer on scroll
|
|
1074
|
+
hover: glossy sheen shift & glow increase
|
|
1075
|
+
|
|
1076
|
+
executableSignature: |
|
|
1077
|
+
/* Frutiger Aero Signature: Linear glossy glass highlight + sky blue gradient */
|
|
1078
|
+
.aero-btn { background: linear-gradient(180deg, #38BDF8 0%, #0284C7 50%, #0369A1 100%); border: 1px solid #7DD3FC; border-radius: 9999px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 4px 12px rgba(2,132,199,0.3); color: #fff; font-weight: 700; padding: 0.75rem 2rem; position: relative; overflow: hidden; }
|
|
1079
|
+
.aero-btn::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50%; background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%); border-radius: 9999px 9999px 0 0; }
|
|
1080
|
+
```
|
|
1081
|
+
|
|
1082
|
+
* **Color Palette**: Aero Sky Blue `#0284C7`, Lime Green `#65A30D`, Sun Yellow `#FACC15`, Glossy White `#FFFFFF`, Aurora Blue `#0369A1`.
|
|
1083
|
+
* **Typography**: Clean early-digital sans (`Segoe UI`-style, `Outfit`, `Tajawal`).
|
|
1084
|
+
* **Anti-Pattern Warning**: Over-saturating glossy overlays to the point where text contrast fails WCAG 2.1 AA legibility.
|