@design-ai/cli 4.55.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.
Files changed (529) hide show
  1. package/.claude-plugin/plugin.json +164 -0
  2. package/AGENTS.ko.md +126 -0
  3. package/AGENTS.md +182 -0
  4. package/CHANGELOG.md +6883 -0
  5. package/CLAUDE.md +39 -0
  6. package/LICENSE +21 -0
  7. package/README.ko.md +245 -0
  8. package/README.md +277 -0
  9. package/agents/README.md +14 -0
  10. package/agents/a11y-reviewer.md +121 -0
  11. package/agents/component-architect.md +57 -0
  12. package/agents/design-critic.md +46 -0
  13. package/agents/token-extractor.md +63 -0
  14. package/cli/bin/design-ai-mcp.mjs +6 -0
  15. package/cli/bin/design-ai.mjs +40 -0
  16. package/cli/commands/audit.mjs +111 -0
  17. package/cli/commands/check.mjs +226 -0
  18. package/cli/commands/doctor.mjs +141 -0
  19. package/cli/commands/examples.mjs +58 -0
  20. package/cli/commands/help.mjs +271 -0
  21. package/cli/commands/install.mjs +161 -0
  22. package/cli/commands/learn.mjs +1871 -0
  23. package/cli/commands/list.mjs +143 -0
  24. package/cli/commands/mcp.mjs +27 -0
  25. package/cli/commands/pack.mjs +211 -0
  26. package/cli/commands/prompt.mjs +199 -0
  27. package/cli/commands/route.mjs +247 -0
  28. package/cli/commands/search.mjs +60 -0
  29. package/cli/commands/show.mjs +52 -0
  30. package/cli/commands/site.mjs +558 -0
  31. package/cli/commands/status.mjs +161 -0
  32. package/cli/commands/uninstall.mjs +119 -0
  33. package/cli/commands/update.mjs +184 -0
  34. package/cli/commands/version.mjs +94 -0
  35. package/cli/commands/workspace.mjs +176 -0
  36. package/cli/lib/brief.mjs +52 -0
  37. package/cli/lib/check.mjs +642 -0
  38. package/cli/lib/dispatch.mjs +109 -0
  39. package/cli/lib/doctor.mjs +505 -0
  40. package/cli/lib/examples.mjs +258 -0
  41. package/cli/lib/exec.mjs +63 -0
  42. package/cli/lib/help-flags.mjs +5 -0
  43. package/cli/lib/learn.mjs +3694 -0
  44. package/cli/lib/log.mjs +47 -0
  45. package/cli/lib/mcp-server.mjs +426 -0
  46. package/cli/lib/output.mjs +101 -0
  47. package/cli/lib/pack.mjs +599 -0
  48. package/cli/lib/paths.mjs +63 -0
  49. package/cli/lib/prompt.mjs +603 -0
  50. package/cli/lib/route.mjs +740 -0
  51. package/cli/lib/search.mjs +158 -0
  52. package/cli/lib/show.mjs +161 -0
  53. package/cli/lib/signals.mjs +2337 -0
  54. package/cli/lib/site.mjs +6617 -0
  55. package/cli/lib/skill-proposals.mjs +2046 -0
  56. package/cli/lib/suggest.mjs +66 -0
  57. package/cli/lib/workspace.mjs +1056 -0
  58. package/commands/README.md +25 -0
  59. package/commands/component-spec.md +34 -0
  60. package/commands/conversational.md +44 -0
  61. package/commands/design-from-brief.md +141 -0
  62. package/commands/design-review.md +62 -0
  63. package/commands/document-from-brief.md +47 -0
  64. package/commands/extract-tokens.md +38 -0
  65. package/commands/game-ui.md +40 -0
  66. package/commands/illustration.md +37 -0
  67. package/commands/iterate.md +167 -0
  68. package/commands/motion-design.md +54 -0
  69. package/commands/palette-from-brand.md +50 -0
  70. package/commands/print.md +49 -0
  71. package/commands/slide-deck.md +46 -0
  72. package/commands/spatial.md +47 -0
  73. package/commands/stability-review.md +74 -0
  74. package/commands/video.md +42 -0
  75. package/commands/website-improvement.md +77 -0
  76. package/docs/AGENT-DEVELOPMENT.md +658 -0
  77. package/docs/AI-LEARNING.md +429 -0
  78. package/docs/AIDER-INTEGRATION.md +224 -0
  79. package/docs/ARCHITECTURE.ko.md +183 -0
  80. package/docs/ARCHITECTURE.md +105 -0
  81. package/docs/CODEX-INTEGRATION.md +311 -0
  82. package/docs/COMPANY-WEBSITE-DOGFOOD.ko.md +144 -0
  83. package/docs/COMPANY-WEBSITE-DOGFOOD.md +150 -0
  84. package/docs/COMPANY-WEBSITE-INTAKE-TEMPLATE.ko.md +153 -0
  85. package/docs/COMPANY-WEBSITE-INTAKE-TEMPLATE.md +154 -0
  86. package/docs/CONTRIBUTING.ko.md +203 -0
  87. package/docs/CONTRIBUTING.md +242 -0
  88. package/docs/CURSOR-INTEGRATION.md +220 -0
  89. package/docs/DISTRIBUTION.ko.md +248 -0
  90. package/docs/DISTRIBUTION.md +253 -0
  91. package/docs/DOGFOOD-FINDINGS.md +180 -0
  92. package/docs/DOGFOOD-V4-FINDINGS.md +139 -0
  93. package/docs/DOGFOOD-V4-MKDOCS-FINDINGS.md +233 -0
  94. package/docs/DOGFOOD-V4-NPM-FINDINGS.md +157 -0
  95. package/docs/DOGFOOD-V4-VSCODE-FINDINGS.md +135 -0
  96. package/docs/FIGMA-INTEGRATION.md +222 -0
  97. package/docs/MCP-INTEGRATION.md +243 -0
  98. package/docs/MIGRATION-v4.md +121 -0
  99. package/docs/PLUGIN-PACKAGING.md +240 -0
  100. package/docs/PRODUCT-READINESS.md +66 -0
  101. package/docs/QUICKSTART.ko.md +178 -0
  102. package/docs/QUICKSTART.md +179 -0
  103. package/docs/RELEASE-CHECKLIST.md +292 -0
  104. package/docs/ROADMAP.md +19495 -0
  105. package/docs/SESSION-LOG.md +940 -0
  106. package/docs/TOKEN-SYNC.md +237 -0
  107. package/docs/USING.ko.md +206 -0
  108. package/docs/USING.md +218 -0
  109. package/docs/WEBSITE-IMPROVEMENT.ko.md +75 -0
  110. package/docs/WEBSITE-IMPROVEMENT.md +89 -0
  111. package/docs/announcements/README.md +56 -0
  112. package/docs/announcements/dev-to-korea.md +206 -0
  113. package/docs/announcements/hashnode-post.ko.md +232 -0
  114. package/docs/announcements/okky-post.ko.md +158 -0
  115. package/docs/announcements/press-kit.md +101 -0
  116. package/docs/announcements/reddit-r-korea.md +196 -0
  117. package/docs/announcements/show-hn.md +114 -0
  118. package/docs/announcements/twitter-thread.md +255 -0
  119. package/docs/external-status.md +34 -0
  120. package/docs/integrations/aider-walkthrough.ko.md +275 -0
  121. package/docs/integrations/aider-walkthrough.md +274 -0
  122. package/docs/integrations/codex-walkthrough.ko.md +297 -0
  123. package/docs/integrations/codex-walkthrough.md +297 -0
  124. package/docs/integrations/cursor-walkthrough.ko.md +281 -0
  125. package/docs/integrations/cursor-walkthrough.md +284 -0
  126. package/docs/integrations/design-ai-mcp-server.md +169 -0
  127. package/docs/integrations/figma-mcp.md +149 -0
  128. package/docs/integrations/github-mcp.md +178 -0
  129. package/docs/integrations/linear-mcp.md +215 -0
  130. package/docs/integrations/notion-mcp.md +174 -0
  131. package/docs/integrations/sdk-walkthrough.ko.md +375 -0
  132. package/docs/integrations/sdk-walkthrough.md +375 -0
  133. package/docs/integrations/slack-mcp.md +208 -0
  134. package/docs/integrations/vscode-walkthrough.ko.md +202 -0
  135. package/docs/integrations/vscode-walkthrough.md +205 -0
  136. package/docs/requirements.txt +16 -0
  137. package/docs/site-overrides/extra.css +83 -0
  138. package/docs/site-overrides/favicon.svg +4 -0
  139. package/docs/site-overrides/logo.svg +10 -0
  140. package/docs/site-overrides/main.html +18 -0
  141. package/docs/website-console/app.js +2540 -0
  142. package/docs/website-console/index.html +24 -0
  143. package/docs/website-console/styles.css +975 -0
  144. package/examples/README.md +252 -0
  145. package/examples/cases/dogfood-v4-korean-hr-onboarding.md +356 -0
  146. package/examples/component-accordion-actions.md +153 -0
  147. package/examples/component-accordion-details.md +147 -0
  148. package/examples/component-accordion-summary.md +180 -0
  149. package/examples/component-accordion.md +229 -0
  150. package/examples/component-account-card.md +284 -0
  151. package/examples/component-address-input.md +260 -0
  152. package/examples/component-affix.md +190 -0
  153. package/examples/component-alert-dialog.md +210 -0
  154. package/examples/component-alert-title.md +77 -0
  155. package/examples/component-alert.md +192 -0
  156. package/examples/component-amount-input.md +278 -0
  157. package/examples/component-anchor.md +198 -0
  158. package/examples/component-app-bar.md +249 -0
  159. package/examples/component-aspect-ratio.md +156 -0
  160. package/examples/component-auto-complete.md +199 -0
  161. package/examples/component-avatar-group.md +170 -0
  162. package/examples/component-avatar.md +191 -0
  163. package/examples/component-back-top.md +123 -0
  164. package/examples/component-backdrop.md +148 -0
  165. package/examples/component-badge.md +181 -0
  166. package/examples/component-banner.md +237 -0
  167. package/examples/component-biometric-gate.md +281 -0
  168. package/examples/component-blockquote.md +153 -0
  169. package/examples/component-border-beam.md +207 -0
  170. package/examples/component-bottom-navigation.md +226 -0
  171. package/examples/component-box.md +112 -0
  172. package/examples/component-breadcrumb.md +222 -0
  173. package/examples/component-button-base.md +190 -0
  174. package/examples/component-button-group.md +117 -0
  175. package/examples/component-button.md +213 -0
  176. package/examples/component-calendar.md +280 -0
  177. package/examples/component-callout.md +131 -0
  178. package/examples/component-card-actions.md +101 -0
  179. package/examples/component-card-content.md +90 -0
  180. package/examples/component-card-header.md +122 -0
  181. package/examples/component-card-media.md +79 -0
  182. package/examples/component-card.md +233 -0
  183. package/examples/component-carousel.md +266 -0
  184. package/examples/component-cascader.md +135 -0
  185. package/examples/component-category-picker.md +271 -0
  186. package/examples/component-chart.md +237 -0
  187. package/examples/component-chat-interface.md +399 -0
  188. package/examples/component-checkbox.md +149 -0
  189. package/examples/component-click-away-listener.md +87 -0
  190. package/examples/component-code.md +213 -0
  191. package/examples/component-collapsible.md +219 -0
  192. package/examples/component-color-picker.md +110 -0
  193. package/examples/component-combobox.md +267 -0
  194. package/examples/component-command.md +299 -0
  195. package/examples/component-config-provider.md +190 -0
  196. package/examples/component-context-menu.md +179 -0
  197. package/examples/component-css-baseline.md +148 -0
  198. package/examples/component-date-picker.md +249 -0
  199. package/examples/component-descriptions.md +242 -0
  200. package/examples/component-dialog-actions.md +111 -0
  201. package/examples/component-dialog-content-text.md +76 -0
  202. package/examples/component-dialog-content.md +105 -0
  203. package/examples/component-dialog-title.md +104 -0
  204. package/examples/component-dialog.md +176 -0
  205. package/examples/component-divider.md +182 -0
  206. package/examples/component-doc-page.md +217 -0
  207. package/examples/component-drawer.md +257 -0
  208. package/examples/component-dropdown.md +220 -0
  209. package/examples/component-email-layout.md +253 -0
  210. package/examples/component-empty-state.md +269 -0
  211. package/examples/component-empty.md +172 -0
  212. package/examples/component-fade.md +87 -0
  213. package/examples/component-feature-grid.md +201 -0
  214. package/examples/component-field.md +266 -0
  215. package/examples/component-filled-input.md +114 -0
  216. package/examples/component-flex.md +117 -0
  217. package/examples/component-float-button.md +214 -0
  218. package/examples/component-form-control-label.md +134 -0
  219. package/examples/component-form-control.md +113 -0
  220. package/examples/component-form-controls.md +251 -0
  221. package/examples/component-form-group.md +86 -0
  222. package/examples/component-form-helper-text.md +95 -0
  223. package/examples/component-form-label.md +98 -0
  224. package/examples/component-form.md +291 -0
  225. package/examples/component-game-hud.md +362 -0
  226. package/examples/component-game-menu.md +327 -0
  227. package/examples/component-grid.md +140 -0
  228. package/examples/component-grow.md +79 -0
  229. package/examples/component-hero-block.md +252 -0
  230. package/examples/component-hover-card.md +211 -0
  231. package/examples/component-icon-button.md +142 -0
  232. package/examples/component-icon.md +102 -0
  233. package/examples/component-illustration.md +280 -0
  234. package/examples/component-image-list.md +107 -0
  235. package/examples/component-image.md +282 -0
  236. package/examples/component-input-adornment.md +101 -0
  237. package/examples/component-input-base.md +134 -0
  238. package/examples/component-input-number.md +141 -0
  239. package/examples/component-input-otp.md +271 -0
  240. package/examples/component-input.md +213 -0
  241. package/examples/component-item.md +243 -0
  242. package/examples/component-kbd.md +197 -0
  243. package/examples/component-krw-amount.md +219 -0
  244. package/examples/component-label.md +118 -0
  245. package/examples/component-layout.md +217 -0
  246. package/examples/component-link.md +223 -0
  247. package/examples/component-list-item-avatar.md +72 -0
  248. package/examples/component-list-item-button.md +139 -0
  249. package/examples/component-list-item-icon.md +82 -0
  250. package/examples/component-list-item-text.md +98 -0
  251. package/examples/component-list-item.md +116 -0
  252. package/examples/component-list-subheader.md +70 -0
  253. package/examples/component-list.md +198 -0
  254. package/examples/component-loading-button.md +125 -0
  255. package/examples/component-loading-sequence.md +254 -0
  256. package/examples/component-lottie-player.md +279 -0
  257. package/examples/component-masonry.md +191 -0
  258. package/examples/component-mentions.md +189 -0
  259. package/examples/component-menu-item.md +102 -0
  260. package/examples/component-menu-list.md +98 -0
  261. package/examples/component-menu.md +139 -0
  262. package/examples/component-menubar.md +259 -0
  263. package/examples/component-message.md +162 -0
  264. package/examples/component-mobile-stepper.md +155 -0
  265. package/examples/component-modal.md +220 -0
  266. package/examples/component-navigation-menu.md +295 -0
  267. package/examples/component-notification.md +166 -0
  268. package/examples/component-otp-countdown.md +245 -0
  269. package/examples/component-outlined-input.md +145 -0
  270. package/examples/component-page-transition.md +281 -0
  271. package/examples/component-pagination.md +226 -0
  272. package/examples/component-paper.md +199 -0
  273. package/examples/component-pass-auth.md +265 -0
  274. package/examples/component-payment-brand-button.md +253 -0
  275. package/examples/component-payment-method-selector.md +272 -0
  276. package/examples/component-payment-receipt.md +277 -0
  277. package/examples/component-popconfirm.md +144 -0
  278. package/examples/component-popover.md +239 -0
  279. package/examples/component-popper.md +129 -0
  280. package/examples/component-pricing-cards.md +247 -0
  281. package/examples/component-progress.md +195 -0
  282. package/examples/component-qr-code.md +201 -0
  283. package/examples/component-radio.md +167 -0
  284. package/examples/component-rate.md +202 -0
  285. package/examples/component-resizable.md +163 -0
  286. package/examples/component-result.md +270 -0
  287. package/examples/component-scroll-area.md +199 -0
  288. package/examples/component-scroll-reveal.md +320 -0
  289. package/examples/component-segmented.md +178 -0
  290. package/examples/component-select.md +258 -0
  291. package/examples/component-separator.md +177 -0
  292. package/examples/component-sheet.md +277 -0
  293. package/examples/component-sidebar.md +257 -0
  294. package/examples/component-skeleton.md +178 -0
  295. package/examples/component-slide.md +89 -0
  296. package/examples/component-slider.md +208 -0
  297. package/examples/component-snackbar-content.md +92 -0
  298. package/examples/component-snackbar.md +121 -0
  299. package/examples/component-sonner.md +165 -0
  300. package/examples/component-space.md +125 -0
  301. package/examples/component-spatial-locomotion.md +373 -0
  302. package/examples/component-spatial-panel.md +330 -0
  303. package/examples/component-speed-dial-action.md +78 -0
  304. package/examples/component-speed-dial.md +177 -0
  305. package/examples/component-spin.md +173 -0
  306. package/examples/component-spinner.md +204 -0
  307. package/examples/component-splitter.md +210 -0
  308. package/examples/component-stack.md +130 -0
  309. package/examples/component-statistic.md +282 -0
  310. package/examples/component-step-button.md +157 -0
  311. package/examples/component-step-connector.md +157 -0
  312. package/examples/component-step-content.md +121 -0
  313. package/examples/component-step-icon.md +115 -0
  314. package/examples/component-step-label.md +101 -0
  315. package/examples/component-step.md +84 -0
  316. package/examples/component-steps.md +264 -0
  317. package/examples/component-stock-chart.md +251 -0
  318. package/examples/component-swipeable-drawer.md +149 -0
  319. package/examples/component-switch.md +99 -0
  320. package/examples/component-tab-scroll-button.md +180 -0
  321. package/examples/component-tab.md +120 -0
  322. package/examples/component-table-body.md +82 -0
  323. package/examples/component-table-cell.md +118 -0
  324. package/examples/component-table-container.md +75 -0
  325. package/examples/component-table-footer.md +72 -0
  326. package/examples/component-table-head.md +78 -0
  327. package/examples/component-table-pagination.md +137 -0
  328. package/examples/component-table-row.md +113 -0
  329. package/examples/component-table-sort-label.md +109 -0
  330. package/examples/component-table.md +202 -0
  331. package/examples/component-tabs.md +184 -0
  332. package/examples/component-tag-badge.md +309 -0
  333. package/examples/component-tag.md +102 -0
  334. package/examples/component-testimonial-carousel.md +218 -0
  335. package/examples/component-textarea-autosize.md +114 -0
  336. package/examples/component-textarea.md +173 -0
  337. package/examples/component-time-picker.md +205 -0
  338. package/examples/component-timeline.md +170 -0
  339. package/examples/component-toast.md +224 -0
  340. package/examples/component-toggle-button.md +129 -0
  341. package/examples/component-toggle.md +220 -0
  342. package/examples/component-toolbar.md +104 -0
  343. package/examples/component-tooltip.md +178 -0
  344. package/examples/component-tour.md +176 -0
  345. package/examples/component-transaction-list-item.md +243 -0
  346. package/examples/component-transfer.md +156 -0
  347. package/examples/component-tree-select.md +202 -0
  348. package/examples/component-tree.md +297 -0
  349. package/examples/component-typography.md +215 -0
  350. package/examples/component-upload.md +295 -0
  351. package/examples/component-video-hero.md +409 -0
  352. package/examples/component-video-player.md +340 -0
  353. package/examples/component-voice-input.md +408 -0
  354. package/examples/component-watermark.md +217 -0
  355. package/examples/component-zoom.md +92 -0
  356. package/examples/doc-explanation-example.md +196 -0
  357. package/examples/doc-how-to-example.md +205 -0
  358. package/examples/doc-tutorial-example.md +162 -0
  359. package/examples/dogfood-korean-fintech-system.md +433 -0
  360. package/examples/email-transactional-example.md +259 -0
  361. package/examples/palette-saas-violet.md +235 -0
  362. package/examples/print-business-card-spec.md +205 -0
  363. package/examples/print-packaging-spec.md +285 -0
  364. package/examples/report-example.md +228 -0
  365. package/examples/slide-deck-example.md +237 -0
  366. package/examples/website-improvement-report.md +128 -0
  367. package/examples/website-improvement-workspace.json +126 -0
  368. package/install.sh +189 -0
  369. package/knowledge/COVERAGE.md +740 -0
  370. package/knowledge/PRINCIPLES.md +108 -0
  371. package/knowledge/a11y/contrast.md +70 -0
  372. package/knowledge/a11y/keyboard-and-focus.md +108 -0
  373. package/knowledge/colors/color-theory.md +90 -0
  374. package/knowledge/colors/mui-palette-structure.md +105 -0
  375. package/knowledge/colors/palettes-by-product-type.md +876 -0
  376. package/knowledge/components/INDEX.md +231 -0
  377. package/knowledge/components/index.json +1470 -0
  378. package/knowledge/components/shadcn-registry.md +159 -0
  379. package/knowledge/conversational/ai-chat-interfaces.md +323 -0
  380. package/knowledge/conversational/chatbot-design.md +312 -0
  381. package/knowledge/conversational/conversational-ui-fundamentals.md +299 -0
  382. package/knowledge/conversational/korean-voice-conventions.md +281 -0
  383. package/knowledge/conversational/voice-ui-patterns.md +297 -0
  384. package/knowledge/design-tokens/ant-design.md +124 -0
  385. package/knowledge/design-tokens/material-3.md +235 -0
  386. package/knowledge/design-tokens/polaris-and-carbon.md +231 -0
  387. package/knowledge/design-tokens/tailwind-v4.md +284 -0
  388. package/knowledge/game-ui/game-accessibility.md +317 -0
  389. package/knowledge/game-ui/game-ui-fundamentals.md +281 -0
  390. package/knowledge/game-ui/hud-design.md +324 -0
  391. package/knowledge/game-ui/korean-gaming-conventions.md +312 -0
  392. package/knowledge/game-ui/menu-systems.md +388 -0
  393. package/knowledge/i18n/korean-app-store-visual.md +223 -0
  394. package/knowledge/i18n/korean-document-style.md +301 -0
  395. package/knowledge/i18n/korean-payments.md +211 -0
  396. package/knowledge/i18n/korean-product-conventions.md +96 -0
  397. package/knowledge/i18n/korean-publishing.md +139 -0
  398. package/knowledge/i18n/korean-typography.md +123 -0
  399. package/knowledge/icons/curated-sets.md +225 -0
  400. package/knowledge/illustration/hero-illustrations.md +234 -0
  401. package/knowledge/illustration/illustration-systems.md +221 -0
  402. package/knowledge/illustration/mascot-design.md +208 -0
  403. package/knowledge/illustration/spot-illustrations.md +246 -0
  404. package/knowledge/illustration/svg-optimization.md +308 -0
  405. package/knowledge/layout/spacing-and-grid.md +119 -0
  406. package/knowledge/motion/app-loading-sequences.md +277 -0
  407. package/knowledge/motion/choreography-depth.md +297 -0
  408. package/knowledge/motion/marketing-motion.md +223 -0
  409. package/knowledge/motion/micro-interactions.md +266 -0
  410. package/knowledge/motion/motion-tools.md +281 -0
  411. package/knowledge/motion/principles.md +126 -0
  412. package/knowledge/patterns/auth-flow-design.md +316 -0
  413. package/knowledge/patterns/b2b-onboarding-flows.md +182 -0
  414. package/knowledge/patterns/brand-identity.md +238 -0
  415. package/knowledge/patterns/brand-references.md +97 -0
  416. package/knowledge/patterns/chart-color-encoding.md +269 -0
  417. package/knowledge/patterns/chart-types.md +344 -0
  418. package/knowledge/patterns/dashboard-composition.md +299 -0
  419. package/knowledge/patterns/design-system-qa.md +356 -0
  420. package/knowledge/patterns/document-typography.md +248 -0
  421. package/knowledge/patterns/email-design.md +338 -0
  422. package/knowledge/patterns/empty-states.md +263 -0
  423. package/knowledge/patterns/error-states.md +318 -0
  424. package/knowledge/patterns/form-design.md +237 -0
  425. package/knowledge/patterns/information-architecture.md +341 -0
  426. package/knowledge/patterns/landing-hero-design.md +283 -0
  427. package/knowledge/patterns/landing-page-patterns.md +681 -0
  428. package/knowledge/patterns/list-and-feed.md +371 -0
  429. package/knowledge/patterns/mobile-navigation.md +278 -0
  430. package/knowledge/patterns/money-and-amount.md +301 -0
  431. package/knowledge/patterns/onboarding.md +300 -0
  432. package/knowledge/patterns/pricing-page-design.md +261 -0
  433. package/knowledge/patterns/realtime-data.md +280 -0
  434. package/knowledge/patterns/report-design.md +330 -0
  435. package/knowledge/patterns/search-ux.md +373 -0
  436. package/knowledge/patterns/settings-page.md +325 -0
  437. package/knowledge/patterns/slide-deck-design.md +316 -0
  438. package/knowledge/patterns/styles-catalog.md +2599 -0
  439. package/knowledge/patterns/technical-writing.md +306 -0
  440. package/knowledge/patterns/ui-reasoning.md +1853 -0
  441. package/knowledge/patterns/ux-guidelines.md +1454 -0
  442. package/knowledge/platforms/react-native.md +395 -0
  443. package/knowledge/print/brochures-and-flyers.md +276 -0
  444. package/knowledge/print/korean-print-conventions.md +284 -0
  445. package/knowledge/print/packaging.md +321 -0
  446. package/knowledge/print/print-fundamentals.md +238 -0
  447. package/knowledge/print/signage-and-posters.md +235 -0
  448. package/knowledge/print/stationery.md +262 -0
  449. package/knowledge/spatial/ar-patterns.md +253 -0
  450. package/knowledge/spatial/comfort-and-accessibility.md +245 -0
  451. package/knowledge/spatial/spatial-design-fundamentals.md +346 -0
  452. package/knowledge/spatial/spatial-ui-elements.md +343 -0
  453. package/knowledge/spatial/vr-patterns.md +302 -0
  454. package/knowledge/typography/font-pairings.md +332 -0
  455. package/knowledge/typography/mui-type-scale.md +57 -0
  456. package/knowledge/typography/type-scale-fundamentals.md +105 -0
  457. package/knowledge/video/in-product-video.md +277 -0
  458. package/knowledge/video/korean-video-conventions.md +247 -0
  459. package/knowledge/video/marketing-video.md +258 -0
  460. package/knowledge/video/social-and-short-form.md +257 -0
  461. package/knowledge/video/video-fundamentals.md +296 -0
  462. package/package.json +106 -0
  463. package/skills/README.md +39 -0
  464. package/skills/color-palette/PLAYBOOK.md +175 -0
  465. package/skills/color-palette/SKILL.md +6 -0
  466. package/skills/color-palette/TEMPLATE.md +103 -0
  467. package/skills/component-spec-writer/PLAYBOOK.md +169 -0
  468. package/skills/component-spec-writer/SKILL.md +6 -0
  469. package/skills/component-spec-writer/TEMPLATE.md +115 -0
  470. package/skills/conversational-ui-designer/PLAYBOOK.md +231 -0
  471. package/skills/conversational-ui-designer/SKILL.md +6 -0
  472. package/skills/design-broadcast/PLAYBOOK.md +146 -0
  473. package/skills/design-broadcast/SKILL.md +6 -0
  474. package/skills/design-critique/PLAYBOOK.md +137 -0
  475. package/skills/design-critique/SKILL.md +6 -0
  476. package/skills/design-pr-review/PLAYBOOK.md +171 -0
  477. package/skills/design-pr-review/SKILL.md +6 -0
  478. package/skills/design-system-builder/PLAYBOOK.md +218 -0
  479. package/skills/design-system-builder/SKILL.md +6 -0
  480. package/skills/design-system-qa/PLAYBOOK.md +163 -0
  481. package/skills/design-system-qa/SKILL.md +6 -0
  482. package/skills/document-author/PLAYBOOK.md +167 -0
  483. package/skills/document-author/SKILL.md +6 -0
  484. package/skills/figma-token-sync/PLAYBOOK.md +149 -0
  485. package/skills/figma-token-sync/SKILL.md +6 -0
  486. package/skills/game-ui-designer/PLAYBOOK.md +209 -0
  487. package/skills/game-ui-designer/SKILL.md +6 -0
  488. package/skills/handoff-spec/PLAYBOOK.md +170 -0
  489. package/skills/handoff-spec/SKILL.md +6 -0
  490. package/skills/illustration-designer/PLAYBOOK.md +166 -0
  491. package/skills/illustration-designer/SKILL.md +6 -0
  492. package/skills/motion-designer/PLAYBOOK.md +223 -0
  493. package/skills/motion-designer/SKILL.md +6 -0
  494. package/skills/print-designer/PLAYBOOK.md +209 -0
  495. package/skills/print-designer/SKILL.md +6 -0
  496. package/skills/slide-deck-author/PLAYBOOK.md +198 -0
  497. package/skills/slide-deck-author/SKILL.md +6 -0
  498. package/skills/spatial-designer/PLAYBOOK.md +238 -0
  499. package/skills/spatial-designer/SKILL.md +6 -0
  500. package/skills/ux-audit/PLAYBOOK.md +142 -0
  501. package/skills/ux-audit/SKILL.md +6 -0
  502. package/skills/video-designer/PLAYBOOK.md +240 -0
  503. package/skills/video-designer/SKILL.md +6 -0
  504. package/skills/website-improvement/PLAYBOOK.md +118 -0
  505. package/skills/website-improvement/SKILL.md +6 -0
  506. package/skills/website-improvement/TEMPLATE.md +103 -0
  507. package/tools/audit/changelog-generate.py +176 -0
  508. package/tools/audit/check-coverage.py +483 -0
  509. package/tools/audit/doctor_assertions.py +256 -0
  510. package/tools/audit/example-qa.py +108 -0
  511. package/tools/audit/frontmatter-check.py +199 -0
  512. package/tools/audit/integration-check.py +95 -0
  513. package/tools/audit/korean-copy-check.py +161 -0
  514. package/tools/audit/link-check.py +146 -0
  515. package/tools/audit/local-ci.py +558 -0
  516. package/tools/audit/package-contents.py +723 -0
  517. package/tools/audit/package-smoke.py +22443 -0
  518. package/tools/audit/raw-hex-check.py +252 -0
  519. package/tools/audit/registry-smoke.py +8188 -0
  520. package/tools/audit/release-metadata.py +9832 -0
  521. package/tools/audit/run-all.py +351 -0
  522. package/tools/audit/smoke_assertions.py +12742 -0
  523. package/tools/audit/stability-review.py +332 -0
  524. package/tools/audit/stale-check.py +156 -0
  525. package/tools/migrations/add-version-frontmatter.py +132 -0
  526. package/tools/migrations/bump-last-updated.py +131 -0
  527. package/tools/migrations/promote-stability.py +172 -0
  528. package/tools/preview/README.md +58 -0
  529. package/tools/preview/render-tokens.py +454 -0
@@ -0,0 +1,2599 @@
1
+ ---
2
+ title: Visual style catalog
3
+ source: refs/ui-ux-pro-max/src/ui-ux-pro-max/data/styles.csv
4
+ upstream: https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
5
+ extracted_at: 2026-05-19
6
+ applies_to: [visual-design, art-direction]
7
+ version: 1.0.0
8
+ last_updated: 2026-05
9
+ stability: stable
10
+ ---
11
+
12
+ # Visual style catalog
13
+
14
+ A catalog of distinct visual languages. Use as **art-direction shorthand** — pick a style by best-for/avoid-for, then implement using its keywords, colors, and CSS hints.
15
+
16
+ ## 1. Minimalism & Swiss Style
17
+
18
+ - **Keywords**: Clean, simple, spacious, functional, white space, high contrast, geometric, sans-serif, grid-based, essential
19
+ - **Primary colors**: Monochromatic, Black #000000, White #FFFFFF
20
+ - **Secondary colors**: Neutral (Beige #F5F1E8, Grey #808080, Taupe #B38B6D), Primary accent
21
+ - **Effects**: Subtle hover (200-250ms), smooth transitions, sharp shadows if any, clear type hierarchy, fast loading
22
+ - **Best for**: Enterprise apps, dashboards, documentation sites, SaaS platforms, professional tools
23
+ - **Avoid for**: Creative portfolios, entertainment, playful brands, artistic experiments
24
+ - **Light mode**: ✓ Full
25
+ - **Dark mode**: ✓ Full
26
+ - **Performance**: ⚡ Excellent
27
+ - **Accessibility**: ✓ WCAG AAA
28
+ - **Era**: 1950s Swiss
29
+ - **Complexity**: Low
30
+
31
+ **AI prompt**: Design a minimalist landing page. Use: white space, geometric layouts, sans-serif fonts, high contrast, grid-based structure, essential elements only. Avoid shadows and gradients. Focus on clarity and functionality.
32
+
33
+ ```css
34
+ /* Minimalism & Swiss Style hints */
35
+ display: grid, gap: 2rem, font-family: sans-serif, color: #000 or #FFF, max-width: 1200px, clean borders, no box-shadow unless necessary
36
+ ```
37
+
38
+ **Checklist**:
39
+ - [ ] Grid-based layout 12-16 columns
40
+ - [ ] Typography hierarchy clear
41
+ - [ ] No unnecessary decorations
42
+ - [ ] WCAG AAA contrast verified
43
+ - [ ] Mobile responsive grid
44
+
45
+ ## 2. Neumorphism
46
+
47
+ - **Keywords**: Soft UI, embossed, debossed, convex, concave, light source, subtle depth, rounded (12-16px), monochromatic
48
+ - **Primary colors**: Light pastels: Soft Blue #C8E0F4, Soft Pink #F5E0E8, Soft Grey #E8E8E8
49
+ - **Secondary colors**: Tints/shades (±30%), gradient subtlety, color harmony
50
+ - **Effects**: Soft box-shadow (multiple: -5px -5px 15px, 5px 5px 15px), smooth press (150ms), inner subtle shadow
51
+ - **Best for**: Health/wellness apps, meditation platforms, fitness trackers, minimal interaction UIs
52
+ - **Avoid for**: Complex apps, critical accessibility, data-heavy dashboards, high-contrast required
53
+ - **Light mode**: ✓ Full
54
+ - **Dark mode**: ◐ Partial
55
+ - **Performance**: ⚡ Good
56
+ - **Accessibility**: ⚠ Low contrast
57
+ - **Era**: 2020s Modern
58
+ - **Complexity**: Medium
59
+
60
+ **AI prompt**: Create a neumorphic UI with soft 3D effects. Use light pastels, rounded corners (12-16px), subtle soft shadows (multiple layers), no hard lines, monochromatic color scheme with light/dark variations. Embossed/debossed effect on interactive elements.
61
+
62
+ ```css
63
+ /* Neumorphism hints */
64
+ border-radius: 12-16px, box-shadow: -5px -5px 15px rgba(0,0,0,0.1), 5px 5px 15px rgba(255,255,255,0.8), background: linear-gradient(145deg, color1, color2), transform: scale on press
65
+ ```
66
+
67
+ **Checklist**:
68
+ - [ ] Rounded corners 12-16px consistent
69
+ - [ ] Multiple shadow layers (2-3)
70
+ - [ ] Pastel color verified
71
+ - [ ] Monochromatic palette checked
72
+ - [ ] Press animation smooth 150ms
73
+
74
+ ## 3. Glassmorphism
75
+
76
+ - **Keywords**: Frosted glass, transparent, blurred background, layered, vibrant background, light source, depth, multi-layer
77
+ - **Primary colors**: Translucent white: rgba(255,255,255,0.1-0.3)
78
+ - **Secondary colors**: Vibrant: Electric Blue #0080FF, Neon Purple #8B00FF, Vivid Pink #FF1493, Teal #20B2AA
79
+ - **Effects**: Backdrop blur (10-20px), subtle border (1px solid rgba white 0.2), light reflection, Z-depth
80
+ - **Best for**: Modern SaaS, financial dashboards, high-end corporate, lifestyle apps, modal overlays, navigation
81
+ - **Avoid for**: Low-contrast backgrounds, critical accessibility, performance-limited, dark text on dark
82
+ - **Light mode**: ✓ Full
83
+ - **Dark mode**: ✓ Full
84
+ - **Performance**: ⚠ Good
85
+ - **Accessibility**: ⚠ Ensure 4.5:1
86
+ - **Era**: 2020s Modern
87
+ - **Complexity**: Medium
88
+
89
+ **AI prompt**: Design a glassmorphic interface with frosted glass effect. Use backdrop blur (10-20px), translucent overlays (rgba 10-30% opacity), vibrant background colors, subtle borders, light source reflection, layered depth. Perfect for modern overlays and cards.
90
+
91
+ ```css
92
+ /* Glassmorphism hints */
93
+ backdrop-filter: blur(15px), background: rgba(255, 255, 255, 0.15), border: 1px solid rgba(255,255,255,0.2), -webkit-backdrop-filter: blur(15px), z-index layering for depth
94
+ ```
95
+
96
+ **Checklist**:
97
+ - [ ] Backdrop-filter blur 10-20px
98
+ - [ ] Translucent white 15-30% opacity
99
+ - [ ] Subtle border 1px light
100
+ - [ ] Vibrant background verified
101
+ - [ ] Text contrast 4.5:1 checked
102
+
103
+ ## 4. Brutalism
104
+
105
+ - **Keywords**: Raw, unpolished, stark, high contrast, plain text, default fonts, visible borders, asymmetric, anti-design
106
+ - **Primary colors**: Primary: Red #FF0000, Blue #0000FF, Yellow #FFFF00, Black #000000, White #FFFFFF
107
+ - **Secondary colors**: Limited: Neon Green #00FF00, Hot Pink #FF00FF, minimal secondary
108
+ - **Effects**: No smooth transitions (instant), sharp corners (0px), bold typography (700+), visible grid, large blocks
109
+ - **Best for**: Design portfolios, artistic projects, counter-culture brands, editorial/media sites, tech blogs
110
+ - **Avoid for**: Corporate environments, conservative industries, critical accessibility, customer-facing professional
111
+ - **Light mode**: ✓ Full
112
+ - **Dark mode**: ✓ Full
113
+ - **Performance**: ⚡ Excellent
114
+ - **Accessibility**: ✓ WCAG AAA
115
+ - **Era**: 1950s Brutalist
116
+ - **Complexity**: Low
117
+
118
+ **AI prompt**: Create a brutalist design with raw, unpolished, stark aesthetic. Use pure primary colors (red, blue, yellow), black & white, no smooth transitions (instant), sharp corners, bold large typography, visible grid lines, default system fonts, intentional 'broken' design elements.
119
+
120
+ ```css
121
+ /* Brutalism hints */
122
+ border-radius: 0px, transition: none or 0s, font-family: system-ui or monospace, font-weight: 700+, border: visible 2-4px, colors: #FF0000, #0000FF, #FFFF00, #000000, #FFFFFF
123
+ ```
124
+
125
+ **Checklist**:
126
+ - [ ] No border-radius (0px)
127
+ - [ ] No transitions (instant)
128
+ - [ ] Bold typography (700+)
129
+ - [ ] Pure primary colors used
130
+ - [ ] Visible grid/borders
131
+ - [ ] Asymmetric layout intentional
132
+
133
+ ## 5. 3D & Hyperrealism
134
+
135
+ - **Keywords**: Depth, realistic textures, 3D models, spatial navigation, tactile, skeuomorphic elements, rich detail, immersive
136
+ - **Primary colors**: Deep Navy #001F3F, Forest Green #228B22, Burgundy #800020, Gold #FFD700, Silver #C0C0C0
137
+ - **Secondary colors**: Complex gradients (5-10 stops), realistic lighting, shadow variations (20-40% darker)
138
+ - **Effects**: WebGL/Three.js 3D, realistic shadows (layers), physics lighting, parallax (3-5 layers), smooth 3D (300-400ms)
139
+ - **Best for**: Gaming, product showcase, immersive experiences, high-end e-commerce, architectural viz, VR/AR
140
+ - **Avoid for**: Low-end mobile, performance-limited, critical accessibility, data tables/forms
141
+ - **Light mode**: ◐ Partial
142
+ - **Dark mode**: ◐ Partial
143
+ - **Performance**: ❌ Poor
144
+ - **Accessibility**: ⚠ Not accessible
145
+ - **Era**: 2020s Modern
146
+ - **Complexity**: High
147
+
148
+ **AI prompt**: Build an immersive 3D interface using realistic textures, 3D models (Three.js/Babylon.js), complex shadows, realistic lighting, parallax scrolling (3-5 layers), physics-based motion. Include skeuomorphic elements with tactile detail.
149
+
150
+ ```css
151
+ /* 3D & Hyperrealism hints */
152
+ transform: translate3d, perspective: 1000px, WebGL canvas, Three.js/Babylon.js library, box-shadow: complex multi-layer, background: complex gradients, filter: drop-shadow()
153
+ ```
154
+
155
+ **Checklist**:
156
+ - [ ] WebGL/Three.js integrated
157
+ - [ ] 3D models loaded
158
+ - [ ] Parallax 3-5 layers
159
+ - [ ] Realistic lighting verified
160
+ - [ ] Complex shadows rendered
161
+ - [ ] Physics animation smooth 300-400ms
162
+
163
+ ## 6. Vibrant & Block-based
164
+
165
+ - **Keywords**: Bold, energetic, playful, block layout, geometric shapes, high color contrast, duotone, modern, energetic
166
+ - **Primary colors**: Neon Green #39FF14, Electric Purple #BF00FF, Vivid Pink #FF1493, Bright Cyan #00FFFF, Sunburst #FFAA00
167
+ - **Secondary colors**: Complementary: Orange #FF7F00, Shocking Pink #FF006E, Lime #CCFF00, triadic schemes
168
+ - **Effects**: Large sections (48px+ gaps), animated patterns, bold hover (color shift), scroll-snap, large type (32px+), 200-300ms
169
+ - **Best for**: Startups, creative agencies, gaming, social media, youth-focused, entertainment, consumer
170
+ - **Avoid for**: Financial institutions, healthcare, formal business, government, conservative, elderly
171
+ - **Light mode**: ✓ Full
172
+ - **Dark mode**: ✓ Full
173
+ - **Performance**: ⚡ Good
174
+ - **Accessibility**: ◐ Ensure WCAG
175
+ - **Era**: 2020s Modern
176
+ - **Complexity**: Medium
177
+
178
+ **AI prompt**: Design an energetic, vibrant interface with bold block layouts, geometric shapes, high color contrast, large typography (32px+), animated background patterns, duotone effects. Perfect for startups and youth-focused apps. Use 4-6 contrasting colors from complementary/triadic schemes.
179
+
180
+ ```css
181
+ /* Vibrant & Block-based hints */
182
+ display: flex/grid with large gaps (48px+), font-size: 32px+, background: animated patterns (CSS), color: neon/vibrant colors, animation: continuous pattern movement
183
+ ```
184
+
185
+ **Checklist**:
186
+ - [ ] Block layout with 48px+ gaps
187
+ - [ ] Large typography 32px+
188
+ - [ ] 4-6 vibrant colors max
189
+ - [ ] Animated patterns active
190
+ - [ ] Scroll-snap enabled
191
+ - [ ] High contrast verified (7:1+)
192
+
193
+ ## 7. Dark Mode (OLED)
194
+
195
+ - **Keywords**: Dark theme, low light, high contrast, deep black, midnight blue, eye-friendly, OLED, night mode, power efficient
196
+ - **Primary colors**: Deep Black #000000, Dark Grey #121212, Midnight Blue #0A0E27
197
+ - **Secondary colors**: Vibrant accents: Neon Green #39FF14, Electric Blue #0080FF, Gold #FFD700, Plasma Purple #BF00FF
198
+ - **Effects**: Minimal glow (text-shadow: 0 0 10px), dark-to-light transitions, low white emission, high readability, visible focus
199
+ - **Best for**: Night-mode apps, coding platforms, entertainment, eye-strain prevention, OLED devices, low-light
200
+ - **Avoid for**: Print-first content, high-brightness outdoor, color-accuracy-critical
201
+ - **Light mode**: ✗ No
202
+ - **Dark mode**: ✓ Only
203
+ - **Performance**: ⚡ Excellent
204
+ - **Accessibility**: ✓ WCAG AAA
205
+ - **Era**: 2020s Modern
206
+ - **Complexity**: Low
207
+
208
+ **AI prompt**: Create an OLED-optimized dark interface with deep black (#000000), dark grey (#121212), midnight blue accents. Use minimal glow effects, vibrant neon accents (green, blue, gold, purple), high contrast text. Optimize for eye comfort and OLED power saving.
209
+
210
+ ```css
211
+ /* Dark Mode (OLED) hints */
212
+ background: #000000 or #121212, color: #FFFFFF or #E0E0E0, text-shadow: 0 0 10px neon-color (sparingly), filter: brightness(0.8) if needed, color-scheme: dark
213
+ ```
214
+
215
+ **Checklist**:
216
+ - [ ] Deep black #000000 or #121212
217
+ - [ ] Vibrant neon accents used
218
+ - [ ] Text contrast 7:1+
219
+ - [ ] Minimal glow effects
220
+ - [ ] OLED power optimization
221
+ - [ ] No white (#FFFFFF) background
222
+
223
+ ## 8. Accessible & Ethical
224
+
225
+ - **Keywords**: High contrast, large text (16px+), keyboard navigation, screen reader friendly, WCAG compliant, focus state, semantic
226
+ - **Primary colors**: WCAG AA/AAA (4.5:1 min), simple primary, clear secondary, high luminosity (7:1+)
227
+ - **Secondary colors**: Symbol-based colors (not color-only), supporting patterns, inclusive combinations
228
+ - **Effects**: Clear focus rings (3-4px), ARIA labels, skip links, responsive design, reduced motion, 44x44px touch targets
229
+ - **Best for**: Government, healthcare, education, inclusive products, large audience, legal compliance, public
230
+ - **Avoid for**: None - accessibility universal
231
+ - **Light mode**: ✓ Full
232
+ - **Dark mode**: ✓ Full
233
+ - **Performance**: ⚡ Excellent
234
+ - **Accessibility**: ✓ WCAG AAA
235
+ - **Era**: Universal
236
+ - **Complexity**: Low
237
+
238
+ **AI prompt**: Design with WCAG AAA compliance. Include: high contrast (7:1+), large text (16px+), keyboard navigation, screen reader compatibility, focus states visible (3-4px ring), semantic HTML, ARIA labels, skip links, reduced motion support (prefers-reduced-motion), 44x44px touch targets.
239
+
240
+ ```css
241
+ /* Accessible & Ethical hints */
242
+ color-contrast: 7:1+, font-size: 16px+, outline: 3-4px on :focus-visible, aria-label, role attributes, @media (prefers-reduced-motion), touch-target: 44x44px, cursor: pointer
243
+ ```
244
+
245
+ **Checklist**:
246
+ - [ ] WCAG AAA verified
247
+ - [ ] 7:1+ contrast checked
248
+ - [ ] Keyboard navigation tested
249
+ - [ ] Screen reader tested
250
+ - [ ] Focus visible 3-4px
251
+ - [ ] Semantic HTML used
252
+ - [ ] Touch targets 44x44px
253
+
254
+ ## 9. Claymorphism
255
+
256
+ - **Keywords**: Soft 3D, chunky, playful, toy-like, bubbly, thick borders (3-4px), double shadows, rounded (16-24px)
257
+ - **Primary colors**: Pastel: Soft Peach #FDBCB4, Baby Blue #ADD8E6, Mint #98FF98, Lilac #E6E6FA, light BG
258
+ - **Secondary colors**: Soft gradients (pastel-to-pastel), light/dark variations (20-30%), gradient subtle
259
+ - **Effects**: Inner+outer shadows (subtle, no hard lines), soft press (200ms ease-out), fluffy elements, smooth transitions
260
+ - **Best for**: Educational apps, children's apps, SaaS platforms, creative tools, fun-focused, onboarding, casual games
261
+ - **Avoid for**: Formal corporate, professional services, data-critical, serious/medical, legal apps, finance
262
+ - **Light mode**: ✓ Full
263
+ - **Dark mode**: ◐ Partial
264
+ - **Performance**: ⚡ Good
265
+ - **Accessibility**: ⚠ Ensure 4.5:1
266
+ - **Era**: 2020s Modern
267
+ - **Complexity**: Medium
268
+
269
+ **AI prompt**: Design a playful, toy-like interface with soft 3D, chunky elements, bubbly aesthetic, rounded edges (16-24px), thick borders (3-4px), double shadows (inner + outer), pastel colors, smooth animations. Perfect for children's apps and creative tools.
270
+
271
+ ```css
272
+ /* Claymorphism hints */
273
+ border-radius: 16-24px, border: 3-4px solid, box-shadow: inset -2px -2px 8px, 4px 4px 8px, background: pastel-gradient, animation: soft bounce (cubic-bezier 0.34, 1.56)
274
+ ```
275
+
276
+ **Checklist**:
277
+ - [ ] Border-radius 16-24px
278
+ - [ ] Thick borders 3-4px
279
+ - [ ] Double shadows (inner+outer)
280
+ - [ ] Pastel colors used
281
+ - [ ] Soft bounce animations
282
+ - [ ] Playful interactions
283
+
284
+ ## 10. Aurora UI
285
+
286
+ - **Keywords**: Vibrant gradients, smooth blend, Northern Lights effect, mesh gradient, luminous, atmospheric, abstract
287
+ - **Primary colors**: Complementary: Blue-Orange, Purple-Yellow, Electric Blue #0080FF, Magenta #FF1493, Cyan #00FFFF
288
+ - **Secondary colors**: Smooth transitions (Blue→Purple→Pink→Teal), iridescent effects, blend modes (screen, multiply)
289
+ - **Effects**: Large flowing CSS/SVG gradients, subtle 8-12s animations, depth via color layering, smooth morph
290
+ - **Best for**: Modern SaaS, creative agencies, branding, music platforms, lifestyle, premium products, hero sections
291
+ - **Avoid for**: Data-heavy dashboards, critical accessibility, content-heavy where distraction issues
292
+ - **Light mode**: ✓ Full
293
+ - **Dark mode**: ✓ Full
294
+ - **Performance**: ⚠ Good
295
+ - **Accessibility**: ⚠ Text contrast
296
+ - **Era**: 2020s Modern
297
+ - **Complexity**: Medium
298
+
299
+ **AI prompt**: Create a vibrant gradient interface inspired by Northern Lights with mesh gradients, smooth color blends, flowing animations. Use complementary color pairs (blue-orange, purple-yellow), flowing background gradients, subtle continuous animations (8-12s loops), iridescent effects.
300
+
301
+ ```css
302
+ /* Aurora UI hints */
303
+ background: conic-gradient or radial-gradient with multiple stops, animation: @keyframes gradient (8-12s), background-size: 200% 200%, filter: saturate(1.2), blend-mode: screen or multiply
304
+ ```
305
+
306
+ **Checklist**:
307
+ - [ ] Mesh/flowing gradients applied
308
+ - [ ] 8-12s animation loop
309
+ - [ ] Complementary colors used
310
+ - [ ] Smooth color transitions
311
+ - [ ] Iridescent effect subtle
312
+ - [ ] Text contrast verified
313
+
314
+ ## 11. Retro-Futurism
315
+
316
+ - **Keywords**: Vintage sci-fi, 80s aesthetic, neon glow, geometric patterns, CRT scanlines, pixel art, cyberpunk, synthwave
317
+ - **Primary colors**: Neon Blue #0080FF, Hot Pink #FF006E, Cyan #00FFFF, Deep Black #1A1A2E, Purple #5D34D0
318
+ - **Secondary colors**: Metallic Silver #C0C0C0, Gold #FFD700, duotone, 80s Pink #FF10F0, neon accents
319
+ - **Effects**: CRT scanlines (::before overlay), neon glow (text-shadow+box-shadow), glitch effects (skew/offset keyframes)
320
+ - **Best for**: Gaming, entertainment, music platforms, tech brands, artistic projects, nostalgic, cyberpunk
321
+ - **Avoid for**: Conservative industries, critical accessibility, professional/corporate, elderly, legal/finance
322
+ - **Light mode**: ✓ Full
323
+ - **Dark mode**: ✓ Dark focused
324
+ - **Performance**: ⚠ Moderate
325
+ - **Accessibility**: ⚠ High contrast/strain
326
+ - **Era**: 1980s Retro
327
+ - **Complexity**: Medium
328
+
329
+ **AI prompt**: Build a retro-futuristic (cyberpunk/vaporwave) interface with neon colors (blue, pink, cyan), deep black background, 80s aesthetic, CRT scanlines, glitch effects, neon glow text/borders, monospace fonts, geometric patterns. Use neon text-shadow and animated glitch effects.
330
+
331
+ ```css
332
+ /* Retro-Futurism hints */
333
+ color: neon colors (#0080FF, #FF006E, #00FFFF), text-shadow: 0 0 10px neon, background: #000 or #1A1A2E, font-family: monospace, animation: glitch (skew+offset), filter: hue-rotate
334
+ ```
335
+
336
+ **Checklist**:
337
+ - [ ] Neon colors used
338
+ - [ ] CRT scanlines effect
339
+ - [ ] Glitch animations active
340
+ - [ ] Monospace font
341
+ - [ ] Deep black background
342
+ - [ ] Glow effects applied
343
+ - [ ] 80s patterns present
344
+
345
+ ## 12. Flat Design
346
+
347
+ - **Keywords**: 2D, minimalist, bold colors, no shadows, clean lines, simple shapes, typography-focused, modern, icon-heavy
348
+ - **Primary colors**: Solid bright: Red, Orange, Blue, Green, limited palette (4-6 max)
349
+ - **Secondary colors**: Complementary colors, muted secondaries, high saturation, clean accents
350
+ - **Effects**: No gradients/shadows, simple hover (color/opacity shift), fast loading, clean transitions (150-200ms ease), minimal icons
351
+ - **Best for**: Web apps, mobile apps, cross-platform, startup MVPs, user-friendly, SaaS, dashboards, corporate
352
+ - **Avoid for**: Complex 3D, premium/luxury, artistic portfolios, immersive experiences, high-detail
353
+ - **Light mode**: ✓ Full
354
+ - **Dark mode**: ✓ Full
355
+ - **Performance**: ⚡ Excellent
356
+ - **Accessibility**: ✓ WCAG AAA
357
+ - **Era**: 2010s Modern
358
+ - **Complexity**: Low
359
+
360
+ **AI prompt**: Create a flat, 2D interface with bold colors, no shadows/gradients, clean lines, simple geometric shapes, icon-heavy, typography-focused, minimal ornamentation. Use 4-6 solid, bright colors in a limited palette with high saturation.
361
+
362
+ ```css
363
+ /* Flat Design hints */
364
+ box-shadow: none, background: solid color, border-radius: 0-4px, color: solid (no gradients), fill: solid, stroke: 1-2px, font: bold sans-serif, icons: simplified SVG
365
+ ```
366
+
367
+ **Checklist**:
368
+ - [ ] No shadows/gradients
369
+ - [ ] 4-6 solid colors max
370
+ - [ ] Clean lines consistent
371
+ - [ ] Simple shapes used
372
+ - [ ] Icon-heavy layout
373
+ - [ ] High saturation colors
374
+ - [ ] Fast loading verified
375
+
376
+ ## 13. Skeuomorphism
377
+
378
+ - **Keywords**: Realistic, texture, depth, 3D appearance, real-world metaphors, shadows, gradients, tactile, detailed, material
379
+ - **Primary colors**: Rich realistic: wood, leather, metal colors, detailed gradients (8-12 stops), metallic effects
380
+ - **Secondary colors**: Realistic lighting gradients, shadow variations (30-50% darker), texture overlays, material colors
381
+ - **Effects**: Realistic shadows (layers), depth (perspective), texture details (noise, grain), realistic animations (300-500ms)
382
+ - **Best for**: Legacy apps, gaming, immersive storytelling, premium products, luxury, realistic simulations, education
383
+ - **Avoid for**: Modern enterprise, critical accessibility, low-performance, web (use Flat/Modern)
384
+ - **Light mode**: ◐ Partial
385
+ - **Dark mode**: ◐ Partial
386
+ - **Performance**: ❌ Poor
387
+ - **Accessibility**: ⚠ Textures reduce readability
388
+ - **Era**: 2007-2012 iOS
389
+ - **Complexity**: High
390
+
391
+ **AI prompt**: Design a realistic, textured interface with 3D depth, real-world metaphors (leather, wood, metal), complex gradients (8-12 stops), realistic shadows, grain/texture overlays, tactile press animations. Perfect for premium/luxury products.
392
+
393
+ ```css
394
+ /* Skeuomorphism hints */
395
+ background: complex gradient (8-12 stops), box-shadow: realistic multi-layer, background-image: texture overlay (noise, grain), filter: drop-shadow, transform: scale on press (300-500ms)
396
+ ```
397
+
398
+ **Checklist**:
399
+ - [ ] Realistic textures applied
400
+ - [ ] Complex gradients 8-12 stops
401
+ - [ ] Multi-layer shadows
402
+ - [ ] Texture overlays present
403
+ - [ ] Tactile animations smooth
404
+ - [ ] Depth effect pronounced
405
+
406
+ ## 14. Liquid Glass
407
+
408
+ - **Keywords**: Flowing glass, morphing, smooth transitions, fluid effects, translucent, animated blur, iridescent, chromatic aberration
409
+ - **Primary colors**: Vibrant iridescent (rainbow spectrum), translucent base with opacity shifts, gradient fluidity
410
+ - **Secondary colors**: Chromatic aberration (Red-Cyan), iridescent oil-spill, fluid gradient blends, holographic effects
411
+ - **Effects**: Morphing elements (SVG/CSS), fluid animations (400-600ms curves), dynamic blur (backdrop-filter), color transitions
412
+ - **Best for**: Premium SaaS, high-end e-commerce, creative platforms, branding experiences, luxury portfolios
413
+ - **Avoid for**: Performance-limited, critical accessibility, complex data, budget projects
414
+ - **Light mode**: ✓ Full
415
+ - **Dark mode**: ✓ Full
416
+ - **Performance**: ⚠ Moderate-Poor
417
+ - **Accessibility**: ⚠ Text contrast
418
+ - **Era**: 2020s Modern
419
+ - **Complexity**: High
420
+
421
+ **AI prompt**: Create a premium liquid glass effect with morphing shapes, flowing animations, chromatic aberration, iridescent gradients, smooth 400-600ms transitions. Use SVG morphing for shape changes, dynamic blur, smooth color transitions creating a fluid, premium feel.
422
+
423
+ ```css
424
+ /* Liquid Glass hints */
425
+ animation: morphing SVG paths (400-600ms), backdrop-filter: blur + saturate, filter: hue-rotate + brightness, blend-mode: screen, background: iridescent gradient
426
+ ```
427
+
428
+ **Checklist**:
429
+ - [ ] Morphing animations 400-600ms
430
+ - [ ] Chromatic aberration applied
431
+ - [ ] Dynamic blur active
432
+ - [ ] Iridescent gradients
433
+ - [ ] Smooth color transitions
434
+ - [ ] Premium feel achieved
435
+
436
+ ## 15. Motion-Driven
437
+
438
+ - **Keywords**: Animation-heavy, microinteractions, smooth transitions, scroll effects, parallax, entrance anim, page transitions
439
+ - **Primary colors**: Bold colors emphasize movement, high contrast animated, dynamic gradients, accent action colors
440
+ - **Secondary colors**: Transitional states, success (Green #22C55E), error (Red #EF4444), neutral feedback
441
+ - **Effects**: Scroll anim (Intersection Observer), hover (300-400ms), entrance, parallax (3-5 layers), page transitions
442
+ - **Best for**: Portfolio sites, storytelling platforms, interactive experiences, entertainment apps, creative, SaaS
443
+ - **Avoid for**: Data dashboards, critical accessibility, low-power devices, content-heavy, motion-sensitive
444
+ - **Light mode**: ✓ Full
445
+ - **Dark mode**: ✓ Full
446
+ - **Performance**: ⚠ Good
447
+ - **Accessibility**: ⚠ Prefers-reduced-motion
448
+ - **Era**: 2020s Modern
449
+ - **Complexity**: High
450
+
451
+ **AI prompt**: Build an animation-heavy interface with scroll-triggered animations, microinteractions, parallax scrolling (3-5 layers), smooth transitions (300-400ms), entrance animations, page transitions. Use Intersection Observer for scroll effects, transform for performance, GPU acceleration.
452
+
453
+ ```css
454
+ /* Motion-Driven hints */
455
+ animation: @keyframes scroll-reveal, transform: translateY/X, Intersection Observer API, will-change: transform, scroll-behavior: smooth, animation-duration: 300-400ms
456
+ ```
457
+
458
+ **Checklist**:
459
+ - [ ] Scroll animations active
460
+ - [ ] Parallax 3-5 layers
461
+ - [ ] Entrance animations smooth
462
+ - [ ] Page transitions fluid
463
+ - [ ] GPU accelerated
464
+ - [ ] Prefers-reduced-motion respected
465
+
466
+ ## 16. Micro-interactions
467
+
468
+ - **Keywords**: Small animations, gesture-based, tactile feedback, subtle animations, contextual interactions, responsive
469
+ - **Primary colors**: Subtle color shifts (10-20%), feedback: Green #22C55E, Red #EF4444, Amber #F59E0B
470
+ - **Secondary colors**: Accent feedback, neutral supporting, clear action indicators
471
+ - **Effects**: Small hover (50-100ms), loading spinners, success/error state anim, gesture-triggered (swipe/pinch), haptic
472
+ - **Best for**: Mobile apps, touchscreen UIs, productivity tools, user-friendly, consumer apps, interactive components
473
+ - **Avoid for**: Desktop-only, critical performance, accessibility-first (alternatives needed)
474
+ - **Light mode**: ✓ Full
475
+ - **Dark mode**: ✓ Full
476
+ - **Performance**: ⚡ Excellent
477
+ - **Accessibility**: ✓ Good
478
+ - **Era**: 2020s Modern
479
+ - **Complexity**: Medium
480
+
481
+ **AI prompt**: Design with delightful micro-interactions: small 50-100ms animations, gesture-based responses, tactile feedback, loading spinners, success/error states, subtle hover effects, haptic feedback triggers for mobile. Focus on responsive, contextual interactions.
482
+
483
+ ```css
484
+ /* Micro-interactions hints */
485
+ animation: short 50-100ms, transition: hover states, @media (hover: hover) for desktop, :active for press, haptic-feedback CSS/API, loading animation smooth loop
486
+ ```
487
+
488
+ **Checklist**:
489
+ - [ ] Micro-animations 50-100ms
490
+ - [ ] Gesture-responsive
491
+ - [ ] Tactile feedback visual/haptic
492
+ - [ ] Loading spinners smooth
493
+ - [ ] Success/error states clear
494
+ - [ ] Hover effects subtle
495
+
496
+ ## 17. Inclusive Design
497
+
498
+ - **Keywords**: Accessible, color-blind friendly, high contrast, haptic feedback, voice interaction, screen reader, WCAG AAA, universal
499
+ - **Primary colors**: WCAG AAA (7:1+ contrast), avoid red-green only, symbol-based indicators, high contrast primary
500
+ - **Secondary colors**: Supporting patterns (stripes, dots, hatch), symbols, combinations, clear non-color indicators
501
+ - **Effects**: Haptic feedback (vibration), voice guidance, focus indicators (4px+ ring), motion options, alt content, semantic
502
+ - **Best for**: Public services, education, healthcare, finance, government, accessible consumer, inclusive
503
+ - **Avoid for**: None - accessibility universal
504
+ - **Light mode**: ✓ Full
505
+ - **Dark mode**: ✓ Full
506
+ - **Performance**: ⚡ Excellent
507
+ - **Accessibility**: ✓ WCAG AAA
508
+ - **Era**: Universal
509
+ - **Complexity**: Low
510
+
511
+ **AI prompt**: Design for universal accessibility: high contrast (7:1+), large text (16px+), keyboard-only navigation, screen reader optimization, WCAG AAA compliance, symbol-based color indicators (not color-only), haptic feedback, voice interaction support, reduced motion options.
512
+
513
+ ```css
514
+ /* Inclusive Design hints */
515
+ aria-* attributes complete, role attributes semantic, focus-visible: 3-4px ring, color-contrast: 7:1+, @media (prefers-reduced-motion), alt text on all images, form labels properly associated
516
+ ```
517
+
518
+ **Checklist**:
519
+ - [ ] WCAG AAA verified
520
+ - [ ] 7:1+ contrast all text
521
+ - [ ] Keyboard accessible (Tab/Enter)
522
+ - [ ] Screen reader tested
523
+ - [ ] Focus visible 3-4px
524
+ - [ ] No color-only indicators
525
+ - [ ] Haptic fallback
526
+
527
+ ## 18. Zero Interface
528
+
529
+ - **Keywords**: Minimal visible UI, voice-first, gesture-based, AI-driven, invisible controls, predictive, context-aware, ambient
530
+ - **Primary colors**: Neutral backgrounds: Soft white #FAFAFA, light grey #F0F0F0, warm off-white #F5F1E8
531
+ - **Secondary colors**: Subtle feedback: light green, light red, minimal UI elements, soft accents
532
+ - **Effects**: Voice recognition UI, gesture detection, AI predictions (smooth reveal), progressive disclosure, smart suggestions
533
+ - **Best for**: Voice assistants, AI platforms, future-forward UX, smart home, contextual computing, ambient experiences
534
+ - **Avoid for**: Complex workflows, data-entry heavy, traditional systems, legacy support, explicit control
535
+ - **Light mode**: ✓ Full
536
+ - **Dark mode**: ✓ Full
537
+ - **Performance**: ⚡ Excellent
538
+ - **Accessibility**: ✓ Excellent
539
+ - **Era**: 2020s AI-Era
540
+ - **Complexity**: Low
541
+
542
+ **AI prompt**: Create a voice-first, gesture-based, AI-driven interface with minimal visible UI, progressive disclosure, voice recognition UI, gesture detection, AI predictions, smart suggestions, context-aware actions. Hide controls until needed.
543
+
544
+ ```css
545
+ /* Zero Interface hints */
546
+ voice-commands: Web Speech API, gesture-detection: touch events, AI-predictions: hidden by default (reveal on hover), progressive-disclosure: show on demand, minimal UI visible
547
+ ```
548
+
549
+ **Checklist**:
550
+ - [ ] Voice commands responsive
551
+ - [ ] Gesture detection active
552
+ - [ ] AI predictions hidden/revealed
553
+ - [ ] Progressive disclosure working
554
+ - [ ] Minimal visible UI
555
+ - [ ] Smart suggestions contextual
556
+
557
+ ## 19. Soft UI Evolution
558
+
559
+ - **Keywords**: Evolved soft UI, better contrast, modern aesthetics, subtle depth, accessibility-focused, improved shadows, hybrid
560
+ - **Primary colors**: Improved contrast pastels: Soft Blue #87CEEB, Soft Pink #FFB6C1, Soft Green #90EE90, better hierarchy
561
+ - **Secondary colors**: Better combinations, accessible secondary, supporting with improved contrast, modern accents
562
+ - **Effects**: Improved shadows (softer than flat, clearer than neumorphism), modern (200-300ms), focus visible, WCAG AA/AAA
563
+ - **Best for**: Modern enterprise apps, SaaS platforms, health/wellness, modern business tools, professional, hybrid
564
+ - **Avoid for**: Extreme minimalism, critical performance, systems without modern OS
565
+ - **Light mode**: ✓ Full
566
+ - **Dark mode**: ✓ Full
567
+ - **Performance**: ⚡ Excellent
568
+ - **Accessibility**: ✓ WCAG AA+
569
+ - **Era**: 2020s Modern
570
+ - **Complexity**: Medium
571
+
572
+ **AI prompt**: Design evolved neumorphism with improved contrast (WCAG AA+), modern aesthetics, subtle depth, accessibility focus. Use soft shadows (softer than flat but clearer than pure neumorphism), better color hierarchy, improved focus states, modern 200-300ms animations.
573
+
574
+ ```css
575
+ /* Soft UI Evolution hints */
576
+ box-shadow: softer multi-layer (0 2px 4px), background: improved contrast pastels, border-radius: 8-12px, animation: 200-300ms smooth, outline: 2-3px on focus, contrast: 4.5:1+
577
+ ```
578
+
579
+ **Checklist**:
580
+ - [ ] Improved contrast AA/AAA
581
+ - [ ] Soft shadows modern
582
+ - [ ] Border-radius 8-12px
583
+ - [ ] Animations 200-300ms
584
+ - [ ] Focus states visible
585
+ - [ ] Color hierarchy clear
586
+
587
+ ## 20. Hero-Centric Design
588
+
589
+ - **Keywords**: Large hero section, compelling headline, high-contrast CTA, product showcase, value proposition, hero image/video, dramatic visual
590
+ - **Primary colors**: Brand primary color, white/light backgrounds for contrast, accent color for CTA
591
+ - **Secondary colors**: Supporting colors for secondary CTAs, accent highlights, trust elements (testimonials, logos)
592
+ - **Effects**: Smooth scroll reveal, fade-in animations on hero, subtle background parallax, CTA glow/pulse effect
593
+ - **Best for**: SaaS landing pages, product launches, service landing pages, B2B platforms, tech companies
594
+ - **Avoid for**: Complex navigation, multi-page experiences, data-heavy applications
595
+ - **Light mode**: ✓ Full
596
+ - **Dark mode**: ✓ Full
597
+ - **Performance**: ⚡ Good
598
+ - **Accessibility**: ✓ WCAG AA
599
+ - **Era**: 2020s Modern
600
+ - **Complexity**: Medium
601
+
602
+ **AI prompt**: Design a hero-centric landing page. Use: full-width hero section, compelling headline (60-80 chars), high-contrast CTA button, product screenshot or video, value proposition above fold, gradient or image background, clear visual hierarchy.
603
+
604
+ ```css
605
+ /* Hero-Centric Design hints */
606
+ min-height: 100vh, display: flex, align-items: center, background: linear-gradient or image, text-shadow for readability, max-width: 800px for text, button with hover scale (1.05)
607
+ ```
608
+
609
+ **Checklist**:
610
+ - [ ] Hero section full viewport height
611
+ - [ ] Headline visible above fold
612
+ - [ ] CTA button high contrast
613
+ - [ ] Background image optimized (WebP)
614
+ - [ ] Text readable on background
615
+ - [ ] Mobile responsive layout
616
+
617
+ ## 21. Conversion-Optimized
618
+
619
+ - **Keywords**: Form-focused, minimalist design, single CTA focus, high contrast, urgency elements, trust signals, social proof, clear value
620
+ - **Primary colors**: Primary brand color, high-contrast white/light backgrounds, warning/urgency colors for time-limited offers
621
+ - **Secondary colors**: Secondary CTA color (muted), trust element colors (testimonial highlights), accent for key benefits
622
+ - **Effects**: Hover states on CTA (color shift, slight scale), form field focus animations, loading spinner, success feedback
623
+ - **Best for**: E-commerce product pages, free trial signups, lead generation, SaaS pricing pages, limited-time offers
624
+ - **Avoid for**: Complex feature explanations, multi-product showcases, technical documentation
625
+ - **Light mode**: ✓ Full
626
+ - **Dark mode**: ✓ Full
627
+ - **Performance**: ⚡ Excellent
628
+ - **Accessibility**: ✓ WCAG AA
629
+ - **Era**: 2020s Modern
630
+ - **Complexity**: Medium
631
+
632
+ **AI prompt**: Design a conversion-optimized landing page. Use: single primary CTA, minimal distractions, trust badges, urgency elements (limited time), social proof (testimonials), clear value proposition, form above fold, progress indicators.
633
+
634
+ ```css
635
+ /* Conversion-Optimized hints */
636
+ form with focus states, input:focus ring, button: primary color high contrast, position: sticky for CTA, max-width: 600px for form, loading spinner, success/error states
637
+ ```
638
+
639
+ **Checklist**:
640
+ - [ ] Single primary CTA visible
641
+ - [ ] Form fields minimal (3-5)
642
+ - [ ] Trust badges present
643
+ - [ ] Social proof above fold
644
+ - [ ] Mobile form optimized
645
+ - [ ] Loading states implemented
646
+ - [ ] A/B test ready
647
+
648
+ ## 22. Feature-Rich Showcase
649
+
650
+ - **Keywords**: Multiple feature sections, grid layout, benefit cards, visual feature demonstrations, interactive elements, problem-solution pairs
651
+ - **Primary colors**: Primary brand, bright secondary colors for feature cards, contrasting accent for CTAs
652
+ - **Secondary colors**: Supporting colors for: benefits (green), problems (red/orange), features (blue/purple), social proof (neutral)
653
+ - **Effects**: Card hover effects (lift/scale), icon animations on scroll, feature toggle animations, smooth section transitions
654
+ - **Best for**: Enterprise SaaS, software tools landing pages, platform services, complex product explanations, B2B products
655
+ - **Avoid for**: Simple product pages, early-stage startups with few features, entertainment landing pages
656
+ - **Light mode**: ✓ Full
657
+ - **Dark mode**: ✓ Full
658
+ - **Performance**: ⚡ Good
659
+ - **Accessibility**: ✓ WCAG AA
660
+ - **Era**: 2020s Modern
661
+ - **Complexity**: Medium
662
+
663
+ **AI prompt**: Design a feature showcase landing page. Use: grid layout for features (3-4 columns), feature cards with icons, benefit-focused copy, alternating sections, comparison tables, interactive demos, problem-solution pairs.
664
+
665
+ ```css
666
+ /* Feature-Rich Showcase hints */
667
+ display: grid, grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)), gap: 2rem, card hover effects (translateY -4px), icon containers, alternating background colors
668
+ ```
669
+
670
+ **Checklist**:
671
+ - [ ] Feature grid responsive
672
+ - [ ] Icons consistent style
673
+ - [ ] Card hover effects smooth
674
+ - [ ] Alternating sections contrast
675
+ - [ ] Benefits clearly stated
676
+ - [ ] Mobile stacks properly
677
+
678
+ ## 23. Minimal & Direct
679
+
680
+ - **Keywords**: Minimal text, white space heavy, single column layout, direct messaging, clean typography, visual-centric, fast-loading
681
+ - **Primary colors**: Monochromatic primary, white background, single accent color for CTA, black/dark grey text
682
+ - **Secondary colors**: Minimal secondary colors, reserved for critical CTAs only, neutral supporting elements
683
+ - **Effects**: Very subtle hover effects, minimal animations, fast page load (no heavy animations), smooth scroll
684
+ - **Best for**: Simple service landing pages, indie products, consulting services, micro SaaS, freelancer portfolios
685
+ - **Avoid for**: Feature-heavy products, complex explanations, multi-product showcases
686
+ - **Light mode**: ✓ Full
687
+ - **Dark mode**: ✓ Full
688
+ - **Performance**: ⚡ Excellent
689
+ - **Accessibility**: ✓ WCAG AAA
690
+ - **Era**: 2020s Modern
691
+ - **Complexity**: Medium
692
+
693
+ **AI prompt**: Design a minimal direct landing page. Use: single column layout, maximum white space, essential content only, one CTA, clean typography, no decorative elements, fast loading, direct messaging.
694
+
695
+ ```css
696
+ /* Minimal & Direct hints */
697
+ max-width: 680px, margin: 0 auto, padding: 4rem 2rem, font-size: 18-20px, line-height: 1.6, minimal animations, no box-shadow, clean borders only
698
+ ```
699
+
700
+ **Checklist**:
701
+ - [ ] Single column centered
702
+ - [ ] White space generous
703
+ - [ ] One primary CTA only
704
+ - [ ] No decorative images
705
+ - [ ] Page weight < 500KB
706
+ - [ ] Load time < 2s
707
+
708
+ ## 24. Social Proof-Focused
709
+
710
+ - **Keywords**: Testimonials prominent, client logos displayed, case studies sections, reviews/ratings, user avatars, success metrics, credibility markers
711
+ - **Primary colors**: Primary brand, trust colors (blue), success/growth colors (green), neutral backgrounds
712
+ - **Secondary colors**: Testimonial highlight colors, logo grid backgrounds (light grey), badge/achievement colors
713
+ - **Effects**: Testimonial carousel animations, logo grid fade-in, stat counter animations (number count-up), review star ratings
714
+ - **Best for**: B2B SaaS, professional services, premium products, e-commerce conversion pages, established brands
715
+ - **Avoid for**: Startup MVPs, products without users, niche/experimental products
716
+ - **Light mode**: ✓ Full
717
+ - **Dark mode**: ✓ Full
718
+ - **Performance**: ⚡ Good
719
+ - **Accessibility**: ✓ WCAG AA
720
+ - **Era**: 2020s Modern
721
+ - **Complexity**: Medium
722
+
723
+ **AI prompt**: Design a social proof landing page. Use: testimonials with photos, client logos grid, case study cards, review ratings (stars), user count metrics, success stories, trust indicators, before/after comparisons.
724
+
725
+ ```css
726
+ /* Social Proof-Focused hints */
727
+ testimonial cards with avatar, logo grid (grayscale filter), star rating SVGs, counter animations (count-up), blockquote styling, carousel for testimonials, metric cards
728
+ ```
729
+
730
+ **Checklist**:
731
+ - [ ] Testimonials with real photos
732
+ - [ ] Logo grid 6-12 logos
733
+ - [ ] Star ratings accessible
734
+ - [ ] Metrics animated on scroll
735
+ - [ ] Case studies linked
736
+ - [ ] Mobile carousel works
737
+
738
+ ## 25. Interactive Product Demo
739
+
740
+ - **Keywords**: Embedded product mockup/video, interactive elements, product walkthrough, step-by-step guides, hover-to-reveal features, embedded demos
741
+ - **Primary colors**: Primary brand, interface colors matching product, demo highlight colors for interactive elements
742
+ - **Secondary colors**: Product UI colors, tutorial step colors (numbered progression), hover state indicators
743
+ - **Effects**: Product animation playback, step progression animations, hover reveal effects, smooth zoom on interaction
744
+ - **Best for**: SaaS platforms, tool/software products, productivity apps landing pages, developer tools, productivity software
745
+ - **Avoid for**: Simple services, consulting, non-digital products, complexity-averse audiences
746
+ - **Light mode**: ✓ Full
747
+ - **Dark mode**: ✓ Full
748
+ - **Performance**: ⚠ Good (video/interactive)
749
+ - **Accessibility**: ✓ WCAG AA
750
+ - **Era**: 2020s Modern
751
+ - **Complexity**: Medium
752
+
753
+ **AI prompt**: Design an interactive demo landing page. Use: embedded product mockup, video walkthrough, step-by-step guide, hover-to-reveal features, live demo button, screenshot carousel, feature highlights on interaction.
754
+
755
+ ```css
756
+ /* Interactive Product Demo hints */
757
+ video element with controls, position: relative for overlays, hover reveal (opacity transition), step indicators, modal for full demo, screenshot lightbox, play button overlay
758
+ ```
759
+
760
+ **Checklist**:
761
+ - [ ] Demo video loads fast
762
+ - [ ] Fallback for no-JS
763
+ - [ ] Step indicators clear
764
+ - [ ] Hover states obvious
765
+ - [ ] Mobile touch friendly
766
+ - [ ] Demo CTA prominent
767
+
768
+ ## 26. Trust & Authority
769
+
770
+ - **Keywords**: Certificates/badges displayed, expert credentials, case studies with metrics, before/after comparisons, industry recognition, security badges
771
+ - **Primary colors**: Professional colors (blue/grey), trust colors, certification badge colors (gold/silver accents)
772
+ - **Secondary colors**: Certificate highlight colors, metric showcase colors, comparison highlight (success green)
773
+ - **Effects**: Badge hover effects, metric pulse animations, certificate carousel, smooth stat reveal
774
+ - **Best for**: Healthcare/medical landing pages, financial services, enterprise software, premium/luxury products, legal services
775
+ - **Avoid for**: Casual products, entertainment, viral/social-first products
776
+ - **Light mode**: ✓ Full
777
+ - **Dark mode**: ✓ Full
778
+ - **Performance**: ⚡ Excellent
779
+ - **Accessibility**: ✓ WCAG AAA
780
+ - **Era**: 2020s Modern
781
+ - **Complexity**: Medium
782
+
783
+ **AI prompt**: Design a trust-focused landing page. Use: certification badges, security indicators, expert credentials, industry awards, case study metrics, compliance logos (GDPR, SOC2), guarantee badges, professional photography.
784
+
785
+ ```css
786
+ /* Trust & Authority hints */
787
+ badge grid layout, shield icons, lock icons for security, certificate styling, metric cards with icons, professional color scheme (blue/grey), subtle shadows for depth
788
+ ```
789
+
790
+ **Checklist**:
791
+ - [ ] Security badges visible
792
+ - [ ] Certifications verified
793
+ - [ ] Metrics with sources
794
+ - [ ] Professional imagery
795
+ - [ ] Guarantee clearly stated
796
+ - [ ] Contact info accessible
797
+
798
+ ## 27. Storytelling-Driven
799
+
800
+ - **Keywords**: Narrative flow, visual story progression, section transitions, consistent character/brand voice, emotional messaging, journey visualization
801
+ - **Primary colors**: Brand primary, warm/emotional colors, varied accent colors per story section, high visual variety
802
+ - **Secondary colors**: Story section color coding, emotional state colors (calm, excitement, success), transitional gradients
803
+ - **Effects**: Section-to-section animations, scroll-triggered reveals, character/icon animations, morphing transitions, parallax narrative
804
+ - **Best for**: Brand/startup stories, mission-driven products, premium/lifestyle brands, documentary-style products, educational
805
+ - **Avoid for**: Technical/complex products (unless narrative-driven), traditional enterprise software
806
+ - **Light mode**: ✓ Full
807
+ - **Dark mode**: ✓ Full
808
+ - **Performance**: ⚠ Moderate (animations)
809
+ - **Accessibility**: ✓ WCAG AA
810
+ - **Era**: 2020s Modern
811
+ - **Complexity**: Medium
812
+
813
+ **AI prompt**: Design a storytelling landing page. Use: narrative flow sections, scroll-triggered reveals, chapter-like structure, emotional imagery, brand journey visualization, founder story, mission statement, timeline progression.
814
+
815
+ ```css
816
+ /* Storytelling-Driven hints */
817
+ scroll-snap sections, Intersection Observer for reveals, parallax backgrounds, section transitions, timeline CSS, narrative typography (varied sizes), image-text alternating
818
+ ```
819
+
820
+ **Checklist**:
821
+ - [ ] Story flows naturally
822
+ - [ ] Scroll reveals smooth
823
+ - [ ] Sections timed well
824
+ - [ ] Emotional hooks present
825
+ - [ ] Mobile story readable
826
+ - [ ] Skip option available
827
+
828
+ ## 28. Data-Dense Dashboard
829
+
830
+ - **Keywords**: Multiple charts/widgets, data tables, KPI cards, minimal padding, grid layout, space-efficient, maximum data visibility
831
+ - **Primary colors**: Neutral primary (light grey/white #F5F5F5), data colors (blue/green/red), dark text #333333
832
+ - **Secondary colors**: Chart colors: success (green #22C55E), warning (amber #F59E0B), alert (red #EF4444), neutral (grey)
833
+ - **Effects**: Hover tooltips, chart zoom on click, row highlighting on hover, smooth filter animations, data loading spinners
834
+ - **Best for**: Business intelligence dashboards, financial analytics, enterprise reporting, operational dashboards, data warehousing
835
+ - **Avoid for**: Marketing dashboards, consumer-facing analytics, simple reporting
836
+ - **Light mode**: ✓ Full
837
+ - **Dark mode**: ✓ Full
838
+ - **Performance**: ⚡ Excellent
839
+ - **Accessibility**: ✓ WCAG AA
840
+ - **Era**: 2020s Modern
841
+ - **Complexity**: Medium
842
+
843
+ **AI prompt**: Design a data-dense dashboard. Use: multiple chart widgets, KPI cards row, data tables with sorting, minimal padding (8-12px), efficient grid layout, filter sidebar, dense but readable typography, maximum information density.
844
+
845
+ ```css
846
+ /* Data-Dense Dashboard hints */
847
+ display: grid, grid-template-columns: repeat(12, 1fr), gap: 8px, padding: 12px, font-size: 12-14px, overflow: auto for tables, compact card design, sticky headers
848
+ ```
849
+
850
+ **Checklist**:
851
+ - [ ] Grid layout 12 columns
852
+ - [ ] KPI cards responsive
853
+ - [ ] Tables sortable
854
+ - [ ] Filters functional
855
+ - [ ] Loading states for data
856
+ - [ ] Export functionality
857
+
858
+ ## 29. Heat Map & Heatmap Style
859
+
860
+ - **Keywords**: Color-coded grid/matrix, data intensity visualization, geographical heat maps, correlation matrices, cell-based representation, gradient coloring
861
+ - **Primary colors**: Gradient scale: Cool (blue #0080FF) to hot (red #FF0000), neutral middle (white/yellow)
862
+ - **Secondary colors**: Support gradients: Light (cool blue) to dark (warm red), divergent for positive/negative data, monochromatic options
863
+ - **Effects**: Color gradient transitions on data change, cell highlighting on hover, tooltip reveal on click, smooth color animation
864
+ - **Best for**: Geographical analysis, performance matrices, correlation analysis, user behavior heatmaps, temperature/intensity data
865
+ - **Avoid for**: Linear data representation, categorical comparisons (use bar charts), small datasets
866
+ - **Light mode**: ✓ Full
867
+ - **Dark mode**: ✓ Full (with adjustments)
868
+ - **Performance**: ⚡ Excellent
869
+ - **Accessibility**: ⚠ Colorblind considerations
870
+ - **Era**: 2020s Modern
871
+ - **Complexity**: Medium
872
+
873
+ **AI prompt**: Design a heatmap visualization. Use: color gradient scale (cool to hot), cell-based grid, intensity legend, hover tooltips, geographic or matrix layout, divergent color scheme for +/- values, accessible color alternatives.
874
+
875
+ ```css
876
+ /* Heat Map & Heatmap Style hints */
877
+ display: grid, background: linear-gradient for legend, cell hover states, tooltip positioning, color scale (blue→white→red), SVG for geographic, canvas for large datasets
878
+ ```
879
+
880
+ **Checklist**:
881
+ - [ ] Color scale clear
882
+ - [ ] Legend visible
883
+ - [ ] Tooltips informative
884
+ - [ ] Colorblind alternatives
885
+ - [ ] Zoom/pan for geo
886
+ - [ ] Performance for large data
887
+
888
+ ## 30. Executive Dashboard
889
+
890
+ - **Keywords**: High-level KPIs, large key metrics, minimal detail, summary view, trend indicators, at-a-glance insights, executive summary
891
+ - **Primary colors**: Brand colors, professional palette (blue/grey/white), accent for KPIs, red for alerts/concerns
892
+ - **Secondary colors**: KPI highlight colors: positive (green), negative (red), neutral (grey), trend arrow colors
893
+ - **Effects**: KPI value animations (count-up), trend arrow direction animations, metric card hover lift, alert pulse effect
894
+ - **Best for**: C-suite dashboards, business summary reports, decision-maker dashboards, strategic planning views
895
+ - **Avoid for**: Detailed analyst dashboards, technical deep-dives, operational monitoring
896
+ - **Light mode**: ✓ Full
897
+ - **Dark mode**: ✓ Full
898
+ - **Performance**: ⚡ Excellent
899
+ - **Accessibility**: ✓ WCAG AA
900
+ - **Era**: 2020s Modern
901
+ - **Complexity**: Medium
902
+
903
+ **AI prompt**: Design an executive dashboard. Use: large KPI cards (4-6 max), trend sparklines, high-level summary only, clean layout with white space, traffic light indicators (red/yellow/green), at-a-glance insights, minimal detail.
904
+
905
+ ```css
906
+ /* Executive Dashboard hints */
907
+ display: flex for KPI row, large font-size (24-48px) for metrics, sparkline SVG inline, status indicators (border-left color), card shadows for hierarchy, responsive breakpoints
908
+ ```
909
+
910
+ **Checklist**:
911
+ - [ ] KPIs 4-6 maximum
912
+ - [ ] Trends visible
913
+ - [ ] Status colors clear
914
+ - [ ] One-page view
915
+ - [ ] Mobile simplified
916
+ - [ ] Print-friendly layout
917
+
918
+ ## 31. Real-Time Monitoring
919
+
920
+ - **Keywords**: Live data updates, status indicators, alert notifications, streaming data visualization, active monitoring, streaming charts
921
+ - **Primary colors**: Alert colors: critical (red #FF0000), warning (orange #FFA500), normal (green #22C55E), updating (blue animation)
922
+ - **Secondary colors**: Status indicator colors, chart line colors varying by metric, streaming data highlight colors
923
+ - **Effects**: Real-time chart animations, alert pulse/glow, status indicator blink animation, smooth data stream updates, loading effect
924
+ - **Best for**: System monitoring dashboards, DevOps dashboards, real-time analytics, stock market dashboards, live event tracking
925
+ - **Avoid for**: Historical analysis, long-term trend reports, archived data dashboards
926
+ - **Light mode**: ✓ Full
927
+ - **Dark mode**: ✓ Full
928
+ - **Performance**: ⚡ Good (real-time load)
929
+ - **Accessibility**: ✓ WCAG AA
930
+ - **Era**: 2020s Modern
931
+ - **Complexity**: Medium
932
+
933
+ **AI prompt**: Design a real-time monitoring dashboard. Use: live status indicators (pulsing), streaming charts, alert notifications, connection status, auto-refresh indicators, critical alerts prominent, system health overview.
934
+
935
+ ```css
936
+ /* Real-Time Monitoring hints */
937
+ animation: pulse for live, WebSocket for streaming, position: fixed for alerts, status-dot with animation, chart real-time updates, notification toast, connection indicator
938
+ ```
939
+
940
+ **Checklist**:
941
+ - [ ] Live updates working
942
+ - [ ] Alert sounds optional
943
+ - [ ] Connection status shown
944
+ - [ ] Auto-refresh indicated
945
+ - [ ] Critical alerts prominent
946
+ - [ ] Offline fallback
947
+
948
+ ## 32. Drill-Down Analytics
949
+
950
+ - **Keywords**: Hierarchical data exploration, expandable sections, interactive drill-down paths, summary-to-detail flow, context preservation
951
+ - **Primary colors**: Primary brand, breadcrumb colors, drill-level indicator colors, hierarchy depth colors
952
+ - **Secondary colors**: Drill-down path indicator colors, level-specific colors, highlight colors for selected level, transition colors
953
+ - **Effects**: Drill-down expand animations, breadcrumb click transitions, smooth detail reveal, level change smooth, data reload animation
954
+ - **Best for**: Sales analytics, product analytics, funnel analysis, multi-dimensional data exploration, business intelligence
955
+ - **Avoid for**: Simple linear data, single-metric dashboards, streaming real-time dashboards
956
+ - **Light mode**: ✓ Full
957
+ - **Dark mode**: ✓ Full
958
+ - **Performance**: ⚡ Good
959
+ - **Accessibility**: ✓ WCAG AA
960
+ - **Era**: 2020s Modern
961
+ - **Complexity**: Medium
962
+
963
+ **AI prompt**: Design a drill-down analytics dashboard. Use: breadcrumb navigation, expandable sections, summary-to-detail flow, back button prominent, level indicators, context preservation, hierarchical data display.
964
+
965
+ ```css
966
+ /* Drill-Down Analytics hints */
967
+ breadcrumb nav with separators, details/summary for expand, transition for drill animation, position: sticky breadcrumb, nested grid layouts, smooth scroll to detail
968
+ ```
969
+
970
+ **Checklist**:
971
+ - [ ] Breadcrumbs clear
972
+ - [ ] Back navigation easy
973
+ - [ ] Expand animation smooth
974
+ - [ ] Context preserved
975
+ - [ ] Mobile drill works
976
+ - [ ] Deep links supported
977
+
978
+ ## 33. Comparative Analysis Dashboard
979
+
980
+ - **Keywords**: Side-by-side comparisons, period-over-period metrics, A/B test results, regional comparisons, performance benchmarks
981
+ - **Primary colors**: Comparison colors: primary (blue), comparison (orange/purple), delta indicator (green/red)
982
+ - **Secondary colors**: Winning metric color (green), losing metric color (red), neutral comparison (grey), benchmark colors
983
+ - **Effects**: Comparison bar animations (grow to value), delta indicator animations (direction arrows), highlight on compare
984
+ - **Best for**: Period-over-period reporting, A/B test dashboards, market comparison, competitive analysis, regional performance
985
+ - **Avoid for**: Single metric dashboards, future projections (use forecasting), real-time only (no historical)
986
+ - **Light mode**: ✓ Full
987
+ - **Dark mode**: ✓ Full
988
+ - **Performance**: ⚡ Excellent
989
+ - **Accessibility**: ✓ WCAG AA
990
+ - **Era**: 2020s Modern
991
+ - **Complexity**: Medium
992
+
993
+ **AI prompt**: Design a comparison dashboard. Use: side-by-side metrics, period selectors (vs last month), delta indicators (+/-), benchmark lines, A/B comparison tables, winning/losing highlights, percentage change badges.
994
+
995
+ ```css
996
+ /* Comparative Analysis Dashboard hints */
997
+ display: flex for side-by-side, gap for comparison spacing, color coding (green up, red down), arrow indicators, diff highlighting, comparison table zebra striping
998
+ ```
999
+
1000
+ **Checklist**:
1001
+ - [ ] Period selector works
1002
+ - [ ] Deltas calculated
1003
+ - [ ] Colors meaningful
1004
+ - [ ] Benchmarks shown
1005
+ - [ ] Mobile stacks properly
1006
+ - [ ] Export comparison
1007
+
1008
+ ## 34. Predictive Analytics
1009
+
1010
+ - **Keywords**: Forecast lines, confidence intervals, trend projections, scenario modeling, AI-driven insights, anomaly detection visualization
1011
+ - **Primary colors**: Forecast line color (distinct from actual), confidence interval shading, anomaly highlight (red alert), trend colors
1012
+ - **Secondary colors**: High confidence (dark color), low confidence (light color), anomaly colors (red/orange), normal trend (green/blue)
1013
+ - **Effects**: Forecast line animation on draw, confidence band fade-in, anomaly pulse alert, smoothing function animations
1014
+ - **Best for**: Forecasting dashboards, anomaly detection systems, trend prediction dashboards, AI-powered analytics, budget planning
1015
+ - **Avoid for**: Historical-only dashboards, simple reporting, real-time operational dashboards
1016
+ - **Light mode**: ✓ Full
1017
+ - **Dark mode**: ✓ Full
1018
+ - **Performance**: ⚠ Good (computation)
1019
+ - **Accessibility**: ✓ WCAG AA
1020
+ - **Era**: 2020s Modern
1021
+ - **Complexity**: Medium
1022
+
1023
+ **AI prompt**: Design a predictive analytics dashboard. Use: forecast lines (dashed), confidence intervals (shaded bands), trend projections, anomaly highlights, scenario toggles, AI insight cards, probability indicators.
1024
+
1025
+ ```css
1026
+ /* Predictive Analytics hints */
1027
+ stroke-dasharray for forecast lines, fill-opacity for confidence bands, anomaly markers (circles), tooltip for predictions, toggle switches for scenarios, gradient for probability
1028
+ ```
1029
+
1030
+ **Checklist**:
1031
+ - [ ] Forecast line distinct
1032
+ - [ ] Confidence bands visible
1033
+ - [ ] Anomalies highlighted
1034
+ - [ ] Scenarios switchable
1035
+ - [ ] Predictions dated
1036
+ - [ ] Accuracy shown
1037
+
1038
+ ## 35. User Behavior Analytics
1039
+
1040
+ - **Keywords**: Funnel visualization, user flow diagrams, conversion tracking, engagement metrics, user journey mapping, cohort analysis
1041
+ - **Primary colors**: Funnel stage colors: high engagement (green), drop-off (red), conversion (blue), user flow arrows (grey)
1042
+ - **Secondary colors**: Stage completion colors (success), abandonment colors (warning), engagement levels (gradient), cohort colors
1043
+ - **Effects**: Funnel animation (fill-down), flow diagram animations (connection draw), conversion pulse, engagement bar fill
1044
+ - **Best for**: Conversion funnel analysis, user journey tracking, engagement analytics, cohort analysis, retention tracking
1045
+ - **Avoid for**: Real-time operational metrics, technical system monitoring, financial transactions
1046
+ - **Light mode**: ✓ Full
1047
+ - **Dark mode**: ✓ Full
1048
+ - **Performance**: ⚡ Good
1049
+ - **Accessibility**: ✓ WCAG AA
1050
+ - **Era**: 2020s Modern
1051
+ - **Complexity**: Medium
1052
+
1053
+ **AI prompt**: Design a user behavior analytics dashboard. Use: funnel visualization, user flow diagrams (Sankey), conversion metrics, engagement heatmaps, cohort tables, retention curves, session replay indicators.
1054
+
1055
+ ```css
1056
+ /* User Behavior Analytics hints */
1057
+ SVG funnel with gradients, Sankey diagram library, percentage labels, cohort grid cells, retention chart (line/area), click heatmap overlay, session timeline
1058
+ ```
1059
+
1060
+ **Checklist**:
1061
+ - [ ] Funnel stages clear
1062
+ - [ ] Flow diagram readable
1063
+ - [ ] Conversions calculated
1064
+ - [ ] Cohorts comparable
1065
+ - [ ] Retention trends visible
1066
+ - [ ] Privacy compliant
1067
+
1068
+ ## 36. Financial Dashboard
1069
+
1070
+ - **Keywords**: Revenue metrics, profit/loss visualization, budget tracking, financial ratios, portfolio performance, cash flow, audit trail
1071
+ - **Primary colors**: Financial colors: profit (green #22C55E), loss (red #EF4444), neutral (grey), trust (dark blue #003366)
1072
+ - **Secondary colors**: Revenue highlight (green), expenses (red), budget variance (orange/red), balance (grey), accuracy (blue)
1073
+ - **Effects**: Number animations (count-up), trend direction indicators, percentage change animations, profit/loss color transitions
1074
+ - **Best for**: Financial reporting, accounting dashboards, portfolio tracking, budget monitoring, banking analytics
1075
+ - **Avoid for**: Simple business dashboards, entertainment/social metrics, non-financial data
1076
+ - **Light mode**: ✓ Full
1077
+ - **Dark mode**: ✓ Full
1078
+ - **Performance**: ⚡ Excellent
1079
+ - **Accessibility**: ✓ WCAG AAA
1080
+ - **Era**: 2020s Modern
1081
+ - **Complexity**: Medium
1082
+
1083
+ **AI prompt**: Design a financial dashboard. Use: revenue/expense charts, profit margins, budget vs actual, cash flow waterfall, financial ratios, audit trail table, currency formatting, period comparisons.
1084
+
1085
+ ```css
1086
+ /* Financial Dashboard hints */
1087
+ number formatting (Intl.NumberFormat), waterfall chart (positive/negative bars), variance coloring, table with totals row, sparkline for trends, sticky column headers
1088
+ ```
1089
+
1090
+ **Checklist**:
1091
+ - [ ] Currency formatted
1092
+ - [ ] Decimals consistent
1093
+ - [ ] P&L clear
1094
+ - [ ] Budget variance shown
1095
+ - [ ] Audit trail complete
1096
+ - [ ] Export to Excel
1097
+
1098
+ ## 37. Sales Intelligence Dashboard
1099
+
1100
+ - **Keywords**: Deal pipeline, sales metrics, territory performance, sales rep leaderboard, win-loss analysis, quota tracking, forecast accuracy
1101
+ - **Primary colors**: Sales colors: won (green), lost (red), in-progress (blue), blocked (orange), quota met (gold), quota missed (grey)
1102
+ - **Secondary colors**: Pipeline stage colors, rep performance colors, quota achievement colors, forecast accuracy colors
1103
+ - **Effects**: Deal movement animations, metric updates, leaderboard ranking changes, gauge needle movements, status change highlights
1104
+ - **Best for**: CRM dashboards, sales management, opportunity tracking, performance management, quota planning
1105
+ - **Avoid for**: Marketing analytics, customer support metrics, HR dashboards
1106
+ - **Light mode**: ✓ Full
1107
+ - **Dark mode**: ✓ Full
1108
+ - **Performance**: ⚡ Good
1109
+ - **Accessibility**: ✓ WCAG AA
1110
+ - **Era**: 2020s Modern
1111
+ - **Complexity**: Medium
1112
+
1113
+ **AI prompt**: Design a sales intelligence dashboard. Use: pipeline funnel, deal cards (kanban), quota gauges, leaderboard table, territory map, win/loss ratios, forecast accuracy, activity timeline.
1114
+
1115
+ ```css
1116
+ /* Sales Intelligence Dashboard hints */
1117
+ kanban columns (flex), gauge chart (SVG arc), leaderboard ranking styles, map integration (Mapbox/Google), timeline vertical, deal card with status border
1118
+ ```
1119
+
1120
+ **Checklist**:
1121
+ - [ ] Pipeline stages shown
1122
+ - [ ] Deals draggable
1123
+ - [ ] Quotas visualized
1124
+ - [ ] Rankings updated
1125
+ - [ ] Territory clickable
1126
+ - [ ] CRM integration
1127
+
1128
+ ## 38. Neubrutalism
1129
+
1130
+ - **Keywords**: Bold borders, black outlines, primary colors, thick shadows, no gradients, flat colors, 45° shadows, playful, Gen Z
1131
+ - **Primary colors**: #FFEB3B (Yellow), #FF5252 (Red), #2196F3 (Blue), #000000 (Black borders)
1132
+ - **Secondary colors**: Limited accent colors, high contrast combinations, no gradients allowed
1133
+ - **Effects**: box-shadow: 4px 4px 0 #000, border: 3px solid #000, no gradients, sharp corners (0px), bold typography
1134
+ - **Best for**: Gen Z brands, startups, creative agencies, Figma-style apps, Notion-style interfaces, tech blogs
1135
+ - **Avoid for**: Luxury brands, finance, healthcare, conservative industries (too playful)
1136
+ - **Light mode**: ✓ Full
1137
+ - **Dark mode**: ✓ Full
1138
+ - **Performance**: ⚡ Excellent
1139
+ - **Accessibility**: ✓ WCAG AAA
1140
+ - **Era**: 2020s Modern
1141
+ - **Complexity**: Low
1142
+
1143
+ **AI prompt**: Design a neubrutalist interface. Use: high contrast, hard black borders (3px+), bright pop colors, no blur, sharp or slightly rounded corners, bold typography, hard shadows (offset 4px 4px), raw aesthetic but functional.
1144
+
1145
+ ```css
1146
+ /* Neubrutalism hints */
1147
+ border: 3px solid black, box-shadow: 5px 5px 0px black, colors: #FFDB58 #FF6B6B #4ECDC4, font-weight: 700, no gradients
1148
+ ```
1149
+
1150
+ **Checklist**:
1151
+ - [ ] Hard borders (2-4px)
1152
+ - [ ] Hard offset shadows
1153
+ - [ ] High saturation colors
1154
+ - [ ] Bold typography
1155
+ - [ ] No blurs/gradients
1156
+ - [ ] Distinctive 'ugly-cute' look
1157
+
1158
+ ## 39. Bento Box Grid
1159
+
1160
+ - **Keywords**: Modular cards, asymmetric grid, varied sizes, Apple-style, dashboard tiles, negative space, clean hierarchy, cards
1161
+ - **Primary colors**: Neutral base + brand accent, #FFFFFF, #F5F5F5, brand primary
1162
+ - **Secondary colors**: Subtle gradients, shadow variations, accent highlights for interactive cards
1163
+ - **Effects**: grid-template with varied spans, rounded-xl (16px), subtle shadows, hover scale (1.02), smooth transitions
1164
+ - **Best for**: Dashboards, product pages, portfolios, Apple-style marketing, feature showcases, SaaS
1165
+ - **Avoid for**: Dense data tables, text-heavy content, real-time monitoring
1166
+ - **Light mode**: ✓ Full
1167
+ - **Dark mode**: ✓ Full
1168
+ - **Performance**: ⚡ Excellent
1169
+ - **Accessibility**: ✓ WCAG AA
1170
+ - **Era**: 2020s Apple
1171
+ - **Complexity**: Low
1172
+
1173
+ **AI prompt**: Design a Bento Box grid layout. Use: modular cards with varied sizes (1x1, 2x1, 2x2), Apple-style aesthetic, rounded corners (16-24px), soft shadows, clean hierarchy, asymmetric grid, neutral backgrounds (#F5F5F7), hover effects.
1174
+
1175
+ ```css
1176
+ /* Bento Box Grid hints */
1177
+ display: grid, grid-template-columns: repeat(4, 1fr), grid-auto-rows: 200px, gap: 16px, border-radius: 24px, background: #FFFFFF, box-shadow: 0 4px 6px rgba(0,0,0,0.05)
1178
+ ```
1179
+
1180
+ **Checklist**:
1181
+ - [ ] Grid responsive (4→2→1 cols)
1182
+ - [ ] Card spans varied
1183
+ - [ ] Rounded corners consistent
1184
+ - [ ] Shadows subtle
1185
+ - [ ] Content fits cards
1186
+ - [ ] Hover scale (1.02)
1187
+
1188
+ ## 40. Y2K Aesthetic
1189
+
1190
+ - **Keywords**: Neon pink, chrome, metallic, bubblegum, iridescent, glossy, retro-futurism, 2000s, futuristic nostalgia
1191
+ - **Primary colors**: #FF69B4 (Hot Pink), #00FFFF (Cyan), #C0C0C0 (Silver), #9400D3 (Purple)
1192
+ - **Secondary colors**: Metallic gradients, glossy overlays, iridescent effects, chrome textures
1193
+ - **Effects**: linear-gradient metallic, glossy buttons, 3D chrome effects, glow animations, bubble shapes
1194
+ - **Best for**: Fashion brands, music platforms, Gen Z brands, nostalgia marketing, entertainment, youth-focused
1195
+ - **Avoid for**: B2B enterprise, healthcare, finance, conservative industries, elderly users
1196
+ - **Light mode**: ✓ Full
1197
+ - **Dark mode**: ◐ Partial
1198
+ - **Performance**: ⚠ Good
1199
+ - **Accessibility**: ⚠ Check contrast
1200
+ - **Era**: Y2K 2000s
1201
+ - **Complexity**: Medium
1202
+
1203
+ **AI prompt**: Design a Y2K aesthetic interface. Use: neon pink/cyan colors, chrome/metallic textures, bubblegum gradients, glossy buttons, iridescent effects, 2000s futurism, star/sparkle decorations, bubble shapes, tech-optimistic vibe.
1204
+
1205
+ ```css
1206
+ /* Y2K Aesthetic hints */
1207
+ background: linear-gradient(135deg, #FF69B4, #00FFFF), filter: drop-shadow for glow, border-radius: 50% for bubbles, metallic gradients (silver/chrome), text-shadow: neon glow, ::before for sparkles
1208
+ ```
1209
+
1210
+ **Checklist**:
1211
+ - [ ] Neon colors balanced
1212
+ - [ ] Chrome effects visible
1213
+ - [ ] Glossy buttons styled
1214
+ - [ ] Bubble shapes decorative
1215
+ - [ ] Sparkle animations
1216
+ - [ ] Retro fonts loaded
1217
+
1218
+ ## 41. Cyberpunk UI
1219
+
1220
+ - **Keywords**: Neon, dark mode, terminal, HUD, sci-fi, glitch, dystopian, futuristic, matrix, tech noir
1221
+ - **Primary colors**: #00FF00 (Matrix Green), #FF00FF (Magenta), #00FFFF (Cyan), #0D0D0D (Dark)
1222
+ - **Secondary colors**: Neon gradients, scanline overlays, glitch colors, terminal green accents
1223
+ - **Effects**: Neon glow (text-shadow), glitch animations (skew/offset), scanlines (::before overlay), terminal fonts
1224
+ - **Best for**: Gaming platforms, tech products, crypto apps, sci-fi applications, developer tools, entertainment
1225
+ - **Avoid for**: Corporate enterprise, healthcare, family apps, conservative brands, elderly users
1226
+ - **Light mode**: ✗ No
1227
+ - **Dark mode**: ✓ Only
1228
+ - **Performance**: ⚠ Moderate
1229
+ - **Accessibility**: ⚠ Limited (dark+neon)
1230
+ - **Era**: 2020s Cyberpunk
1231
+ - **Complexity**: Medium
1232
+
1233
+ **AI prompt**: Design a cyberpunk interface. Use: neon colors on dark (#0D0D0D), terminal/HUD aesthetic, glitch effects, scanlines overlay, matrix green accents, monospace fonts, angular shapes, dystopian tech feel.
1234
+
1235
+ ```css
1236
+ /* Cyberpunk UI hints */
1237
+ background: #0D0D0D, color: #00FF00 or #FF00FF, font-family: monospace, text-shadow: 0 0 10px neon, animation: glitch (transform skew), ::before scanlines (repeating-linear-gradient)
1238
+ ```
1239
+
1240
+ **Checklist**:
1241
+ - [ ] Dark background only
1242
+ - [ ] Neon accents visible
1243
+ - [ ] Glitch effect subtle
1244
+ - [ ] Scanlines optional
1245
+ - [ ] Monospace font
1246
+ - [ ] Terminal aesthetic
1247
+
1248
+ ## 42. Organic Biophilic
1249
+
1250
+ - **Keywords**: Nature, organic shapes, green, sustainable, rounded, flowing, wellness, earthy, natural textures
1251
+ - **Primary colors**: #228B22 (Forest Green), #8B4513 (Earth Brown), #87CEEB (Sky Blue), #F5F5DC (Beige)
1252
+ - **Secondary colors**: Natural gradients, earth tones, sky blues, organic textures, wood/stone colors
1253
+ - **Effects**: Rounded corners (16-24px), organic curves (border-radius variations), natural shadows, flowing SVG shapes
1254
+ - **Best for**: Wellness apps, sustainability brands, eco products, health apps, meditation, organic food brands
1255
+ - **Avoid for**: Tech-focused products, gaming, industrial, urban brands
1256
+ - **Light mode**: ✓ Full
1257
+ - **Dark mode**: ✓ Full
1258
+ - **Performance**: ⚡ Excellent
1259
+ - **Accessibility**: ✓ WCAG AA
1260
+ - **Era**: 2020s Sustainable
1261
+ - **Complexity**: Low
1262
+
1263
+ **AI prompt**: Design a biophilic organic interface. Use: nature-inspired colors (greens, browns), organic curved shapes, rounded corners (16-24px), natural textures (wood, stone), flowing SVG elements, wellness aesthetic, earthy palette.
1264
+
1265
+ ```css
1266
+ /* Organic Biophilic hints */
1267
+ border-radius: 16-24px (varied), background: earth tones, SVG organic shapes (blob), box-shadow: natural soft, color: #228B22 #8B4513 #87CEEB, texture overlays (subtle)
1268
+ ```
1269
+
1270
+ **Checklist**:
1271
+ - [ ] Earth tones dominant
1272
+ - [ ] Organic curves present
1273
+ - [ ] Natural textures subtle
1274
+ - [ ] Green accents
1275
+ - [ ] Rounded everywhere
1276
+ - [ ] Calming feel
1277
+
1278
+ ## 43. AI-Native UI
1279
+
1280
+ - **Keywords**: Chatbot, conversational, voice, assistant, agentic, ambient, minimal chrome, streaming text, AI interactions
1281
+ - **Primary colors**: Neutral + single accent, #6366F1 (AI Purple), #10B981 (Success), #F5F5F5 (Background)
1282
+ - **Secondary colors**: Status indicators, streaming highlights, context card colors, subtle accent variations
1283
+ - **Effects**: Typing indicators (3-dot pulse), streaming text animations, pulse animations, context cards, smooth reveals
1284
+ - **Best for**: AI products, chatbots, voice assistants, copilots, AI-powered tools, conversational interfaces
1285
+ - **Avoid for**: Traditional forms, data-heavy dashboards, print-first content
1286
+ - **Light mode**: ✓ Full
1287
+ - **Dark mode**: ✓ Full
1288
+ - **Performance**: ⚡ Excellent
1289
+ - **Accessibility**: ✓ WCAG AA
1290
+ - **Era**: 2020s AI-Era
1291
+ - **Complexity**: Low
1292
+
1293
+ **AI prompt**: Design an AI-native interface. Use: minimal chrome, conversational layout, streaming text area, typing indicators (3-dot pulse), context cards, subtle AI accent color (#6366F1), clean input field, response bubbles.
1294
+
1295
+ ```css
1296
+ /* AI-Native UI hints */
1297
+ chat bubble layout (flex-direction: column), typing animation (3 dots pulse), streaming text (overflow: hidden + animation), input: sticky bottom, context cards (border-left accent), minimal borders
1298
+ ```
1299
+
1300
+ **Checklist**:
1301
+ - [ ] Chat layout responsive
1302
+ - [ ] Typing indicator smooth
1303
+ - [ ] Input always visible
1304
+ - [ ] Context cards styled
1305
+ - [ ] AI responses distinct
1306
+ - [ ] User messages aligned right
1307
+
1308
+ ## 44. Memphis Design
1309
+
1310
+ - **Keywords**: 80s, geometric, playful, postmodern, shapes, patterns, squiggles, triangles, neon, abstract, bold
1311
+ - **Primary colors**: #FF71CE (Hot Pink), #FFCE5C (Yellow), #86CCCA (Teal), #6A7BB4 (Blue Purple)
1312
+ - **Secondary colors**: Complementary geometric colors, pattern fills, contrasting accent shapes
1313
+ - **Effects**: transform: rotate(), clip-path: polygon(), mix-blend-mode, repeating patterns, bold shapes
1314
+ - **Best for**: Creative agencies, music sites, youth brands, event promotion, artistic portfolios, entertainment
1315
+ - **Avoid for**: Corporate finance, healthcare, legal, elderly users, conservative brands
1316
+ - **Light mode**: ✓ Full
1317
+ - **Dark mode**: ✓ Full
1318
+ - **Performance**: ⚡ Excellent
1319
+ - **Accessibility**: ⚠ Check contrast
1320
+ - **Era**: 1980s Postmodern
1321
+ - **Complexity**: Medium
1322
+
1323
+ **AI prompt**: Design a Memphis style interface. Use: bold geometric shapes (triangles, squiggles, circles), bright clashing colors, 80s postmodern aesthetic, playful patterns, dotted textures, asymmetric layouts, decorative elements.
1324
+
1325
+ ```css
1326
+ /* Memphis Design hints */
1327
+ clip-path: polygon() for shapes, background: repeating patterns, transform: rotate() for tilted elements, mix-blend-mode for overlays, border: dashed/dotted patterns, bold sans-serif
1328
+ ```
1329
+
1330
+ **Checklist**:
1331
+ - [ ] Geometric shapes visible
1332
+ - [ ] Colors bold/clashing
1333
+ - [ ] Patterns present
1334
+ - [ ] Layout asymmetric
1335
+ - [ ] Playful decorations
1336
+ - [ ] 80s vibe achieved
1337
+
1338
+ ## 45. Vaporwave
1339
+
1340
+ - **Keywords**: Synthwave, retro-futuristic, 80s-90s, neon, glitch, nostalgic, sunset gradient, dreamy, aesthetic
1341
+ - **Primary colors**: #FF71CE (Pink), #01CDFE (Cyan), #05FFA1 (Mint), #B967FF (Purple)
1342
+ - **Secondary colors**: Sunset gradients, glitch overlays, VHS effects, neon accents, pastel variations
1343
+ - **Effects**: text-shadow glow, linear-gradient, filter: hue-rotate(), glitch animations, retro scan lines
1344
+ - **Best for**: Music platforms, gaming, creative portfolios, tech startups, entertainment, artistic projects
1345
+ - **Avoid for**: Business apps, e-commerce, education, healthcare, enterprise software
1346
+ - **Light mode**: ✓ Full
1347
+ - **Dark mode**: ✓ Dark focused
1348
+ - **Performance**: ⚠ Moderate
1349
+ - **Accessibility**: ⚠ Poor (motion)
1350
+ - **Era**: 1980s-90s Retro
1351
+ - **Complexity**: Medium
1352
+
1353
+ **AI prompt**: Design a vaporwave aesthetic interface. Use: sunset gradients (pink/cyan/purple), 80s-90s nostalgia, glitch effects, Greek statue imagery, palm trees, grid patterns, neon glow, retro-futuristic feel, dreamy atmosphere.
1354
+
1355
+ ```css
1356
+ /* Vaporwave hints */
1357
+ background: linear-gradient(180deg, #FF71CE, #01CDFE, #B967FF), filter: hue-rotate(), text-shadow: neon glow, retro grid (perspective + linear-gradient), VHS scanlines
1358
+ ```
1359
+
1360
+ **Checklist**:
1361
+ - [ ] Sunset gradient present
1362
+ - [ ] Neon glow applied
1363
+ - [ ] Retro grid visible
1364
+ - [ ] Glitch effects subtle
1365
+ - [ ] Dreamy atmosphere
1366
+ - [ ] 80s-90s aesthetic
1367
+
1368
+ ## 46. Dimensional Layering
1369
+
1370
+ - **Keywords**: Depth, overlapping, z-index, layers, 3D, shadows, elevation, floating, cards, spatial hierarchy
1371
+ - **Primary colors**: Neutral base (#FFFFFF, #F5F5F5, #E0E0E0) + brand accent for elevated elements
1372
+ - **Secondary colors**: Shadow variations (sm/md/lg/xl), elevation colors, highlight colors for top layers
1373
+ - **Effects**: z-index stacking, box-shadow elevation (4 levels), transform: translateZ(), backdrop-filter, parallax
1374
+ - **Best for**: Dashboards, card layouts, modals, navigation, product showcases, SaaS interfaces
1375
+ - **Avoid for**: Print-style layouts, simple blogs, low-end devices, flat design requirements
1376
+ - **Light mode**: ✓ Full
1377
+ - **Dark mode**: ✓ Full
1378
+ - **Performance**: ⚠ Good
1379
+ - **Accessibility**: ⚠ Moderate (SR issues)
1380
+ - **Era**: 2020s Modern
1381
+ - **Complexity**: Medium
1382
+
1383
+ **AI prompt**: Design with dimensional layering. Use: z-index depth (multiple layers), overlapping cards, elevation shadows (4 levels), floating elements, parallax depth, backdrop blur for hierarchy, spatial UI feel.
1384
+
1385
+ ```css
1386
+ /* Dimensional Layering hints */
1387
+ z-index: 1-4 levels, box-shadow: elevation scale (sm/md/lg/xl), transform: translateZ(), backdrop-filter: blur(), position: relative for stacking, parallax on scroll
1388
+ ```
1389
+
1390
+ **Checklist**:
1391
+ - [ ] Layers clearly defined
1392
+ - [ ] Shadows show depth
1393
+ - [ ] Overlaps intentional
1394
+ - [ ] Hierarchy clear
1395
+ - [ ] Performance optimized
1396
+ - [ ] Mobile depth maintained
1397
+
1398
+ ## 47. Exaggerated Minimalism
1399
+
1400
+ - **Keywords**: Bold minimalism, oversized typography, high contrast, negative space, loud minimal, statement design
1401
+ - **Primary colors**: #000000 (Black), #FFFFFF (White), single vibrant accent only
1402
+ - **Secondary colors**: Minimal - single accent color, no secondary colors, extreme restraint
1403
+ - **Effects**: font-size: clamp(3rem 10vw 12rem), font-weight: 900, letter-spacing: -0.05em, massive whitespace
1404
+ - **Best for**: Fashion, architecture, portfolios, agency landing pages, luxury brands, editorial
1405
+ - **Avoid for**: E-commerce catalogs, dashboards, forms, data-heavy, elderly users, complex apps
1406
+ - **Light mode**: ✓ Full
1407
+ - **Dark mode**: ✓ Full
1408
+ - **Performance**: ⚡ Excellent
1409
+ - **Accessibility**: ✓ WCAG AA
1410
+ - **Era**: 2020s Modern
1411
+ - **Complexity**: Low
1412
+
1413
+ **AI prompt**: Design with exaggerated minimalism. Use: oversized typography (clamp 3rem-12rem), extreme negative space, black/white primary, single accent color only, bold statements, minimal elements, dramatic contrast.
1414
+
1415
+ ```css
1416
+ /* Exaggerated Minimalism hints */
1417
+ font-size: clamp(3rem, 10vw, 12rem), font-weight: 900, letter-spacing: -0.05em, color: #000 or #FFF, padding: 8rem+, single accent, no decorations
1418
+ ```
1419
+
1420
+ **Checklist**:
1421
+ - [ ] Typography oversized
1422
+ - [ ] White space extreme
1423
+ - [ ] Black/white dominant
1424
+ - [ ] Single accent only
1425
+ - [ ] Elements minimal
1426
+ - [ ] Statement clear
1427
+
1428
+ ## 48. Kinetic Typography
1429
+
1430
+ - **Keywords**: Motion text, animated type, moving letters, dynamic, typing effect, morphing, scroll-triggered text
1431
+ - **Primary colors**: Flexible - high contrast recommended, bold colors for emphasis, animation-friendly palette
1432
+ - **Secondary colors**: Accent colors for emphasis, transition colors, gradient text fills
1433
+ - **Effects**: @keyframes text animation, typing effect, background-clip: text, GSAP ScrollTrigger, split text
1434
+ - **Best for**: Hero sections, marketing sites, video platforms, storytelling, creative portfolios, landing pages
1435
+ - **Avoid for**: Long-form content, accessibility-critical, data interfaces, forms, elderly users
1436
+ - **Light mode**: ✓ Full
1437
+ - **Dark mode**: ✓ Full
1438
+ - **Performance**: ⚠ Moderate
1439
+ - **Accessibility**: ❌ Poor (motion)
1440
+ - **Era**: 2020s Modern
1441
+ - **Complexity**: High
1442
+
1443
+ **AI prompt**: Design with kinetic typography. Use: animated text, scroll-triggered reveals, typing effects, letter-by-letter animations, morphing text, gradient text fills, oversized hero text, text as the main visual element.
1444
+
1445
+ ```css
1446
+ /* Kinetic Typography hints */
1447
+ @keyframes for text animation, background-clip: text, GSAP SplitText, typing effect (steps()), transform on letters, scroll-triggered (Intersection Observer), variable fonts for morphing
1448
+ ```
1449
+
1450
+ **Checklist**:
1451
+ - [ ] Text animations smooth
1452
+ - [ ] Prefers-reduced-motion respected
1453
+ - [ ] Fallback for no-JS
1454
+ - [ ] Mobile performance ok
1455
+ - [ ] Typing effect timed
1456
+ - [ ] Scroll triggers work
1457
+
1458
+ ## 49. Parallax Storytelling
1459
+
1460
+ - **Keywords**: Scroll-driven, narrative, layered scrolling, immersive, progressive disclosure, cinematic, scroll-triggered
1461
+ - **Primary colors**: Story-dependent, often gradients and natural colors, section-specific palettes
1462
+ - **Secondary colors**: Section transition colors, depth layer colors, narrative mood colors
1463
+ - **Effects**: transform: translateY(scroll), position: fixed/sticky, perspective: 1px, scroll-triggered animations
1464
+ - **Best for**: Brand storytelling, product launches, case studies, portfolios, annual reports, marketing campaigns
1465
+ - **Avoid for**: E-commerce, dashboards, mobile-first, SEO-critical, accessibility-required
1466
+ - **Light mode**: ✓ Full
1467
+ - **Dark mode**: ✓ Full
1468
+ - **Performance**: ❌ Poor
1469
+ - **Accessibility**: ❌ Poor (motion)
1470
+ - **Era**: 2020s Modern
1471
+ - **Complexity**: High
1472
+
1473
+ **AI prompt**: Design a parallax storytelling page. Use: scroll-driven narrative, layered backgrounds (3-5 layers), fixed/sticky sections, cinematic transitions, progressive disclosure, full-screen chapters, depth perception.
1474
+
1475
+ ```css
1476
+ /* Parallax Storytelling hints */
1477
+ position: fixed/sticky, transform: translateY(calc()), perspective: 1px, z-index layering, scroll-snap-type, Intersection Observer for triggers, will-change: transform
1478
+ ```
1479
+
1480
+ **Checklist**:
1481
+ - [ ] Layers parallax smoothly
1482
+ - [ ] Story flows naturally
1483
+ - [ ] Mobile alternative provided
1484
+ - [ ] Performance optimized
1485
+ - [ ] Skip option available
1486
+ - [ ] Reduced motion fallback
1487
+
1488
+ ## 50. Swiss Modernism 2.0
1489
+
1490
+ - **Keywords**: Grid system, Helvetica, modular, asymmetric, international style, rational, clean, mathematical spacing
1491
+ - **Primary colors**: #000000, #FFFFFF, #F5F5F5, single vibrant accent only
1492
+ - **Secondary colors**: Minimal secondary, accent for emphasis only, no gradients
1493
+ - **Effects**: display: grid, grid-template-columns: repeat(12 1fr), gap: 1rem, mathematical ratios, clear hierarchy
1494
+ - **Best for**: Corporate sites, architecture, editorial, SaaS, museums, professional services, documentation
1495
+ - **Avoid for**: Playful brands, children's sites, entertainment, gaming, emotional storytelling
1496
+ - **Light mode**: ✓ Full
1497
+ - **Dark mode**: ✓ Full
1498
+ - **Performance**: ⚡ Excellent
1499
+ - **Accessibility**: ✓ WCAG AAA
1500
+ - **Era**: 1950s Swiss + 2020s
1501
+ - **Complexity**: Low
1502
+
1503
+ **AI prompt**: Design with Swiss Modernism 2.0. Use: strict grid system (12 columns), Helvetica/Inter fonts, mathematical spacing, asymmetric balance, high contrast, minimal decoration, clean hierarchy, single accent color.
1504
+
1505
+ ```css
1506
+ /* Swiss Modernism 2.0 hints */
1507
+ display: grid, grid-template-columns: repeat(12, 1fr), gap: 1rem (8px base unit), font-family: Inter/Helvetica, font-weight: 400-700, color: #000/#FFF, single accent
1508
+ ```
1509
+
1510
+ **Checklist**:
1511
+ - [ ] 12-column grid strict
1512
+ - [ ] Spacing mathematical
1513
+ - [ ] Typography hierarchy clear
1514
+ - [ ] Single accent only
1515
+ - [ ] No decorations
1516
+ - [ ] High contrast verified
1517
+
1518
+ ## 51. HUD / Sci-Fi FUI
1519
+
1520
+ - **Keywords**: Futuristic, technical, wireframe, neon, data, transparency, iron man, sci-fi, interface
1521
+ - **Primary colors**: Neon Cyan #00FFFF, Holographic Blue #0080FF, Alert Red #FF0000
1522
+ - **Secondary colors**: Transparent Black, Grid Lines #333333
1523
+ - **Effects**: Glow effects, scanning animations, ticker text, blinking markers, fine line drawing
1524
+ - **Best for**: Sci-fi games, space tech, cybersecurity, movie props, immersive dashboards
1525
+ - **Avoid for**: Standard corporate, reading heavy content, accessible public services
1526
+ - **Light mode**: ✓ Low
1527
+ - **Dark mode**: ✓ Full
1528
+ - **Performance**: ⚠ Moderate (renders)
1529
+ - **Accessibility**: ⚠ Poor (thin lines)
1530
+ - **Era**: 2010s Sci-Fi
1531
+ - **Complexity**: High
1532
+
1533
+ **AI prompt**: Design a futuristic HUD (Heads Up Display) or FUI. Use: thin lines (1px), neon cyan/blue on black, technical markers, decorative brackets, data visualization, monospaced tech fonts, glowing elements, transparency.
1534
+
1535
+ ```css
1536
+ /* HUD / Sci-Fi FUI hints */
1537
+ border: 1px solid rgba(0,255,255,0.5), color: #00FFFF, background: transparent or rgba(0,0,0,0.8), font-family: monospace, text-shadow: 0 0 5px cyan
1538
+ ```
1539
+
1540
+ **Checklist**:
1541
+ - [ ] Fine lines 1px
1542
+ - [ ] Neon glow text/borders
1543
+ - [ ] Monospaced font
1544
+ - [ ] Dark/Transparent BG
1545
+ - [ ] Decorative tech markers
1546
+ - [ ] Holographic feel
1547
+
1548
+ ## 52. Pixel Art
1549
+
1550
+ - **Keywords**: Retro, 8-bit, 16-bit, gaming, blocky, nostalgic, pixelated, arcade
1551
+ - **Primary colors**: Primary colors (NES Palette), brights, limited palette
1552
+ - **Secondary colors**: Black outlines, shading via dithering or block colors
1553
+ - **Effects**: Frame-by-frame sprite animation, blinking cursor, instant transitions, marquee text
1554
+ - **Best for**: Indie games, retro tools, creative portfolios, nostalgia marketing, Web3/NFT
1555
+ - **Avoid for**: Professional corporate, modern SaaS, high-res photography sites
1556
+ - **Light mode**: ✓ Full
1557
+ - **Dark mode**: ✓ Full
1558
+ - **Performance**: ⚡ Excellent
1559
+ - **Accessibility**: ✓ Good (if contrast ok)
1560
+ - **Era**: 1980s Arcade
1561
+ - **Complexity**: Medium
1562
+
1563
+ **AI prompt**: Design a pixel art inspired interface. Use: pixelated fonts, 8-bit or 16-bit aesthetic, sharp edges (image-rendering: pixelated), limited color palette, blocky UI elements, retro gaming feel.
1564
+
1565
+ ```css
1566
+ /* Pixel Art hints */
1567
+ font-family: 'Press Start 2P', image-rendering: pixelated, box-shadow: 4px 0 0 #000 (pixel border), no anti-aliasing
1568
+ ```
1569
+
1570
+ **Checklist**:
1571
+ - [ ] Pixelated fonts loaded
1572
+ - [ ] Images sharp (no blur)
1573
+ - [ ] CSS box-shadow for pixel borders
1574
+ - [ ] Retro palette
1575
+ - [ ] Blocky layout
1576
+
1577
+ ## 53. Bento Grids
1578
+
1579
+ - **Keywords**: Apple-style, modular, cards, organized, clean, hierarchy, grid, rounded, soft
1580
+ - **Primary colors**: Off-white #F5F5F7, Clean White #FFFFFF, Text #1D1D1F
1581
+ - **Secondary colors**: Subtle accents, soft shadows, blurred backdrops
1582
+ - **Effects**: Hover scale (1.02), soft shadow expansion, smooth layout shifts, content reveal
1583
+ - **Best for**: Product features, dashboards, personal sites, marketing summaries, galleries
1584
+ - **Avoid for**: Long-form reading, data tables, complex forms
1585
+ - **Light mode**: ✓ Full
1586
+ - **Dark mode**: ✓ Full
1587
+ - **Performance**: ⚡ Excellent
1588
+ - **Accessibility**: ✓ WCAG AA
1589
+ - **Era**: 2020s Apple/Linear
1590
+ - **Complexity**: Low
1591
+
1592
+ **AI prompt**: Design a Bento Grid layout. Use: modular grid system, rounded corners (16-24px), different card sizes (1x1, 2x1, 2x2), card-based hierarchy, soft backgrounds (#F5F5F7), subtle borders, content-first, Apple-style aesthetic.
1593
+
1594
+ ```css
1595
+ /* Bento Grids hints */
1596
+ display: grid, grid-template-columns: repeat(auto-fit, minmax(...)), gap: 1rem, border-radius: 20px, background: #FFF, box-shadow: subtle
1597
+ ```
1598
+
1599
+ **Checklist**:
1600
+ - [ ] Grid layout (CSS Grid)
1601
+ - [ ] Rounded corners 16-24px
1602
+ - [ ] Varied card spans
1603
+ - [ ] Content fits card size
1604
+ - [ ] Responsive re-flow
1605
+ - [ ] Apple-like aesthetic
1606
+
1607
+ ## 55. Spatial UI (VisionOS)
1608
+
1609
+ - **Keywords**: Glass, depth, immersion, spatial, translucent, gaze, gesture, apple, vision-pro
1610
+ - **Primary colors**: Frosted Glass #FFFFFF (15-30% opacity), System White
1611
+ - **Secondary colors**: Vibrant system colors for active states, deep shadows for depth
1612
+ - **Effects**: Parallax depth, dynamic lighting response, gaze-hover effects, smooth scale on focus
1613
+ - **Best for**: Spatial computing apps, VR/AR interfaces, immersive media, futuristic dashboards
1614
+ - **Avoid for**: Text-heavy documents, high-contrast requirements, non-3D capable devices
1615
+ - **Light mode**: ✓ Full
1616
+ - **Dark mode**: ✓ Full
1617
+ - **Performance**: ⚠ Moderate (blur cost)
1618
+ - **Accessibility**: ⚠ Contrast risks
1619
+ - **Era**: 2024 Spatial Era
1620
+ - **Complexity**: High
1621
+
1622
+ **AI prompt**: Design a VisionOS-style spatial interface. Use: frosted glass panels, depth layers, translucent backgrounds (15-30% opacity), vibrant colors for active states, gaze-hover effects, floating windows, immersive feel.
1623
+
1624
+ ```css
1625
+ /* Spatial UI (VisionOS) hints */
1626
+ backdrop-filter: blur(40px) saturate(180%), background: rgba(255,255,255,0.2), border-radius: 24px, box-shadow: 0 8px 32px rgba(0,0,0,0.1), transform: scale on focus, depth via shadows
1627
+ ```
1628
+
1629
+ **Checklist**:
1630
+ - [ ] Glass effect visible
1631
+ - [ ] Depth layers clear
1632
+ - [ ] Hover states defined
1633
+ - [ ] Colors vibrant on active
1634
+ - [ ] Floating feel achieved
1635
+ - [ ] Contrast maintained
1636
+
1637
+ ## 56. E-Ink / Paper
1638
+
1639
+ - **Keywords**: Paper-like, matte, high contrast, texture, reading, calm, slow tech, monochrome
1640
+ - **Primary colors**: Off-White #FDFBF7, Paper White #F5F5F5, Ink Black #1A1A1A
1641
+ - **Secondary colors**: Pencil Grey #4A4A4A, Highlighter Yellow #FFFF00 (accent)
1642
+ - **Effects**: No motion blur, distinct page turns, grain/noise texture, sharp transitions (no fade)
1643
+ - **Best for**: Reading apps, digital newspapers, minimal journals, distraction-free writing, slow-living brands
1644
+ - **Avoid for**: Gaming, video platforms, high-energy marketing, dark mode dependent apps
1645
+ - **Light mode**: ✓ Full
1646
+ - **Dark mode**: ✗ Low (inverted only)
1647
+ - **Performance**: ⚡ Excellent
1648
+ - **Accessibility**: ✓ WCAG AAA
1649
+ - **Era**: 2020s Digital Well-being
1650
+ - **Complexity**: Low
1651
+
1652
+ **AI prompt**: Design an e-ink/paper style interface. Use: high contrast black on off-white, paper texture, no animations (instant transitions), reading-focused, minimal UI chrome, distraction-free, calm aesthetic, monochrome.
1653
+
1654
+ ```css
1655
+ /* E-Ink / Paper hints */
1656
+ background: #FDFBF7 (paper white), color: #1A1A1A, transition: none, font-family: serif for reading, no gradients, border: 1px solid #E0E0E0, texture overlay (noise)
1657
+ ```
1658
+
1659
+ **Checklist**:
1660
+ - [ ] Paper background color
1661
+ - [ ] High contrast text
1662
+ - [ ] No animations
1663
+ - [ ] Reading optimized
1664
+ - [ ] Distraction-free
1665
+ - [ ] Print-friendly
1666
+
1667
+ ## 57. Gen Z Chaos / Maximalism
1668
+
1669
+ - **Keywords**: Chaos, clutter, stickers, raw, collage, mixed media, loud, internet culture, ironic
1670
+ - **Primary colors**: Clashing Brights: #FF00FF, #00FF00, #FFFF00, #0000FF
1671
+ - **Secondary colors**: Gradients, rainbow, glitch, noise, heavily saturated mix
1672
+ - **Effects**: Marquee scrolls, jitter, sticker layering, GIF overload, random placement, drag-and-drop
1673
+ - **Best for**: Gen Z lifestyle brands, music artists, creative portfolios, viral marketing, fashion
1674
+ - **Avoid for**: Corporate, government, healthcare, banking, serious tools
1675
+ - **Light mode**: ✓ Full
1676
+ - **Dark mode**: ✓ Full
1677
+ - **Performance**: ⚠ Poor (heavy assets)
1678
+ - **Accessibility**: ❌ Poor
1679
+ - **Era**: 2023+ Internet Core
1680
+ - **Complexity**: High
1681
+
1682
+ **AI prompt**: Design a Gen Z chaos maximalist interface. Use: clashing bright colors, sticker overlays, collage aesthetic, raw/unpolished feel, mixed media, ironic elements, loud typography, GIF-heavy, internet culture references.
1683
+
1684
+ ```css
1685
+ /* Gen Z Chaos / Maximalism hints */
1686
+ mix-blend-mode: multiply/screen, transform: rotate(random), animation: jitter, marquee text, position: absolute for scattered elements, filter: saturate(150%), z-index chaos
1687
+ ```
1688
+
1689
+ **Checklist**:
1690
+ - [ ] Colors clash intentionally
1691
+ - [ ] Stickers/overlays present
1692
+ - [ ] Layout chaotic but usable
1693
+ - [ ] GIFs optimized
1694
+ - [ ] Mobile scrollable
1695
+ - [ ] Performance acceptable
1696
+
1697
+ ## 58. Biomimetic / Organic 2.0
1698
+
1699
+ - **Keywords**: Nature-inspired, cellular, fluid, breathing, generative, algorithms, life-like
1700
+ - **Primary colors**: Cellular Pink #FF9999, Chlorophyll Green #00FF41, Bioluminescent Blue
1701
+ - **Secondary colors**: Deep Ocean #001E3C, Coral #FF7F50, Organic gradients
1702
+ - **Effects**: Breathing animations, fluid morphing, generative growth, physics-based movement
1703
+ - **Best for**: Sustainability tech, biotech, advanced health, meditation, generative art platforms
1704
+ - **Avoid for**: Standard SaaS, data grids, strict corporate, accounting
1705
+ - **Light mode**: ✓ Full
1706
+ - **Dark mode**: ✓ Full
1707
+ - **Performance**: ⚠ Moderate
1708
+ - **Accessibility**: ✓ Good
1709
+ - **Era**: 2024+ Generative
1710
+ - **Complexity**: High
1711
+
1712
+ **AI prompt**: Design a biomimetic organic interface. Use: cellular/fluid shapes, breathing animations, generative patterns, bioluminescent colors, physics-based movement, nature algorithms, life-like elements, flowing gradients.
1713
+
1714
+ ```css
1715
+ /* Biomimetic / Organic 2.0 hints */
1716
+ SVG morphing (SMIL or GSAP), canvas for generative, animation: breathing (scale pulse), filter: blur for organic, clip-path for cellular, WebGL for advanced, physics libraries
1717
+ ```
1718
+
1719
+ **Checklist**:
1720
+ - [ ] Organic shapes present
1721
+ - [ ] Animations feel alive
1722
+ - [ ] Generative elements
1723
+ - [ ] Performance monitored
1724
+ - [ ] Mobile fallback
1725
+ - [ ] Accessibility alt content
1726
+
1727
+ ## 59. Anti-Polish / Raw Aesthetic
1728
+
1729
+ - **Keywords**: Hand-drawn, collage, scanned textures, unfinished, imperfect, authentic, human, sketch, raw marks, creative process
1730
+ - **Primary colors**: Paper White #FAFAF8, Pencil Grey #4A4A4A, Marker Black #1A1A1A, Kraft Brown #C4A77D
1731
+ - **Secondary colors**: Watercolor washes, pencil shading, ink splatters, tape textures, aged paper tones
1732
+ - **Effects**: No smooth transitions, hand-drawn animations, paper texture overlays, jitter effects, sketch reveal
1733
+ - **Best for**: Creative portfolios, artist sites, indie brands, handmade products, authentic storytelling, editorial
1734
+ - **Avoid for**: Corporate enterprise, fintech, healthcare, government, polished SaaS
1735
+ - **Light mode**: ✓ Full
1736
+ - **Dark mode**: ✓ Full
1737
+ - **Performance**: ⚡ Excellent
1738
+ - **Accessibility**: ✓ WCAG AA
1739
+ - **Era**: 2025+ Anti-Digital
1740
+ - **Complexity**: Low
1741
+
1742
+ **AI prompt**: Design with anti-polish raw aesthetic. Use: hand-drawn elements, scanned textures, unfinished look, paper/pencil textures, collage style, authentic imperfection, sketch marks, tape/sticker overlays, human touch.
1743
+
1744
+ ```css
1745
+ /* Anti-Polish / Raw Aesthetic hints */
1746
+ background: url(paper-texture.png), filter: grayscale() contrast(), border: hand-drawn SVG, transform: rotate(small random), no smooth transitions, sketch-style fonts, opacity variations
1747
+ ```
1748
+
1749
+ **Checklist**:
1750
+ - [ ] Textures loaded
1751
+ - [ ] Hand-drawn elements present
1752
+ - [ ] Imperfections intentional
1753
+ - [ ] Authentic feel achieved
1754
+ - [ ] Performance ok with textures
1755
+ - [ ] Accessibility maintained
1756
+
1757
+ ## 60. Tactile Digital / Deformable UI
1758
+
1759
+ - **Keywords**: Jelly buttons, chrome, clay, squishy, deformable, bouncy, physical, tactile feedback, press response
1760
+ - **Primary colors**: Gradient metallics, Chrome Silver #C0C0C0, Jelly Pink #FF9ECD, Soft Blue #87CEEB
1761
+ - **Secondary colors**: Glossy highlights, shadow depth, reflection effects, material-specific colors
1762
+ - **Effects**: Press deformation (scale + squish), bounce-back (cubic-bezier), material response, haptic-like feedback, spring physics
1763
+ - **Best for**: Modern mobile apps, playful brands, entertainment, gaming UI, consumer products, interactive demos
1764
+ - **Avoid for**: Enterprise software, data dashboards, accessibility-critical, professional tools
1765
+ - **Light mode**: ✓ Full
1766
+ - **Dark mode**: ✓ Full
1767
+ - **Performance**: ⚠ Good
1768
+ - **Accessibility**: ⚠ Motion sensitive
1769
+ - **Era**: 2025+ Tactile Era
1770
+ - **Complexity**: Medium
1771
+
1772
+ **AI prompt**: Design a tactile deformable interface. Use: jelly/squishy buttons, press deformation effect, bounce-back animations, chrome/clay materials, spring physics, haptic-like feedback, material response, 3D depth on interaction.
1773
+
1774
+ ```css
1775
+ /* Tactile Digital / Deformable UI hints */
1776
+ transform: scale(0.95) on active, animation: bounce (cubic-bezier(0.34, 1.56, 0.64, 1)), box-shadow: inset for press, filter: brightness on press, spring physics (react-spring/framer-motion)
1777
+ ```
1778
+
1779
+ **Checklist**:
1780
+ - [ ] Press effect visible
1781
+ - [ ] Bounce-back smooth
1782
+ - [ ] Material feels tactile
1783
+ - [ ] Spring physics tuned
1784
+ - [ ] Mobile touch responsive
1785
+ - [ ] Reduced motion option
1786
+
1787
+ ## 61. Nature Distilled
1788
+
1789
+ - **Keywords**: Muted earthy, skin tones, wood, soil, sand, terracotta, warmth, organic materials, handmade warmth
1790
+ - **Primary colors**: Terracotta #C67B5C, Sand Beige #D4C4A8, Warm Clay #B5651D, Soft Cream #F5F0E1
1791
+ - **Secondary colors**: Earth Brown #8B4513, Olive Green #6B7B3C, Warm Stone #9C8B7A, muted gradients
1792
+ - **Effects**: Subtle parallax, natural easing (ease-out), texture overlays, grain effects, soft shadows
1793
+ - **Best for**: Wellness brands, sustainable products, artisan goods, organic food, spa/beauty, home decor
1794
+ - **Avoid for**: Tech startups, gaming, nightlife, corporate finance, high-energy brands
1795
+ - **Light mode**: ✓ Full
1796
+ - **Dark mode**: ◐ Partial
1797
+ - **Performance**: ⚡ Excellent
1798
+ - **Accessibility**: ✓ WCAG AA
1799
+ - **Era**: 2025+ Handmade Warmth
1800
+ - **Complexity**: Low
1801
+
1802
+ **AI prompt**: Design with nature distilled aesthetic. Use: muted earthy colors (terracotta, sand, olive), organic materials feel, warm tones, handmade warmth, natural textures, artisan quality, sustainable vibe, soft gradients.
1803
+
1804
+ ```css
1805
+ /* Nature Distilled hints */
1806
+ background: warm earth tones, color: #C67B5C #D4C4A8 #6B7B3C, border-radius: organic (varied), box-shadow: soft natural, texture overlays (grain), font: humanist sans-serif
1807
+ ```
1808
+
1809
+ **Checklist**:
1810
+ - [ ] Earth tones dominant
1811
+ - [ ] Warm feel achieved
1812
+ - [ ] Textures subtle
1813
+ - [ ] Handmade quality
1814
+ - [ ] Sustainable messaging
1815
+ - [ ] Calming aesthetic
1816
+
1817
+ ## 62. Interactive Cursor Design
1818
+
1819
+ - **Keywords**: Custom cursor, cursor as tool, hover effects, cursor feedback, pointer transformation, cursor trail, magnetic cursor
1820
+ - **Primary colors**: Brand-dependent, cursor accent color, high contrast for visibility
1821
+ - **Secondary colors**: Trail colors, hover state colors, magnetic zone indicators, feedback colors
1822
+ - **Effects**: Cursor scale on hover, magnetic pull to elements, cursor morphing, trail effects, blend mode cursors, click feedback
1823
+ - **Best for**: Creative portfolios, interactive experiences, agency sites, product showcases, gaming, entertainment
1824
+ - **Avoid for**: Mobile-first (no cursor), accessibility-critical, data-heavy dashboards, forms
1825
+ - **Light mode**: ✓ Full
1826
+ - **Dark mode**: ✓ Full
1827
+ - **Performance**: ⚡ Good
1828
+ - **Accessibility**: ⚠ Not for touch/SR
1829
+ - **Era**: 2025+ Interactive
1830
+ - **Complexity**: Medium
1831
+
1832
+ **AI prompt**: Design with interactive cursor effects. Use: custom cursor, cursor morphing on hover, magnetic cursor pull, cursor trails, blend mode cursors, click feedback animations, cursor as interaction tool, pointer transformation.
1833
+
1834
+ ```css
1835
+ /* Interactive Cursor Design hints */
1836
+ cursor: none (custom), position: fixed for cursor element, mix-blend-mode: difference, transform on hover targets, magnetic effect (JS position lerp), trail with opacity fade, scale on click
1837
+ ```
1838
+
1839
+ **Checklist**:
1840
+ - [ ] Custom cursor works
1841
+ - [ ] Hover morph smooth
1842
+ - [ ] Magnetic pull subtle
1843
+ - [ ] Trail performance ok
1844
+ - [ ] Click feedback visible
1845
+ - [ ] Touch fallback provided
1846
+
1847
+ ## 63. Voice-First Multimodal
1848
+
1849
+ - **Keywords**: Voice UI, multimodal, audio feedback, conversational, hands-free, ambient, contextual, speech recognition
1850
+ - **Primary colors**: Calm neutrals: Soft White #FAFAFA, Muted Blue #6B8FAF, Gentle Purple #9B8FBB
1851
+ - **Secondary colors**: Audio waveform colors, status indicators (listening/processing/speaking), success/error tones
1852
+ - **Effects**: Voice waveform visualization, listening pulse, processing spinner, speak animation, smooth transitions
1853
+ - **Best for**: Voice assistants, accessibility apps, hands-free tools, smart home, automotive UI, cooking apps
1854
+ - **Avoid for**: Visual-heavy content, data entry, complex forms, noisy environments
1855
+ - **Light mode**: ✓ Full
1856
+ - **Dark mode**: ✓ Full
1857
+ - **Performance**: ⚡ Excellent
1858
+ - **Accessibility**: ✓ Excellent
1859
+ - **Era**: 2025+ Voice Era
1860
+ - **Complexity**: Medium
1861
+
1862
+ **AI prompt**: Design a voice-first multimodal interface. Use: voice waveform visualization, listening state indicator, speaking animation, minimal visible UI, audio feedback cues, hands-free optimized, conversational flow, ambient design.
1863
+
1864
+ ```css
1865
+ /* Voice-First Multimodal hints */
1866
+ Web Speech API integration, canvas for waveform, animation: pulse for listening, status indicators (color change), audio visualization (Web Audio API), minimal chrome, large touch targets
1867
+ ```
1868
+
1869
+ **Checklist**:
1870
+ - [ ] Voice recognition works
1871
+ - [ ] Visual feedback clear
1872
+ - [ ] Listening state obvious
1873
+ - [ ] Speaking animation smooth
1874
+ - [ ] Fallback UI provided
1875
+ - [ ] Accessibility excellent
1876
+
1877
+ ## 64. 3D Product Preview
1878
+
1879
+ - **Keywords**: 360 product view, rotatable, zoomable, touch-to-spin, AR preview, product configurator, interactive 3D model
1880
+ - **Primary colors**: Product-dependent, neutral backgrounds: Soft Grey #E8E8E8, Pure White #FFFFFF
1881
+ - **Secondary colors**: Shadow gradients, reflection planes, environment lighting colors, accent highlights
1882
+ - **Effects**: Drag-to-rotate, pinch-to-zoom, spin animation, AR placement, material switching, smooth orbit controls
1883
+ - **Best for**: E-commerce, furniture, fashion, automotive, electronics, jewelry, product configurators
1884
+ - **Avoid for**: Content-heavy sites, blogs, dashboards, low-bandwidth, accessibility-critical
1885
+ - **Light mode**: ◐ Partial
1886
+ - **Dark mode**: ◐ Partial
1887
+ - **Performance**: ❌ Poor (3D rendering)
1888
+ - **Accessibility**: ⚠ Alt content needed
1889
+ - **Era**: 2025+ E-commerce 3D
1890
+ - **Complexity**: High
1891
+
1892
+ **AI prompt**: Design a 3D product preview interface. Use: 360° rotation, drag-to-spin, pinch-to-zoom, AR preview button, material/color switcher, hotspot annotations, orbit controls, product configurator, smooth rendering.
1893
+
1894
+ ```css
1895
+ /* 3D Product Preview hints */
1896
+ Three.js or model-viewer, OrbitControls, touch events for rotation, WebXR for AR, canvas with WebGL, loading placeholder, LOD for performance, environment lighting
1897
+ ```
1898
+
1899
+ **Checklist**:
1900
+ - [ ] 3D model loads fast
1901
+ - [ ] Rotation smooth
1902
+ - [ ] Zoom works (pinch/scroll)
1903
+ - [ ] AR button functional
1904
+ - [ ] Colors switchable
1905
+ - [ ] Mobile touch works
1906
+
1907
+ ## 65. Gradient Mesh / Aurora Evolved
1908
+
1909
+ - **Keywords**: Complex gradients, mesh gradients, multi-color blend, aurora effect, flowing colors, iridescent, holographic, prismatic
1910
+ - **Primary colors**: Multi-stop gradients: Cyan #00FFFF, Magenta #FF00FF, Yellow #FFFF00, Blue #0066FF, Green #00FF66
1911
+ - **Secondary colors**: Complementary mesh points, smooth color transitions, iridescent overlays, chromatic shifts
1912
+ - **Effects**: CSS mesh-gradient (experimental), SVG gradients, canvas gradients, smooth color morphing, flowing animation
1913
+ - **Best for**: Hero sections, backgrounds, creative brands, music platforms, fashion, lifestyle, premium products
1914
+ - **Avoid for**: Data interfaces, text-heavy content, accessibility-critical, conservative brands
1915
+ - **Light mode**: ✓ Full
1916
+ - **Dark mode**: ✓ Full
1917
+ - **Performance**: ⚠ Good
1918
+ - **Accessibility**: ⚠ Text contrast
1919
+ - **Era**: 2025+ Gradient Evolution
1920
+ - **Complexity**: Medium
1921
+
1922
+ **AI prompt**: Design with gradient mesh aurora effect. Use: multi-color mesh gradients, flowing color transitions, aurora/northern lights feel, iridescent overlays, holographic shimmer, prismatic effects, smooth color morphing.
1923
+
1924
+ ```css
1925
+ /* Gradient Mesh / Aurora Evolved hints */
1926
+ background: conic-gradient or mesh (SVG), animation: gradient flow (background-position), filter: hue-rotate for shimmer, mix-blend-mode: screen, canvas for complex mesh, multiple gradient layers
1927
+ ```
1928
+
1929
+ **Checklist**:
1930
+ - [ ] Mesh gradient visible
1931
+ - [ ] Colors flow smoothly
1932
+ - [ ] Aurora effect achieved
1933
+ - [ ] Performance acceptable
1934
+ - [ ] Text remains readable
1935
+ - [ ] Mobile renders ok
1936
+
1937
+ ## 66. Editorial Grid / Magazine
1938
+
1939
+ - **Keywords**: Magazine layout, asymmetric grid, editorial typography, pull quotes, drop caps, column layout, print-inspired
1940
+ - **Primary colors**: High contrast: Black #000000, White #FFFFFF, accent brand color
1941
+ - **Secondary colors**: Muted supporting, pull quote highlights, byline colors, section dividers
1942
+ - **Effects**: Smooth scroll, reveal on scroll, parallax images, text animations, page-flip transitions
1943
+ - **Best for**: News sites, blogs, magazines, editorial content, long-form articles, journalism, publishing
1944
+ - **Avoid for**: Dashboards, apps, e-commerce catalogs, real-time data, short-form content
1945
+ - **Light mode**: ✓ Full
1946
+ - **Dark mode**: ✓ Full
1947
+ - **Performance**: ⚡ Excellent
1948
+ - **Accessibility**: ✓ WCAG AAA
1949
+ - **Era**: 2020s Editorial Digital
1950
+ - **Complexity**: Low
1951
+
1952
+ **AI prompt**: Design an editorial magazine layout. Use: asymmetric grid, pull quotes, drop caps, multi-column text, large imagery, bylines, section dividers, print-inspired typography, article hierarchy, white space balance.
1953
+
1954
+ ```css
1955
+ /* Editorial Grid / Magazine hints */
1956
+ display: grid with named areas, column-count for text, ::first-letter for drop caps, blockquote styling, figure/figcaption, gap variations, font: serif for body, variable widths
1957
+ ```
1958
+
1959
+ **Checklist**:
1960
+ - [ ] Grid asymmetric
1961
+ - [ ] Typography editorial
1962
+ - [ ] Pull quotes styled
1963
+ - [ ] Drop caps present
1964
+ - [ ] Images large/impactful
1965
+ - [ ] Mobile reflows well
1966
+
1967
+ ## 67. Chromatic Aberration / RGB Split
1968
+
1969
+ - **Keywords**: RGB split, color fringing, glitch, retro tech, VHS, analog error, distortion, lens effect
1970
+ - **Primary colors**: Offset RGB: Red #FF0000, Green #00FF00, Blue #0000FF, Black #000000
1971
+ - **Secondary colors**: Neon accents, scan lines, noise overlays, error colors
1972
+ - **Effects**: RGB offset animation, glitch timing, scan line movement, noise flicker, distortion on hover
1973
+ - **Best for**: Music platforms, gaming, tech brands, creative portfolios, nightlife, entertainment, video platforms
1974
+ - **Avoid for**: Corporate, healthcare, finance, accessibility-critical, elderly users
1975
+ - **Light mode**: ✓ Full
1976
+ - **Dark mode**: ✓ Dark preferred
1977
+ - **Performance**: ⚠ Good
1978
+ - **Accessibility**: ⚠ Can cause strain
1979
+ - **Era**: 2020s Retro-Tech
1980
+ - **Complexity**: Medium
1981
+
1982
+ **AI prompt**: Design with chromatic aberration RGB split effect. Use: color channel offset (R/G/B), glitch aesthetic, retro tech feel, VHS error look, lens distortion, scan lines, noise overlay, analog imperfection.
1983
+
1984
+ ```css
1985
+ /* Chromatic Aberration / RGB Split hints */
1986
+ filter: drop-shadow with offset colors, text-shadow: RGB offset (-2px 0 red, 2px 0 cyan), animation: glitch (random offset), ::before for scanlines, mix-blend-mode: screen for overlays
1987
+ ```
1988
+
1989
+ **Checklist**:
1990
+ - [ ] RGB split visible
1991
+ - [ ] Glitch effect controlled
1992
+ - [ ] Scan lines subtle
1993
+ - [ ] Performance ok
1994
+ - [ ] Readability maintained
1995
+ - [ ] Reduced motion option
1996
+
1997
+ ## 68. Vintage Analog / Retro Film
1998
+
1999
+ - **Keywords**: Film grain, VHS, cassette tape, polaroid, analog warmth, faded colors, light leaks, vintage photography
2000
+ - **Primary colors**: Faded Cream #F5E6C8, Warm Sepia #D4A574, Muted Teal #4A7B7C, Soft Pink #E8B4B8
2001
+ - **Secondary colors**: Grain overlays, light leak oranges, shadow blues, vintage paper tones, desaturated accents
2002
+ - **Effects**: Film grain overlay, VHS tracking effect, polaroid shake, fade-in transitions, light leak animations
2003
+ - **Best for**: Photography portfolios, music/vinyl brands, vintage fashion, nostalgia marketing, film industry, cafes
2004
+ - **Avoid for**: Modern tech, SaaS, healthcare, children's apps, corporate enterprise
2005
+ - **Light mode**: ✓ Full
2006
+ - **Dark mode**: ◐ Partial
2007
+ - **Performance**: ⚡ Good
2008
+ - **Accessibility**: ✓ WCAG AA
2009
+ - **Era**: 1970s-90s Analog Revival
2010
+ - **Complexity**: Medium
2011
+
2012
+ **AI prompt**: Design with vintage analog film aesthetic. Use: film grain overlay, faded/desaturated colors, warm sepia tones, light leaks, VHS tracking effect, polaroid frame, analog warmth, nostalgic photography feel.
2013
+
2014
+ ```css
2015
+ /* Vintage Analog / Retro Film hints */
2016
+ filter: sepia() contrast() saturate(0.8), background: noise texture overlay, animation: VHS tracking (transform skew), light leak gradient overlay, border for polaroid frame, grain via SVG filter
2017
+ ```
2018
+
2019
+ **Checklist**:
2020
+ - [ ] Film grain visible
2021
+ - [ ] Colors faded/warm
2022
+ - [ ] Light leaks present
2023
+ - [ ] Nostalgic feel achieved
2024
+ - [ ] Performance with filters
2025
+ - [ ] Images look vintage
2026
+
2027
+ ## 69. Bauhaus (包豪斯)
2028
+
2029
+ - **Keywords**: bauhaus, geometric, constructivist, primary colors, hard shadow, bold, tactile, functional, poster, mechanical, architectural
2030
+ - **Primary colors**: Primary Red #D02020, Primary Blue #1040C0, Primary Yellow #F0C020
2031
+ - **Secondary colors**: Background #F0F0F0 (Off-white), Foreground #121212 (Stark Black), Muted #E0E0E0
2032
+ - **Effects**: Hard offset shadows (4px 4px 0px black), mechanical press active:translate, no smooth hover — instant 0ms transitions, dot grid pattern on sections, slide-over transitions
2033
+ - **Best for**: Mobile-first apps needing high personality, onboarding flows, branding-forward product screens, artisan/design brands, editorial mobile experiences
2034
+ - **Avoid for**: Enterprise dashboards, accessibility-critical contexts (requires extra a11y work), data-heavy screens, conservative industries
2035
+ - **Light mode**: ✓ Full
2036
+ - **Dark mode**: ◐ Partial (primary palette only)
2037
+ - **Performance**: ⚡ Excellent
2038
+ - **Accessibility**: ⚠ WCAG AA (high contrast primaries; verify yellow text separately)
2039
+ - **Era**: 1919 Bauhaus Movement
2040
+ - **Complexity**: Medium
2041
+
2042
+ **AI prompt**: Design a Bauhaus mobile app. Use strict geometric shapes (circles and squares only), primary color blocking (Red #D02020, Blue #1040C0, Yellow #F0C020), hard 4px offset black shadows, OFF-WHITE canvas (#F0F0F0), massive bold uppercase headlines (Outfit Black 900), rectangular full-width buttons with mechanical press animation. No gradients. No rounded cards. No soft transitions.
2043
+
2044
+ ```css
2045
+ /* Bauhaus (包豪斯) hints */
2046
+ border-radius: 0px (cards/inputs) or 9999px (buttons/FAB), box-shadow: 4px 4px 0px 0px #121212, active:translate-x-[2px] active:translate-y-[2px] active:shadow-none, border: 2px solid #121212, font-family: Outfit, font-weight: 900 uppercase tracking-tighter (headlines)
2047
+ ```
2048
+
2049
+ **Checklist**:
2050
+ - [ ] Geometric shapes only (circle/square)
2051
+ - [ ] Primary color blocking applied
2052
+ - [ ] Hard offset shadows 4px
2053
+ - [ ] border-2 border-black on all elements
2054
+ - [ ] Mechanical press active state
2055
+ - [ ] Outfit Black 900 uppercase headlines
2056
+ - [ ] Safe area (pt-safe pb-safe) respected
2057
+ - [ ] Thumb-friendly h-12/h-14 touch targets
2058
+ - [ ] No hover states (mobile-only)
2059
+ - [ ] Vertical rhythm single-column stack
2060
+
2061
+ ## 70. Minimalist Monochrome
2062
+
2063
+ - **Keywords**: monochrome, black white, editorial, austere, typographic, sharp, zero radius, high contrast, brutalist, pocket editorial, serif, mechanical
2064
+ - **Primary colors**: Pure Black #000000, Pure White #FFFFFF
2065
+ - **Secondary colors**: Muted #F5F5F5, Dark Gray #525252, Border Light #E5E5E5
2066
+ - **Effects**: Instant inversion active state (tap → bg-black text-white, zero transition-none), no shadows (strictly 2D), full-bleed horizontal rules (4px black section dividers), subtle paper noise texture (opacity: 0.03), slide-in page transitions with hard edge
2067
+ - **Best for**: Luxury fashion e-commerce mobile, editorial publications, high-end portfolio apps, experimental/avant-garde brands, digital exhibitions
2068
+ - **Avoid for**: Entertainment, colorful brands, friendly consumer apps, anything requiring visual warmth or gradient
2069
+ - **Light mode**: ✓ Full (Light Mode Enforced)
2070
+ - **Dark mode**: ◐ Dark by section only (inverted sections)
2071
+ - **Performance**: ⚡ Excellent
2072
+ - **Accessibility**: ✓ WCAG AAA (pure black/white)
2073
+ - **Era**: 2020s Editorial Mobile
2074
+ - **Complexity**: Medium
2075
+
2076
+ **AI prompt**: Design a minimalist monochrome mobile app. Use ONLY black (#000000) and white (#FFFFFF). Zero border-radius on every element. No shadows — depth is created by 1–4px black borders and color inversion only. Typography is the primary visual: Playfair Display for heroes (text-5xl–text-6xl, tracking-tighter, leading-[0.9]), Source Serif 4 for body, JetBrains Mono for labels/tags. Tap states instantly invert (bg-black text-white). Full-width horizontal rules separate sections. Use the word 'MENU' instead of hamburger icon.
2077
+
2078
+ ```css
2079
+ /* Minimalist Monochrome hints */
2080
+ border-radius: 0px (ALL elements including modals), box-shadow: none, active:bg-black active:text-white transition-none, border-b-4 border-black (section dividers), divide-y divide-black (lists), font-family: Playfair Display (headers) + Source Serif 4 (body) + JetBrains Mono (labels), background-image: noise SVG opacity-[0.03]
2081
+ ```
2082
+
2083
+ **Checklist**:
2084
+ - [ ] 0px border-radius on ALL elements
2085
+ - [ ] No shadows anywhere
2086
+ - [ ] Instant inversion on every tap (transition-none)
2087
+ - [ ] 4px black line separates hero from content
2088
+ - [ ] Safe area respected (pt-safe pb-safe)
2089
+ - [ ] h-14 touch targets
2090
+ - [ ] Sticky section headers with border-b
2091
+ - [ ] Typography hero: word spans full screen width
2092
+ - [ ] Paper noise texture on backgrounds
2093
+ - [ ] Menu word-label instead of icon
2094
+
2095
+ ## 71. Modern Dark (Cinema Mobile)
2096
+
2097
+ - **Keywords**: dark mode, cinematic, ambient light, glassmorphism, deep black, indigo, glow, blur, atmospheric, reanimated, haptic, premium, layered, frosted glass, linear gradient
2098
+ - **Primary colors**: Deep #020203, Base #050506, Elevated #0a0a0c, Accent #5E6AD2
2099
+ - **Secondary colors**: Foreground #EDEDEF, Muted #8A8F98, Accent Glow rgba(94 106 210/0.2), Border rgba(255 255 255/0.08), Surface rgba(255 255 255/0.05)
2100
+ - **Effects**: Expo.out Bezier(0.16,1,0.3,1) easing; spring modals (damping:20 stiffness:90); haptic-linked press (Impact Light/Medium); animated ambient light blobs (Reanimated translateX/Y slow oscillation); BlurView glassmorphism headers/nav (intensity 20); scale press 0.97 → 1.0; avoid pure #000000 (OLED smear)
2101
+ - **Best for**: Developer tools, pro productivity apps, fintech/trading dashboards, media/streaming platforms, AI tool interfaces, high-end gaming companion apps
2102
+ - **Avoid for**: Consumer apps needing warmth, children's apps, health/medical contexts where dark feels harsh, high-accessibility contexts needing maximum contrast
2103
+ - **Light mode**: ✓ Light mode only as exception
2104
+ - **Dark mode**: ✓ Dark Mode Primary
2105
+ - **Performance**: ⚠ Good (blur effects require native driver)
2106
+ - **Accessibility**: ⚠ WCAG AA (requires careful accent contrast check)
2107
+ - **Era**: 2020s Cinematic Mobile
2108
+ - **Complexity**: High
2109
+
2110
+ **AI prompt**: Design a cinematic dark mobile app. Background: LinearGradient from #0a0a0f (top) to #020203 (bottom). Add 2–3 absolute animated 'blob' views: circular, blurRadius 30–50, opacity 0.08–0.12, slow Reanimated oscillation. Cards: borderRadius 16, border rgba(255,255,255,0.08) hairline, subtle top-edge shine gradient. Primary button: #5E6AD2, scale press 0.97, haptic on press. BlurView (intensity 20, tint dark) for tab bar and headers. Typography: Inter 700 for headers, 400 for body. Never use pure #000000. Accent glow: rgba(94,106,210,0.2) behind primary actions.
2111
+
2112
+ ```css
2113
+ /* Modern Dark (Cinema Mobile) hints */
2114
+ borderRadius: 16 (cards/buttons), background: LinearGradient #0a0a0f→#020203, border: StyleSheet.hairlineWidth rgba(255,255,255,0.08), BlurView intensity={20} tint='dark', useAnimatedStyle + withRepeat (blob oscillation), Easing.bezier(0.16,1,0.3,1), withSpring damping:20 stiffness:90, Haptics.impactAsync(ImpactFeedbackStyle.Light), scale: 0.97 press
2115
+ ```
2116
+
2117
+ **Checklist**:
2118
+ - [ ] No pure #000000 backgrounds
2119
+ - [ ] LinearGradient base screen
2120
+ - [ ] Animated ambient blobs (Reanimated
2121
+ - [ ] native driver)
2122
+ - [ ] BlurView on tab bar and headers
2123
+ - [ ] borderRadius 16 on all cards
2124
+ - [ ] Haptic feedback on every Pressable
2125
+ - [ ] Bezier(0.16
2126
+ - [ ] 1
2127
+ - [ ] 0.3
2128
+ - [ ] 1) easing used
2129
+ - [ ] Accent glow behind primary button
2130
+ - [ ] No solid grey borders (rgba only)
2131
+ - [ ] Bottom sheets replace all modals
2132
+
2133
+ ## 72. SaaS Mobile (High-Tech Boutique)
2134
+
2135
+ - **Keywords**: saas, electric blue, gradient, fintech, spring animation, dual font, glassmorphism, boutique, premium, calistoga, inter, mono, tactile, haptic, bento
2136
+ - **Primary colors**: Electric Blue #0052FF, Gradient End #4D7CFF
2137
+ - **Secondary colors**: Background #FAFAFA, Foreground #0F172A, Muted #F1F5F9, Card #FFFFFF, Border #E2E8F0
2138
+ - **Effects**: Spring animations (mass:1 damping:15 stiffness:120); gradient buttons (0052FF→4D7CFF); scale press 0.96→1.0 with haptics; floating FAB with gentle bobbing (Reanimated); glassmorphism BlurView navigation bars; staggered fade-in entrance (Y:20→0 + opacity:0→1); pulsing status dot on section badges; layout transitions (LayoutAnimation or Reanimated entering)
2139
+ - **Best for**: B2B SaaS mobile dashboards, fintech apps, developer tool mobile companions, marketing analytics apps, HR/operations apps, modern business productivity
2140
+ - **Avoid for**: Pure consumer entertainment, children's apps, highly decorative lifestyle apps, contexts where Electric Blue feels too corporate
2141
+ - **Light mode**: ✓ Full
2142
+ - **Dark mode**: ◐ Partial
2143
+ - **Performance**: ⚡ Excellent
2144
+ - **Accessibility**: ✓ WCAG AA
2145
+ - **Era**: 2020s SaaS Mobile
2146
+ - **Complexity**: Medium
2147
+
2148
+ **AI prompt**: Design a high-tech boutique SaaS mobile app. Primary canvas: #FAFAFA (warm off-white). Cards: #FFFFFF with 1pt Slate-200 border, iOS shadow (shadowOpacity:0.1, shadowRadius:10, offset y:4), Android elevation:4, padding 24px, borderRadius 16. Buttons: LinearGradient #0052FF→#4D7CFF, height 56px, borderRadius 16, scale press 0.96 + haptic. Section badges: rounded pill with rgba(0,82,255,0.05) bg and rgba(0,82,255,0.2) border + PulseDot + JetBrains Mono text. Typography: Calistoga for heroes (36–42pt), Inter for body (16–18pt), JetBrains Mono for data labels. All screen transitions: spring (mass:1 damping:15 stiffness:120). Always include SafeAreaView.
2149
+
2150
+ ```css
2151
+ /* SaaS Mobile (High-Tech Boutique) hints */
2152
+ borderRadius: 16 (buttons/cards), LinearGradient colors={['#0052FF','#4D7CFF']}, shadowOpacity: 0.1, shadowRadius: 10, elevation: 4, Haptics.impactAsync(ImpactFeedbackStyle.Light) on press, withSpring({mass:1, damping:15, stiffness:120}), withTiming Y:20→0 opacity:0→1 staggered entrance, LayoutAnimation.configureNext for list updates, BlurView on nav bars
2153
+ ```
2154
+
2155
+ **Checklist**:
2156
+ - [ ] SafeAreaView wraps all screens
2157
+ - [ ] All touch targets ≥ 44×44px
2158
+ - [ ] Spring config used for all transitions
2159
+ - [ ] Gradient buttons (not flat)
2160
+ - [ ] Haptic on every Pressable
2161
+ - [ ] Section badges with PulseDot
2162
+ - [ ] Staggered entrance animation on screen mount
2163
+ - [ ] JetBrains Mono for data labels
2164
+ - [ ] Calistoga for hero headlines
2165
+ - [ ] Elevation/shadow on cards
2166
+
2167
+ ## 73. Terminal CLI (Mobile)
2168
+
2169
+ - **Keywords**: terminal, cli, matrix green, monospace, hacker, ascii, command line, developer, web3, crypto, sci-fi, OLED, retro-future, field operative
2170
+ - **Primary colors**: Matrix Green #33FF00, OLED Black #050505
2171
+ - **Secondary colors**: Amber #FFB000, Muted Green #1A3D1A, Error Red #FF3333, Border Green #33FF00
2172
+ - **Effects**: Blinking cursor (500ms opacity loop), typewriter text reveal hook, scanline overlay (repeating lines 0.05 opacity), ASCII art headers, instant color inversion on press (bg-green text-black), haptic on every keystroke, boot sequence splash on launch
2173
+ - **Best for**: Developer tools, Web3/blockchain apps, geek-culture apps, ARG games, sci-fi/noir gaming companions, hacker/security tools, creative studio portfolios
2174
+ - **Avoid for**: Consumer products, health apps, anything requiring approachability or warmth, children's apps, standard enterprise contexts
2175
+ - **Light mode**: ✗ No
2176
+ - **Dark mode**: ✓ OLED Dark Only
2177
+ - **Performance**: ⚡ Excellent
2178
+ - **Accessibility**: ✓ High contrast (green on black ≫4.5:1 ratio)
2179
+ - **Era**: Retro-Future 1980s–2020s
2180
+ - **Complexity**: Medium
2181
+
2182
+ **AI prompt**: Design a Mobile Terminal CLI app. Background: #050505 OLED black. ALL text in Matrix Green #33FF00. Font: JetBrains Mono or SpaceMono ONLY — zero border-radius everywhere. ASCII borders using +, -, |, * characters instead of standard containers. Buttons displayed as [ EXECUTE ] or > PROCEED. On press: instantly inverts to green bg + black text + haptic. Cursor: blinking View opacity 0→1 at 500ms. Show boot sequence on launch (fake log scroll). Progress bars as [#####-----] text. Status bar footer: [BATTERY:88%] [NET:CONNECTED]. Scanline overlay: absolute View with repeating 1px horizontal lines at opacity 0.05. Typewriter effect on new data.
2183
+
2184
+ ```css
2185
+ /* Terminal CLI (Mobile) hints */
2186
+ borderRadius: 0 (ALL elements), borderWidth: 1, borderColor: '#33FF00', backgroundColor: '#050505', color: '#33FF00', fontFamily: 'SpaceMono-Regular' or JetBrains Mono, fontSize: 12 or 14 or 16 only, lineHeight: 1.2x fontSize, Haptics.impactAsync(Light) on every press, useAnimatedValue blink 500ms, hitSlop: 12px all sides for bracketed buttons
2187
+ ```
2188
+
2189
+ **Checklist**:
2190
+ - [ ] 0px border-radius everywhere
2191
+ - [ ] ASCII-style borders on cards
2192
+ - [ ] Boot sequence on launch
2193
+ - [ ] Blinking cursor component
2194
+ - [ ] Typewriter hook for new content
2195
+ - [ ] Scanline overlay (0.05 opacity)
2196
+ - [ ] Haptic on every button press
2197
+ - [ ] Footer status bar component
2198
+ - [ ] hitSlop on all bracketed buttons (44×44dp)
2199
+ - [ ] Reduced motion respected
2200
+
2201
+ ## 74. Kinetic Brutalism (Mobile)
2202
+
2203
+ - **Keywords**: kinetic, brutalism, motion, marquee, acid yellow, uppercase, oversized, aggressive typography, street, zine, high contrast, scroll-driven, haptic, reanimated
2204
+ - **Primary colors**: Acid Yellow #DFE104, Rich Black #09090B
2205
+ - **Secondary colors**: Off-white #FAFAFA, Dark Gray #27272A, Zinc #A1A1AA, Border Zinc #3F3F46
2206
+ - **Effects**: Infinite marquee (Reanimated, Linear easing, 5s loop, hard clip), hero parallax (scale 1.0→1.3 + fade), sticky section header push, card flood inversion on press (bg→#DFE104, text→#000000), haptic Medium on every press, scroll-triggered interpolate transforms, 0px radius, 2px borders, 100ms color transitions
2207
+ - **Best for**: Immersive storytelling apps, brand flagship mobile, music/culture platforms, sports apps, underground zines, limited-edition product drops, performance dashboards
2208
+ - **Avoid for**: Calm informational apps, healthcare, finance contexts needing trust, children's, any context where aggressive typography feels inappropriate
2209
+ - **Light mode**: ✓ Dark Primary
2210
+ - **Dark mode**: ◐ Dark only (inverted sections)
2211
+ - **Performance**: ⚡ Excellent (native driver required)
2212
+ - **Accessibility**: ⚠ WCAG AA (verify zinc body text on dark bg)
2213
+ - **Era**: 2020s Mobile Brutalism
2214
+ - **Complexity**: High
2215
+
2216
+ **AI prompt**: Design a Kinetic Brutalism mobile app. Canvas: #09090B. Primary accent: Acid Yellow #DFE104 (text: #000000). Typography: Space Grotesk BOLD. Display text: 60–120pt, uppercase, letterSpacing -1, lineHeight 0.9–1.1x. Body: 18–20pt. Labels: 12pt uppercase letterSpacing +2. Add infinite marquee rows (Reanimated, no easing, hard edge clip). Hero text parallax on scroll (Interpolate: scale 1.0→1.3, opacity 1→0). Card press: instantly flood to #DFE104 + flip text to #000. Haptic Medium on every press. 0px radius. 2px solid borders. NO shadows. No gradients. Scale all fonts by (windowWidth / 375 * size) for responsiveness.
2217
+
2218
+ ```css
2219
+ /* Kinetic Brutalism (Mobile) hints */
2220
+ borderRadius: 0, borderWidth: 2, borderColor: '#3F3F46', backgroundColor: '#09090B', color: '#FAFAFA', fontWeight: '800 or 900', letterSpacing: -1 (large) or 2 (labels), lineHeight: 0.9–1.1 * fontSize, Reanimated withRepeat marquee timing 5000ms Easing.linear, Interpolate scroll→scale + opacity, Haptics.impactAsync(Medium), scale press: 0.95, 100ms color transitions
2221
+ ```
2222
+
2223
+ **Checklist**:
2224
+ - [ ] Infinite marquee rows (Reanimated
2225
+ - [ ] no fade edges)
2226
+ - [ ] Hero parallax scroll (scale+opacity Interpolate)
2227
+ - [ ] All display text uppercase
2228
+ - [ ] 0px border-radius
2229
+ - [ ] 2px borders
2230
+ - [ ] Acid yellow card flood on press
2231
+ - [ ] Haptic Medium on every interaction
2232
+ - [ ] Font scale helper (windowWidth/375*size)
2233
+ - [ ] Safe area for massive headers
2234
+ - [ ] Reduced motion stops marquees
2235
+
2236
+ ## 75. Flat Design Mobile (Touch-First)
2237
+
2238
+ - **Keywords**: flat, 2D, no shadow, color blocking, geometric, bold, poster, icon, touch-first, minimal, clean, tailored, cross-platform
2239
+ - **Primary colors**: Blue #3B82F6, Emerald #10B981
2240
+ - **Secondary colors**: Background #FFFFFF, Surface #F3F4F6, Text #111827, Amber #F59E0B, Border #E5E7EB
2241
+ - **Effects**: Immediate press feedback (scale 0.97, no delay), color section blocking (full-width contrasting View), zero elevation/shadow, solid icon containers (colored squares/circles), geometric low-opacity shape overlays, bottom tabs solid fill (no floating)
2242
+ - **Best for**: Cross-platform apps (iOS+Android parity), information-dense dashboards, system UI, brand illustration, onboarding flows, marketing pages, icon design
2243
+ - **Avoid for**: Ultra-premium contexts needing depth/shadow, dark-mode-first products, contexts where flat design reads as unfinished or sterile
2244
+ - **Light mode**: ✓ Full
2245
+ - **Dark mode**: ◐ Partial (Dark mode via color swap only)
2246
+ - **Performance**: ⚡ Excellent (no GPU effects)
2247
+ - **Accessibility**: ✓ WCAG AA (large bold type helps)
2248
+ - **Era**: 2010s–2020s Flat Mobile
2249
+ - **Complexity**: Low
2250
+
2251
+ **AI prompt**: Design a Flat Mobile app. NO shadows (shadowOpacity: 0, elevation: 0). Color creates all hierarchy. Sections: full-width View blocks alternating contrasting bg colors (Blue Hero → White Content → Gray Block). Buttons: solid #3B82F6, borderRadius 8, height 56. Cards: backgroundColor #FFFFFF (on gray bg) or #DBEAFE (blue tint) — no shadow. Text: fontWeight 800 letterSpacing -0.5 (heads), 600 (sub), 400 (body). Inputs: #F3F4F6 bg, focused: borderWidth 2 borderColor #3B82F6. Icons: Lucide strokeWidth 2.5 inside solid colored square/circle. Press feedback: scale 0.97 Pressable. Use position absolute low-opacity geometric shapes (circles, rotated squares) as background decoration.
2252
+
2253
+ ```css
2254
+ /* Flat Design Mobile (Touch-First) hints */
2255
+ shadowOpacity: 0, elevation: 0, borderRadius: 6/12/999, height: 48 minimum touch targets, spacing: 4/8/16/24/32/48 system, backgroundColor (section blocking), Pressable scale: pressed ? 0.97 : 1, fontWeight: '800' heads / '600' sub / '400' body, letterSpacing: -0.5 heads / 1 labels, textTransform: 'uppercase' labels, strokeWidth={2.5} icons, borderWidth: 3/4 for featured CTAs
2256
+ ```
2257
+
2258
+ **Checklist**:
2259
+ - [ ] Zero elevation AND shadowOpacity on all elements
2260
+ - [ ] Color-blocking sections (not borders)
2261
+ - [ ] All touch targets ≥ 48×48
2262
+ - [ ] No gradients on flat elements
2263
+ - [ ] Icons inside solid colored containers
2264
+ - [ ] Pressable scale feedback
2265
+ - [ ] Geometric shapes as bg decoration
2266
+ - [ ] Bold flat bottom tabs (no floating)
2267
+ - [ ] Primary headlines much larger than body
2268
+ - [ ] 4pt spacing system throughout
2269
+
2270
+ ## 76. Material You (MD3 Mobile)
2271
+
2272
+ - **Keywords**: material design 3, md3, tonal surfaces, pills, soft curves, android, md3 easing, state layers, haptic, fab, google
2273
+ - **Primary colors**: Primary Violet #6750A4, Secondary Container #E8DEF8, Tertiary #7D5260
2274
+ - **Secondary colors**: Surface #FFFBFE, On Surface #1C1B1F, Surface Container #F3EDF7, Outline #79747E
2275
+ - **Effects**: Tonal elevation (overlay colors instead of strong shadows), pill-shaped buttons and chips (borderRadius 999), emphasized easing Easing.bezier(0.2,0,0,1), state layers (pressed overlays 10–15% opacity), Reanimated-filled label float for inputs, HapticFeedback on FAB/toggles
2276
+ - **Best for**: Android ecosystem apps, cross-platform productivity tools, MD3-based admin panels, data-heavy back-office UI with Material UI
2277
+ - **Avoid for**: Ultra-minimal brutalist brands, terminal/hacker aesthetics, monochrome editorial apps
2278
+ - **Light mode**: ✓ Full
2279
+ - **Dark mode**: ✓ Full
2280
+ - **Performance**: ⚠ Good (requires gradients and overlays)
2281
+ - **Accessibility**: ✓ WCAG AA (with MD3 token checks)
2282
+ - **Era**: Material Design 3
2283
+ - **Complexity**: Medium
2284
+
2285
+ **AI prompt**: Design a Material You (MD3) mobile app. Use #FFFBFE background, #6750A4 primary, #E8DEF8 secondary container, #F3EDF7 surface container. All interactive elements are pill-shaped (borderRadius: 999). Buttons use Pressable with scale: 0.95 on press and state-layer overlays (black 10% or primary 12%). Inputs use filled M3 style: background #E7E0EC with floating label animation on focus. Elevation is tonal (layering containers) plus light shadow/elevation on Android. Animations use emphasized easing (0.2,0,0,1) at 100–400ms. FABs are tertiary-colored rounded squares/circles with level 3 elevation.
2286
+
2287
+ ```css
2288
+ /* Material You (MD3 Mobile) hints */
2289
+ borderRadius: 999 (buttons/chips), containerRadius: 16–28, backgroundColor: '#FFFBFE', colorPrimary: '#6750A4', colorSecondaryContainer: '#E8DEF8', colorSurfaceContainer: '#F3EDF7', outlineColor: '#79747E', Pressable state-layer overlay (opacity 0.1–0.15), Easing.bezier(0.2,0,0,1), HapticFeedback.impactMedium on FAB, floating label using Reanimated translateY/scale
2290
+ ```
2291
+
2292
+ **Checklist**:
2293
+ - [ ] MD3 color tokens applied (background/surface/container)
2294
+ - [ ] All CTAs are pill-shaped
2295
+ - [ ] State-layer overlays instead of opacity 0.5 hacks
2296
+ - [ ] Emphasized easing used for all animations
2297
+ - [ ] Floating label inputs implemented
2298
+ - [ ] FAB uses tertiary color with correct elevation
2299
+ - [ ] Safe areas respected for organic shapes
2300
+ - [ ] No pure white background
2301
+ - [ ] No harsh box-shadows (ambient only)
2302
+
2303
+ ## 77. Neo Brutalism (Mobile)
2304
+
2305
+ - **Keywords**: neo brutalism, pop art, stickers, thick borders, cream background, hot red, vivid yellow, soft violet, hard offset shadow, mechanical press, collage
2306
+ - **Primary colors**: Cream #FFFDF5, Hot Red #FF6B6B, Vivid Yellow #FFD93D
2307
+ - **Secondary colors**: Soft Violet #C4B5FD, Pure Black #000000, White #FFFFFF
2308
+ - **Effects**: Thick 4px black borders on all major elements, hard offset shadows (4–8px, no blur), mechanical press: translateX/Y equal to shadow offset, slightly rotated cards/badges (-2deg/2deg), high-saturation color blocking, spring/linear animations only
2309
+ - **Best for**: Creative tools, collab platforms, Gen Z marketing & e-commerce, portfolio sites, sticker-book style content apps
2310
+ - **Avoid for**: Serious enterprise apps, conservative industries, sober fintech, accessibility-first contexts (must tune contrast)
2311
+ - **Light mode**: ✓ Light-first
2312
+ - **Dark mode**: ✗ Dark
2313
+ - **Performance**: ⚠ Moderate (shadows + transforms)
2314
+ - **Accessibility**: ⚠ Requires careful contrast tuning
2315
+ - **Era**: 2020s Neo-Brutalism
2316
+ - **Complexity**: High
2317
+
2318
+ **AI prompt**: Design a Mobile Neo-Brutalist app. Background: Cream #FFFDF5. All content blocks: white or violet with borderWidth 4 borderColor #000. Shadows are solid offset blocks (no blur) using an extra View behind offset by 4px or 8px. Typography: Space Grotesk Bold/Black only (700–900). Buttons: 56px tall, 4px border, 0 radius; press animation translates button to cover the shadow. Cards slightly rotated (-1deg, 2deg). Colors: Hot Red #FF6B6B for primary, Yellow #FFD93D for focus/badges, Soft Violet #C4B5FD as tertiary. Animation: spring/linear only, no ease-out luxury motion.
2319
+
2320
+ ```css
2321
+ /* Neo Brutalism (Mobile) hints */
2322
+ borderWidth: 4 (primary), 2 (secondary), borderRadius: 0 or 999 (badges only), backgroundColor: '#FFFDF5', shadow implemented as offset View, transform: [{translateX:4},{translateY:4}] on PressIn, fontFamily: 'SpaceGrotesk-Bold', fontWeight: '700/900', transform: [{ rotate: '-1deg' }] on cards, padding: 20,☐ 4px borders on major elements
2323
+ ```
2324
+
2325
+ **Checklist**:
2326
+ - [ ] Hard offset shadow implemented via extra View
2327
+
2328
+ ## 78. Bold Typography (Mobile Poster)
2329
+
2330
+ - **Keywords**: bold typography, editorial, poster, broadsheet, vermillion, negative space, edge-to-edge type, underline CTA, near-black, warm white
2331
+ - **Primary colors**: Near Black #0A0A0A, Warm White #FAFAFA
2332
+ - **Secondary colors**: Muted #1A1A1A, Secondary Text #737373, Accent Vermillion #FF3D00, Border #262626
2333
+ - **Effects**: Hero headlines 48–72px (5:1 vs body size), tight tracking (-1.5px), edge-to-edge type, massive vertical spacing (60px+), underline CTAs (2–3px accent line), instant 200ms transitions (no bounce), strictly 0px radius containers, color shifts for active state instead of elevation
2334
+ - **Best for**: Creative brand heroes, reading-focused apps, event/exhibition pages, editorial mobile experiences, landing hero sections
2335
+ - **Avoid for**: Utility dashboards, kids apps, playful consumer products, contexts needing many icons or heavy imagery
2336
+ - **Light mode**: ✓ Dark Mode Primary
2337
+ - **Dark mode**: ◐ Light sections optional
2338
+ - **Performance**: ⚡ Excellent
2339
+ - **Accessibility**: ✓ Contrast 18:1 achievable
2340
+ - **Era**: Editorial 2020s
2341
+ - **Complexity**: Medium
2342
+
2343
+ **AI prompt**: Design a Bold Typography mobile screen. Background #0A0A0A, text #FAFAFA, accent #FF3D00. Use Inter Tight/Inter 600+ for all type; JetBrains Mono for labels. Headline: 56–72px, tracking -1.5, lineHeight 1.1, full-bleed width with slight bleed off-screen. Body: 16–18px, leading 1.6. Buttons: underline CTA (accent text + 2px underline block), or inverted box with 0 radius. No shadows, no rounded corners. Layout: single column, paddingHorizontal 24, vertical gaps 64 between sections. Animation: 200ms, Easing.bezier(0.25,0,0,1), slight slide-up 10px + fade on mount.
2344
+
2345
+ ```css
2346
+ /* Bold Typography (Mobile Poster) hints */
2347
+ backgroundColor: '#0A0A0A', color: '#FAFAFA', accent: '#FF3D00', borderColor: '#262626', borderRadius: 0, paddingHorizontal: 24, headline style: fontSize:56–72, fontWeight:'700/800', letterSpacing:-1.5, lineHeight:1.1*fontSize, body: fontSize:16–18, lineHeight:1.6*fontSize, underline CTA: 2–3px height View under text, transition: 200ms cubic-bezier(0.25,0,0,1)
2348
+ ```
2349
+
2350
+ **Checklist**:
2351
+ - [ ] H1 at least 4–5× body size
2352
+ - [ ] All containers 0 radius
2353
+ - [ ] Underline CTA pattern used
2354
+ - [ ] Large vertical gaps between sections
2355
+ - [ ] No shadows or soft corners
2356
+ - [ ] Accent used only for interaction
2357
+ - [ ] Text bleeds to/over screen edges
2358
+ - [ ] Animation timings 200ms
2359
+ - [ ] Accessible contrast ≥ 18:1
2360
+ - [ ] Body text never below 16px
2361
+
2362
+ ## 79. Academia (Scholarly Mobile)
2363
+
2364
+ - **Keywords**: academia, library, mahogany, parchment, brass, crimson, serif, drop cap, arch-top, vignette, leather, scholarly, tactile
2365
+ - **Primary colors**: Mahogany #1C1714, Oak #251E19
2366
+ - **Secondary colors**: Parchment #E8DFD4, Worn Leather #3D332B, Faded Ink #9C8B7A, Brass #C9A962, Library Crimson #8B2635
2367
+ - **Effects**: Deep mahogany backgrounds, oak surface cards, brass accented CTAs, arch-top hero/imagery, heavy vignette overlays, sepia-tinted images, drop caps with brass Cinzel, Roman numeral volume headings, slow timing-based animations (Easing.out poly(4)), zero neon or modern tech cues
2368
+ - **Best for**: Knowledge management apps, deep reading tools, ritual-heavy personal brands, lore-heavy RPG/roleplay apps, culture-specific community platforms
2369
+ - **Avoid for**: Hyper-modern tech dashboards, neon/glassmorphism, playful Gen Z branding
2370
+ - **Light mode**: ✓ Dark Rich
2371
+ - **Dark mode**: ◐ Light parchment sections
2372
+ - **Performance**: ⚠ Moderate (vignette + shadows)
2373
+ - **Accessibility**: ✓ Legible (serif optimized)
2374
+ - **Era**: Timeless Scholarly
2375
+ - **Complexity**: High
2376
+
2377
+ **AI prompt**: Design a Scholarly Academia mobile app. Background #1C1714 (mahogany), alt surfaces #251E19 (oak), text #E8DFD4 (parchment). Accent brass #C9A962 for CTAs + borders; crimson #8B2635 for wax seals. Typography: Cormorant Garamond (headings), Crimson Pro (body), Cinzel (labels/overlines). Use arch-top hero containers (borderTopRadius 100). Cards: oak bg, 1px wood-grain border. Inputs: worn-leather background, brass focus border. Global vignette overlay and ornate brass dividers (Unicode glyph + gradient line). Animations: no spring, only Timing with Easing.out(Easing.poly(4)).
2378
+
2379
+ ```css
2380
+ /* Academia (Scholarly Mobile) hints */
2381
+ backgroundColor: '#1C1714', altSurface: '#251E19', textColor: '#E8DFD4', mutedBg: '#3D332B', borderColor: '#4A3F35', brass: '#C9A962', crimson: '#8B2635', borderRadius: 4 (default), archTopRadius: 100 for hero, shadowOpacity:0.4 shadowRadius:6 elevation:8 for cards, textShadow on headings, vignette overlay via LinearGradient
2382
+ ```
2383
+
2384
+ **Checklist**:
2385
+ - [ ] Mahogany/oak/parchment palette applied
2386
+ - [ ] Brass used on all tappable items
2387
+ - [ ] Arch-top imagery used in hero/cards
2388
+ - [ ] Drop caps & Roman numerals used
2389
+ - [ ] Vignette overlay present
2390
+ - [ ] No sans-serif body fonts
2391
+ - [ ] No neon/bright modern colors
2392
+ - [ ] Animations use non-spring timing
2393
+ - [ ] Inputs use worn-leather style
2394
+ - [ ] Wax seal badges implemented
2395
+
2396
+ ## 80. Cyberpunk Mobile HUD
2397
+
2398
+ - **Keywords**: cyberpunk, neon, glitch, chamfered, orbitron, jetbrains, scanlines, crt, hud, matrix, military, decker
2399
+ - **Primary colors**: Void #0A0A0F, Card #12121A
2400
+ - **Secondary colors**: Neon Green #00FF88, Neon Magenta #FF00FF, Cyber Cyan #00D4FF, Neutral Text #E0E0E0, Alert Red #FF3366, Border #2A2A3A
2401
+ - **Effects**: Deep void background with neon radiance, chamfered 45° corners via SVG/Skia, scanline overlay, CRT flicker opacity oscillation, glitch animations (translateX ±2), neon pulses around buttons, HUD corner brackets, terminal prompt text inputs, heavy use of blurView holographic panels
2402
+ - **Best for**: Gaming dashboards, crypto/cyberpunk apps, sci-fi companion tools, hacker OS skins, data-heavy monitoring HUDs
2403
+ - **Avoid for**: Serious enterprise, health/finance requiring calm trust, minimal editorial apps
2404
+ - **Light mode**: ✗ Light
2405
+ - **Dark mode**: ✓ Dark-only
2406
+ - **Performance**: ⚠ Moderate–Heavy (Skia/blur/animations)
2407
+ - **Accessibility**: ⚠ Requires careful reduced-motion handling
2408
+ - **Era**: Cyber-Noir
2409
+ - **Complexity**: High
2410
+
2411
+ **AI prompt**: Design a Cyberpunk mobile HUD. Background #0A0A0F, card #12121A. Accents: #00FF88 (primary), #FF00FF, #00D4FF. Typography: Orbitron for headings, JetBrains Mono for data. All shapes use chamfered corners via SVG or Skia clipPath. Buttons: neon glow shadows, scale 0.98 + haptic on press, optional glitch jitter on active. Global scanline overlay (semi-transparent horizontal lines) and CRT flicker (root opacity 0.98–1). Inputs: prompt style with '>' in accent, custom blinking block cursor. HUD cards use corner brackets and subtle gradients.
2412
+
2413
+ ```css
2414
+ /* Cyberpunk Mobile HUD hints */
2415
+ backgroundColor: '#0A0A0F', cardBg: '#12121A', accent: '#00FF88', accent2: '#FF00FF', accent3: '#00D4FF', borderColor: '#2A2A3A', destructive: '#FF3366', borderRadius: 0, chamfer via SVG path, shadowColor accent with animated radius, scanline overlay View pointerEvents='none', withRepeat glitch translateX [-2,2,0], Easing.steps(2)
2416
+ ```
2417
+
2418
+ **Checklist**:
2419
+ - [ ] Chamfered corners used instead of radius
2420
+ - [ ] Scanline & CRT flicker implemented
2421
+ - [ ] Orbitron + JetBrains Mono typography
2422
+ - [ ] Neon glow shadows on primary buttons
2423
+ - [ ] Glitch animation on active states
2424
+ - [ ] Prompt-style inputs with custom cursor
2425
+ - [ ] HUD corner brackets implemented
2426
+ - [ ] Safe-area system status bar styled
2427
+ - [ ] Reduced motion disables glitch/flicker
2428
+ - [ ] Icons configured with Lucide accent color
2429
+
2430
+ ## 81. Bitcoin DeFi (Mobile)
2431
+
2432
+ - **Keywords**: web3, bitcoin, defi, digital gold, fintech, wallet, orange, glassmorphism, gradient, blur, holographic, trust, precision
2433
+ - **Primary colors**: Bitcoin Orange #F7931A, Burnt Orange #EA580C, Digital Gold #FFD600
2434
+ - **Secondary colors**: Void #030304, Dark Matter #0F1115, Pure Light #FFFFFF, Stardust #94A3B8, Border Dim rgba(30,41,59,0.2)
2435
+ - **Effects**: Deep void + dark matter surfaces, Bitcoin orange/gold gradients for CTAs, pill buttons with glowing shadows, glassmorphic BlurView nav, monospace data rows, gradient text balances + masked orange-gold, pulsing status indicators and vertical ledger timelines, ultra-thin borders, high-precision typography
2436
+ - **Best for**: DeFi dashboards, wallets, NFT marketplaces, Web3 social, metaverse utilities, high-tech fintech brands
2437
+ - **Avoid for**: Playful casual apps, low-tech brands, ultra-minimal editorial apps
2438
+ - **Light mode**: ✗ Light
2439
+ - **Dark mode**: ✓ Dark-only
2440
+ - **Performance**: ⚠ Moderate (gradients+blur)
2441
+ - **Accessibility**: ✓ WCAG AA with care
2442
+ - **Era**: Fintech/Web3
2443
+ - **Complexity**: High
2444
+
2445
+ **AI prompt**: Design a Bitcoin DeFi mobile app. Background #030304, cards #0F1115, text #FFFFFF, muted #94A3B8. Primary CTA: LinearGradient #EA580C→#F7931A with orange glow shadow. Typography: Space Grotesk Bold for headings, Inter for body, JetBrains Mono for prices/hashes. Use BlurView (intensity 20) for nav bars and floating panels. Cards as 'blocks' with hairline borders and light orange glow on active. Use grid background (low-opacity 50px grid). Gradient text for key balances via MaskedView and LinearGradient orange→gold. Status indicators pulse using Reanimated. Ledger timelines drawn as vertical gradient line with pulsing dots.
2446
+
2447
+ ```css
2448
+ /* Bitcoin DeFi (Mobile) hints */
2449
+ backgroundColor: '#030304', cardBg: '#0F1115', textColor: '#FFFFFF', mutedText: '#94A3B8', borderColor: 'rgba(30,41,59,0.2)', accentBitcoin: '#F7931A', accentBurnt: '#EA580C', accentGold: '#FFD600', borderRadius: 24 for cards, radiusPill: 999 for buttons, BlurView intensity 20, LinearGradient on CTAs, shadowColor '#F7931A' shadowRadius up to 10, JetBrains Mono for numeric text
2450
+ ```
2451
+
2452
+ **Checklist**:
2453
+ - [ ] Void/dark-matter palette applied
2454
+ - [ ] Bitcoin orange/gold gradient buttons
2455
+ - [ ] BlurView nav implemented
2456
+ - [ ] Monospace for numeric data
2457
+ - [ ] Hairline borders on blocks
2458
+ - [ ] Gradient text on balances
2459
+ - [ ] Pulsing network status indicators
2460
+ - [ ] Ledger vertical timeline
2461
+ - [ ] Haptics on money actions
2462
+ - [ ] SafeArea + FlashList for heavy lists
2463
+
2464
+ ## 82. Claymorphism (Mobile)
2465
+
2466
+ - **Keywords**: claymorphism, clay, 3d, soft, bubbly, candy, playful, rounded, squish, tactile, inflate, silicone, haptic, spring
2467
+ - **Primary colors**: Vivid Violet #7C3AED, Hot Pink #DB2777
2468
+ - **Secondary colors**: Canvas #F4F1FA, Soft Charcoal #332F3A, Emerald #10B981, Amber #F59E0B, Lavender-Gray #635F69
2469
+ - **Effects**: Multi-layer shadow stacks (nested View) to simulate clay depth, LinearGradient #A78BFA→#7C3AED buttons, borderRadius 40–50 outer / 32 cards / 20 buttons, Reanimated spring squish (scale 0.92 on press), BlurView glass-clay hybrid cards, floating blobs with slow ±20px drift, Haptics Light on every press
2470
+ - **Best for**: Children education apps, teen social products, crypto gamification, creative tools, brand mascot-led apps
2471
+ - **Avoid for**: Serious enterprise, high-density data, editorial reading apps, fintech trust signals
2472
+ - **Light mode**: ✓ Light
2473
+ - **Dark mode**: ⚠ Dark (adjusted)
2474
+ - **Performance**: ⚠ Moderate–Heavy (shadows+blur)
2475
+ - **Accessibility**: ✓ WCAG AA (careful)
2476
+ - **Era**: Consumer/Education
2477
+ - **Complexity**: High
2478
+
2479
+ **AI prompt**: Design a high-fidelity Claymorphism mobile app. Background #F4F1FA (cool lavender-white, never pure white). Primary CTA: LinearGradient #A78BFA to #7C3AED, borderRadius 20, height 56. Cards: borderRadius 32, backgroundColor rgba(255,255,255,0.7) with BlurView. Multi-layer shadow: outer offset(12,12) rgba(160,150,180,0.2) + highlight offset(-8,-8) white. Typography: Nunito Black 900 for headings (48px hero, 32px section, 22px card), DM Sans Medium 500 for body 16px. Spring animations: scale 0.92 on press, spring back damping 10. Background blobs drift ±20px over 8–10s. Bento 2-column grid with hero card spanning full width. Haptics.impactAsync Light on every button press.
2480
+
2481
+ ```css
2482
+ /* Claymorphism (Mobile) hints */
2483
+ backgroundColor: '#F4F1FA', cardBg: 'rgba(255,255,255,0.7)', textPrimary: '#332F3A', textMuted: '#635F69', accentPrimary: '#7C3AED', accentSecondary: '#DB2777', success: '#10B981', warning: '#F59E0B', radiusOuter: 50, radiusCard: 32, radiusButton: 20, shadowStack: 'nested View', gradientButton: ['#A78BFA', '#7C3AED'], springDamping: 10
2484
+ ```
2485
+
2486
+ **Checklist**:
2487
+ - [ ] Background uses #F4F1FA (no pure white)
2488
+ - [ ] Multi-layer clay shadow stack applied
2489
+ - [ ] Cards use blurred glass-clay hybrid
2490
+ - [ ] Buttons squish to scale 0.92 on press
2491
+ - [ ] Spring physics on all interactions
2492
+ - [ ] Nunito Black for headings
2493
+ - [ ] Background blobs drifting
2494
+ - [ ] Haptics on every press
2495
+ - [ ] Nested border radius (card 32
2496
+ - [ ] inner 24)
2497
+ - [ ] Bento layout with hero span
2498
+
2499
+ ## 83. Enterprise SaaS (Mobile)
2500
+
2501
+ - **Keywords**: enterprise, saas, b2b, professional, indigo, violet, gradient, polished, trustworthy, clean, approachable, spring, haptic
2502
+ - **Primary colors**: Indigo #4F46E5, Violet #7C3AED
2503
+ - **Secondary colors**: Slate 50 #F8FAFC, White #FFFFFF, Slate 900 #0F172A, Slate 500 #64748B, Emerald #10B981, Slate 200 #E2E8F0
2504
+ - **Effects**: Indigo→Violet gradient primary CTAs + active tab highlights, colored card shadows rgba(79,70,229,0.08), pill buttons or 12pt radius, full-width CTA at screen bottom, spring press scale 0.97, floating label inputs with animated focus border, skeletal loading pulses (Indigo/Slate tint), Bottom Sheets with drag dismiss, swipe-to-action list cards, scroll-linked title collapse
2505
+ - **Best for**: B2B backend management, productivity tools, government and finance mobile apps, SaaS companion apps, enterprise dashboards
2506
+ - **Avoid for**: Pure consumer entertainment, Gen-Z youth apps, gaming UI, ultra-minimal editorial
2507
+ - **Light mode**: ✓ Light
2508
+ - **Dark mode**: ✓ Dark-ready (token inversion)
2509
+ - **Performance**: ✓ Performant
2510
+ - **Accessibility**: ✓ WCAG AA
2511
+ - **Era**: Enterprise/SaaS
2512
+ - **Complexity**: High
2513
+
2514
+ **AI prompt**: Design a Modern Enterprise SaaS mobile app. Background #F8FAFC, surfaces #FFFFFF, primary #4F46E5 (Indigo), secondary #7C3AED (Violet). Typography: Plus Jakarta Sans, ExtraBold 800 for screen titles, Bold 700 for section headers, SemiBold 600 for buttons, Regular 400 for body. Line height 1.1–1.2 for titles, 1.4–1.5 for body. Primary button: full-width, LinearGradient Indigo→Violet, pill-shaped or radius 12, scale 0.95 on press with medium haptic. Cards: white bg, 16pt radius, hairline border, shadow rgba(79,70,229,0.08). Inputs: white bg, 8pt radius, floating label, Indigo border on focus. Bottom Tab Navigation (3–5 items), gradient active tab icon. Screen padding 16–20pt. Vertical rhythm 24pt between sections, 12pt between items. Shared Element Transition for hero cards opening to detail.
2515
+
2516
+ ```css
2517
+ /* Enterprise SaaS (Mobile) hints */
2518
+ backgroundColor: '#F8FAFC', surfaceBg: '#FFFFFF', textPrimary: '#0F172A', textMuted: '#64748B', primary: '#4F46E5', secondary: '#7C3AED', success: '#10B981', border: '#E2E8F0', radiusCard: 16, radiusButton: 999, radiusInput: 8, shadowCard: 'rgba(79,70,229,0.08)', gradientPrimary: ['#4F46E5', '#7C3AED'], screenPadding: 20
2519
+ ```
2520
+
2521
+ **Checklist**:
2522
+ - [ ] Background #F8FAFC applied
2523
+ - [ ] Indigo→Violet gradient on primary CTA
2524
+ - [ ] Colored card shadows (not gray)
2525
+ - [ ] Plus Jakarta Sans typography
2526
+ - [ ] Floating label inputs with Indigo focus
2527
+ - [ ] Scale 0.97 press with haptic Medium
2528
+ - [ ] Bottom Tab Navigation implemented
2529
+ - [ ] Safe Area strict compliance
2530
+ - [ ] Skeletal loading placeholders
2531
+ - [ ] Reduced Motion fallback
2532
+
2533
+ ## 84. Sketch Hand-Drawn (Mobile)
2534
+
2535
+ - **Keywords**: sketch, hand-drawn, handwriting, wobbly, imperfect, paper, kalam, organic, collage, post-it, tape, offset shadow, scribble
2536
+ - **Primary colors**: Red Marker #FF4D4D, Pencil Black #2D2D2D
2537
+ - **Secondary colors**: Warm Paper #FDFBF7, Old Paper #E5E0D8, Blue Ballpoint #2D5DA1, Post-it Yellow #FFF9C4
2538
+ - **Effects**: Wobbly borderRadius (unique per corner: 15/25/20/10), borderWidth 2–3 solid/dashed, hard offset shadow via rear View (4px,4px) #2D2D2D, Kalam Bold headings, PatrickHand Regular body, slight rotation (-1deg/1deg) on cards, absolute SVG scribble overlays (arrows/tape/tacks), jiggle -2deg↔2deg on error, LayoutAnimation spring on layout changes, Haptics on press, paper texture repeating background
2539
+ - **Best for**: Low-fidelity prototyping, creative brands, children/picturebook apps, education tools, journaling apps, gamified puzzles
2540
+ - **Avoid for**: Enterprise dashboards, high-density data tables, fintech precision tools, medical or legal apps
2541
+ - **Light mode**: ✓ Light
2542
+ - **Dark mode**: ⚠ Dark (requires texture inversion)
2543
+ - **Performance**: ✓ Lightweight
2544
+ - **Accessibility**: ⚠ Moderate (small/muted text risk)
2545
+ - **Era**: Creative/Education
2546
+ - **Complexity**: Medium
2547
+
2548
+ **AI prompt**: Design a Hand-Drawn (Sketch) mobile app. Background #FDFBF7 (warm paper texture). Typography: Kalam Bold for headings (high weight, felt-tip style), PatrickHand Regular for body (human but legible). Colors: Pencil Black #2D2D2D for all text and borders, Red Marker #FF4D4D for accents, Blue Ballpoint #2D5DA1for input focus. Cards: white background, wobbly corner radii (e.g., 15/25/20/10), borderWidth 3, rotate -1deg or +1deg. Hard offset shadow implemented as a second View behind the card offset 4px right and 4px down. Buttons: Post-it yellow #FFF9C4 for primary CTA, press state shifts the button (translateX 4, translateY 4) to cover the shadow. Inputs: PatrickHand font, wobbly border, focus changes to Blue Ballpoint. Add absolute SVG tape and tack decorations. Error: jiggle animation -2deg to +2deg. All touch targets minimum 48x48.
2549
+
2550
+ ```css
2551
+ /* Sketch Hand-Drawn (Mobile) hints */
2552
+ backgroundColor: '#FDFBF7', cardBg: '#FFFFFF', textPrimary: '#2D2D2D', accentRed: '#FF4D4D', accentBlue: '#2D5DA1', accentYellow: '#FFF9C4', border: '#2D2D2D', shadowView: 'offset 4px 4px #2D2D2D', wobblyRadius: [15,25,20,10], fontHeading: 'Kalam-Bold', fontBody: 'PatrickHand-Regular'
2553
+ ```
2554
+
2555
+ **Checklist**:
2556
+ - [ ] Warm paper background texture applied
2557
+ - [ ] Kalam Bold headings
2558
+ - [ ] Wobbly corner radii on all cards
2559
+ - [ ] Hard offset shadow View (not blur)
2560
+ - [ ] Cards slightly rotated
2561
+ - [ ] Button press shifts to cover shadow
2562
+ - [ ] SVG tape/tack decorations
2563
+ - [ ] PatrickHand for inputs
2564
+ - [ ] Jiggle error animation
2565
+ - [ ] Minimum 48x48 touch targets
2566
+
2567
+ ## 85. Neumorphism (Mobile)
2568
+
2569
+ - **Keywords**: neumorphism, soft ui, dual shadow, extruded, inset, clay surface, monochromatic, cool grey, haptic, ceramic, physical, depth
2570
+ - **Primary colors**: Accent Violet #6C63FF, Clay Base #E0E5EC
2571
+ - **Secondary colors**: Text Dark #3D4852, Text Muted #6B7280, Shadow Light rgba(255,255,255,0.6), Shadow Dark rgba(163,177,198,0.7), Inset Background #D1D9E6
2572
+ - **Effects**: Full-screen #E0E5EC base, dual-layer shadow via nested View (light top-left + dark bottom-right), extruded convex resting state, inset concave pressed/input state, Reanimated scale 0.97 on press, shadow opacity interpolates 1→0.4 on press, Haptics Light on every interaction, 8pt grid, no blur shadows (no shadowRadius blend), nested depth (extruded card contains inset icon slot)
2573
+ - **Best for**: Minimal hardware controls, smart home apps, aesthetic utility tools, health monitors, brand showcase pages
2574
+ - **Avoid for**: High-density data, bright multi-color apps, apps needing strong visual hierarchy via color, dark-mode-only products
2575
+ - **Light mode**: ✓ Light-only
2576
+ - **Dark mode**: ✗ Dark (breaks material metaphor)
2577
+ - **Performance**: ✓ Lightweight
2578
+ - **Accessibility**: ⚠ Moderate (low-contrast risk)
2579
+ - **Era**: Tools/Lifestyle
2580
+ - **Complexity**: Medium
2581
+
2582
+ **AI prompt**: Design a Neumorphism (Soft UI) mobile app. Entire background is a single color #E0E5EC (Cool Clay). No other background colors. Dual shadows: outer dark shadowColor rgba(163,177,198,0.7) offset(6,6) radius 10 + outer light #FFFFFF offset(-6,-6) radius 10 using nested View or react-native-shadow-2. Extruded (convex) for resting buttons and cards. Inset (concave) for inputs and pressed states. Buttons: height 56, borderRadius 16, scale 0.97 on press with shadow opacity→0.4, Haptics.impactAsync Light. Cards: padding 24, borderRadius 32, nested inner icon container uses inset style. Inputs: height 50, borderRadius 16, backgroundColor #E0E5EC (NOT white), inset depth effect, focus borderColor #6C63FF width 1.5. Typography: Plus Jakarta Sans Bold or System. Heading 24–32pt, body 16pt, caption 12pt, letterSpacing -0.5 for headings. Animation: 250ms Bezier(0.4,0,0.2,1). No black shadows, no pure white backgrounds.
2583
+
2584
+ ```css
2585
+ /* Neumorphism (Mobile) hints */
2586
+ backgroundColor: '#E0E5EC', textPrimary: '#3D4852', textMuted: '#6B7280', accent: '#6C63FF', shadowLight: 'rgba(255,255,255,0.6)', shadowDark: 'rgba(163,177,198,0.7)', insetBg: '#D1D9E6', radiusCard: 32, radiusButton: 16, radiusPill: 999, shadowOffset: 6, shadowRadius: 10
2587
+ ```
2588
+
2589
+ **Checklist**:
2590
+ - [ ] Single #E0E5EC base applied across all screens
2591
+ - [ ] Dual shadow (light+dark) implemented via nested View
2592
+ - [ ] Extruded resting state on cards/buttons
2593
+ - [ ] Inset concave state on inputs
2594
+ - [ ] Scale 0.97 press + shadow opacity interpolation
2595
+ - [ ] Haptics Light on all presses
2596
+ - [ ] No black shadows or white backgrounds
2597
+ - [ ] Nested depth pattern (extruded→inset)
2598
+ - [ ] Accent #6C63FF on active/focus only
2599
+ - [ ] 8pt grid spacing