@miniidealab/openlogos 0.9.27 → 0.9.28

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 (87) hide show
  1. package/claude-plugin-template/.claude-plugin/plugin.json +1 -1
  2. package/claude-plugin-template/skills/product-designer/SKILL.md +26 -1
  3. package/claude-plugin-template/skills/ui-ux-pro-max/LICENSE +21 -0
  4. package/claude-plugin-template/skills/ui-ux-pro-max/SKILL.md +379 -0
  5. package/claude-plugin-template/skills/ui-ux-pro-max/UPSTREAM.md +43 -0
  6. package/claude-plugin-template/skills/ui-ux-pro-max/data/charts.csv +26 -0
  7. package/claude-plugin-template/skills/ui-ux-pro-max/data/colors.csv +97 -0
  8. package/claude-plugin-template/skills/ui-ux-pro-max/data/icons.csv +101 -0
  9. package/claude-plugin-template/skills/ui-ux-pro-max/data/landing.csv +31 -0
  10. package/claude-plugin-template/skills/ui-ux-pro-max/data/products.csv +97 -0
  11. package/claude-plugin-template/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
  12. package/claude-plugin-template/skills/ui-ux-pro-max/data/stacks/astro.csv +54 -0
  13. package/claude-plugin-template/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  14. package/claude-plugin-template/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  15. package/claude-plugin-template/skills/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
  16. package/claude-plugin-template/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  17. package/claude-plugin-template/skills/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
  18. package/claude-plugin-template/skills/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
  19. package/claude-plugin-template/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  20. package/claude-plugin-template/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
  21. package/claude-plugin-template/skills/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
  22. package/claude-plugin-template/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  23. package/claude-plugin-template/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  24. package/claude-plugin-template/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  25. package/claude-plugin-template/skills/ui-ux-pro-max/data/styles.csv +68 -0
  26. package/claude-plugin-template/skills/ui-ux-pro-max/data/typography.csv +58 -0
  27. package/claude-plugin-template/skills/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
  28. package/claude-plugin-template/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  29. package/claude-plugin-template/skills/ui-ux-pro-max/data/web-interface.csv +31 -0
  30. package/claude-plugin-template/skills/ui-ux-pro-max/scripts/core.py +253 -0
  31. package/claude-plugin-template/skills/ui-ux-pro-max/scripts/design_system.py +1067 -0
  32. package/claude-plugin-template/skills/ui-ux-pro-max/scripts/search.py +114 -0
  33. package/dist/commands/detect.d.ts +9 -0
  34. package/dist/commands/detect.d.ts.map +1 -1
  35. package/dist/commands/detect.js +13 -11
  36. package/dist/commands/detect.js.map +1 -1
  37. package/dist/commands/init.d.ts +1 -1
  38. package/dist/commands/init.d.ts.map +1 -1
  39. package/dist/commands/init.js +49 -1
  40. package/dist/commands/init.js.map +1 -1
  41. package/dist/commands/status.d.ts +2 -0
  42. package/dist/commands/status.d.ts.map +1 -1
  43. package/dist/commands/status.js +48 -56
  44. package/dist/commands/status.js.map +1 -1
  45. package/dist/commands/verify.js +2 -2
  46. package/dist/commands/verify.js.map +1 -1
  47. package/dist/i18n.d.ts.map +1 -1
  48. package/dist/i18n.js +4 -0
  49. package/dist/i18n.js.map +1 -1
  50. package/dist/lib/project-yaml.d.ts +34 -0
  51. package/dist/lib/project-yaml.d.ts.map +1 -0
  52. package/dist/lib/project-yaml.js +224 -0
  53. package/dist/lib/project-yaml.js.map +1 -0
  54. package/package.json +1 -1
  55. package/skills/product-designer/SKILL.en.md +26 -1
  56. package/skills/product-designer/SKILL.md +26 -1
  57. package/skills/ui-ux-pro-max/LICENSE +21 -0
  58. package/skills/ui-ux-pro-max/SKILL.md +379 -0
  59. package/skills/ui-ux-pro-max/UPSTREAM.md +43 -0
  60. package/skills/ui-ux-pro-max/data/charts.csv +26 -0
  61. package/skills/ui-ux-pro-max/data/colors.csv +97 -0
  62. package/skills/ui-ux-pro-max/data/icons.csv +101 -0
  63. package/skills/ui-ux-pro-max/data/landing.csv +31 -0
  64. package/skills/ui-ux-pro-max/data/products.csv +97 -0
  65. package/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
  66. package/skills/ui-ux-pro-max/data/stacks/astro.csv +54 -0
  67. package/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  68. package/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  69. package/skills/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
  70. package/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  71. package/skills/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
  72. package/skills/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
  73. package/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  74. package/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
  75. package/skills/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
  76. package/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  77. package/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  78. package/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  79. package/skills/ui-ux-pro-max/data/styles.csv +68 -0
  80. package/skills/ui-ux-pro-max/data/typography.csv +58 -0
  81. package/skills/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
  82. package/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  83. package/skills/ui-ux-pro-max/data/web-interface.csv +31 -0
  84. package/skills/ui-ux-pro-max/scripts/core.py +253 -0
  85. package/skills/ui-ux-pro-max/scripts/design_system.py +1067 -0
  86. package/skills/ui-ux-pro-max/scripts/search.py +114 -0
  87. package/spec/cli-json-output.md +36 -2
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "openlogos",
3
3
  "description": "OpenLogos methodology plugin — structured AI-driven development with Why → What → How progression",
4
- "version": "0.9.27",
4
+ "version": "0.9.28",
5
5
  "author": {
6
6
  "name": "MiniIdeaLab",
7
7
  "url": "https://github.com/miniidealab"
@@ -34,6 +34,7 @@ Before executing this Skill, first determine the product type (inferred from the
34
34
  | **AI Skills / Conversational Product** | User interacts with AI via natural language | Dialogue flowchart + sample dialogue scripts | Dialogue steps, AI questioning strategy, deliverable format |
35
35
  | **Library / SDK** | Called by other programs | API usage examples (code snippets) | Public interfaces, parameter design, return values, error codes |
36
36
  | **Mobile Application** | Mobile UI | HTML pages (mobile viewport) | Gesture interaction, navigation patterns, offline state |
37
+ | **Desktop Application** | Locally installed, has GUI, standalone window (Electron / Tauri / SwiftUI / Jetpack Compose / Qt / WPF / GTK, etc.) | HTML simulating desktop layout (with menu bar / toolbar / status bar) or stack-specific style guide | Window management, menu bar / context menu, keyboard shortcuts, system tray, multi-window coordination, file system interaction |
37
38
  | **Hybrid** | Combination of multiple deliverables | Select the corresponding format for each deliverable | Interaction handoffs between deliverables |
38
39
 
39
40
  ## Execution Steps
@@ -57,6 +58,7 @@ Design architecture at different levels based on the product type:
57
58
  - **CLI Tool**: Command tree structure, subcommand hierarchy, global options
58
59
  - **AI Skills**: Skill trigger relationships, dialogue step orchestration, deliverable dependency chain
59
60
  - **Library / SDK**: Module structure, public API grouping
61
+ - **Desktop Application**: Window structure, menu / shortcut system, IPC design (main↔renderer process / native layers), local storage and file system
60
62
 
61
63
  ### Step 3: Refine Interaction Specifications Per Scenario
62
64
 
@@ -68,7 +70,30 @@ Building on the Phase 1 GIVEN/WHEN/THEN, refine down to the interaction element
68
70
 
69
71
  ### Step 5: Generate Prototypes
70
72
 
71
- Generate prototypes in the format corresponding to the product type (see examples).
73
+ #### Step 5a (GUI Products Only): Invoke ui-ux-pro-max to Get the Design System
74
+
75
+ **When to apply**: Any product type whose deliverables include a graphical user interface (GUI)—
76
+ - ✅ Trigger: Web Application / Mobile Application / Desktop Application (Electron / Tauri / SwiftUI / Jetpack Compose / Qt / WPF / GTK, etc.) / Hybrid products with GUI deliverables
77
+ - ❌ Skip: Pure CLI Tool / Library / AI Skills / pure API service or any product type without GUI deliverables
78
+
79
+ **Steps**:
80
+
81
+ 1. Extract keywords from the Phase 1 requirements document: product type (SaaS / e-commerce / dashboard / portfolio, etc.) + industry + style preferences
82
+ 2. Invoke `ui-ux-pro-max`:
83
+ ```bash
84
+ python3 logos/skills/ui-ux-pro-max/scripts/search.py "<product_type> <industry> <style_keywords>" --design-system -p "<project_name>"
85
+ ```
86
+ 3. Consume the output: style + color palette + font pairing + landing page patterns + anti-patterns as the visual foundation for Step 5 prototype generation
87
+ - Web Application: implement the style guide in HTML
88
+ - Desktop / Mobile Application: produce a style guide per the corresponding tech stack (Electron / Tauri reuse react / shadcn / html-tailwind data; SwiftUI / Jetpack Compose / Flutter map directly to their stack data; other native stacks use stack-agnostic style/color/font recommendations)
89
+
90
+ **Fallback**:
91
+
92
+ If `python3` is unavailable, skip this step and inform the user: "Python 3 (required by ui-ux-pro-max) is not detected. The prototype will be generated using a generic style. Install Python 3 and retry to get professional design system recommendations." Continue with Step 5 using a generic style; do not block.
93
+
94
+ #### Step 5b: Generate Prototypes per Product Type
95
+
96
+ Generate prototypes in the format corresponding to the product type (see examples). For GUI products, build on the design system obtained in Step 5a; for non-GUI products, pick the prototype format directly by product type.
72
97
 
73
98
  ### Step 6: Output the Product Design Document
74
99
 
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Next Level Builder
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,379 @@
1
+ ---
2
+ name: ui-ux-pro-max
3
+ description: "UI/UX design intelligence. 67 styles, 96 palettes, 57 font pairings, 25 charts, 13 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind, shadcn/ui). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient. Integrations: shadcn/ui MCP for component search and examples."
4
+ ---
5
+ # UI/UX Pro Max - Design Intelligence
6
+
7
+ > 本 Skill 来自 [ui-ux-pro-max-skill](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill)(MIT),由 OpenLogos vendor 内置。
8
+
9
+ Comprehensive design guide for web and mobile applications. Contains 67 styles, 96 color palettes, 57 font pairings, 99 UX guidelines, and 25 chart types across 13 technology stacks. Searchable database with priority-based recommendations.
10
+
11
+ ## When to Apply
12
+
13
+ Reference these guidelines when:
14
+ - Designing new UI components or pages
15
+ - Choosing color palettes and typography
16
+ - Reviewing code for UX issues
17
+ - Building landing pages or dashboards
18
+ - Implementing accessibility requirements
19
+
20
+ ## Rule Categories by Priority
21
+
22
+ | Priority | Category | Impact | Domain |
23
+ |----------|----------|--------|--------|
24
+ | 1 | Accessibility | CRITICAL | `ux` |
25
+ | 2 | Touch & Interaction | CRITICAL | `ux` |
26
+ | 3 | Performance | HIGH | `ux` |
27
+ | 4 | Layout & Responsive | HIGH | `ux` |
28
+ | 5 | Typography & Color | MEDIUM | `typography`, `color` |
29
+ | 6 | Animation | MEDIUM | `ux` |
30
+ | 7 | Style Selection | MEDIUM | `style`, `product` |
31
+ | 8 | Charts & Data | LOW | `chart` |
32
+
33
+ ## Quick Reference
34
+
35
+ ### 1. Accessibility (CRITICAL)
36
+
37
+ - `color-contrast` - Minimum 4.5:1 ratio for normal text
38
+ - `focus-states` - Visible focus rings on interactive elements
39
+ - `alt-text` - Descriptive alt text for meaningful images
40
+ - `aria-labels` - aria-label for icon-only buttons
41
+ - `keyboard-nav` - Tab order matches visual order
42
+ - `form-labels` - Use label with for attribute
43
+
44
+ ### 2. Touch & Interaction (CRITICAL)
45
+
46
+ - `touch-target-size` - Minimum 44x44px touch targets
47
+ - `hover-vs-tap` - Use click/tap for primary interactions
48
+ - `loading-buttons` - Disable button during async operations
49
+ - `error-feedback` - Clear error messages near problem
50
+ - `cursor-pointer` - Add cursor-pointer to clickable elements
51
+
52
+ ### 3. Performance (HIGH)
53
+
54
+ - `image-optimization` - Use WebP, srcset, lazy loading
55
+ - `reduced-motion` - Check prefers-reduced-motion
56
+ - `content-jumping` - Reserve space for async content
57
+
58
+ ### 4. Layout & Responsive (HIGH)
59
+
60
+ - `viewport-meta` - width=device-width initial-scale=1
61
+ - `readable-font-size` - Minimum 16px body text on mobile
62
+ - `horizontal-scroll` - Ensure content fits viewport width
63
+ - `z-index-management` - Define z-index scale (10, 20, 30, 50)
64
+
65
+ ### 5. Typography & Color (MEDIUM)
66
+
67
+ - `line-height` - Use 1.5-1.75 for body text
68
+ - `line-length` - Limit to 65-75 characters per line
69
+ - `font-pairing` - Match heading/body font personalities
70
+
71
+ ### 6. Animation (MEDIUM)
72
+
73
+ - `duration-timing` - Use 150-300ms for micro-interactions
74
+ - `transform-performance` - Use transform/opacity, not width/height
75
+ - `loading-states` - Skeleton screens or spinners
76
+
77
+ ### 7. Style Selection (MEDIUM)
78
+
79
+ - `style-match` - Match style to product type
80
+ - `consistency` - Use same style across all pages
81
+ - `no-emoji-icons` - Use SVG icons, not emojis
82
+
83
+ ### 8. Charts & Data (LOW)
84
+
85
+ - `chart-type` - Match chart type to data type
86
+ - `color-guidance` - Use accessible color palettes
87
+ - `data-table` - Provide table alternative for accessibility
88
+
89
+ ## How to Use
90
+
91
+ Search specific domains using the CLI tool below.
92
+
93
+ ---
94
+
95
+
96
+ ## Prerequisites
97
+
98
+ Check if Python is installed:
99
+
100
+ ```bash
101
+ python3 --version || python --version
102
+ ```
103
+
104
+ If Python is not installed, install it based on user's OS:
105
+
106
+ **macOS:**
107
+ ```bash
108
+ brew install python3
109
+ ```
110
+
111
+ **Ubuntu/Debian:**
112
+ ```bash
113
+ sudo apt update && sudo apt install python3
114
+ ```
115
+
116
+ **Windows:**
117
+ ```powershell
118
+ winget install Python.Python.3.12
119
+ ```
120
+
121
+ ---
122
+
123
+ ## How to Use This Skill
124
+
125
+ When user requests UI/UX work (design, build, create, implement, review, fix, improve), follow this workflow:
126
+
127
+ ### Step 1: Analyze User Requirements
128
+
129
+ Extract key information from user request:
130
+ - **Product type**: SaaS, e-commerce, portfolio, dashboard, landing page, etc.
131
+ - **Style keywords**: minimal, playful, professional, elegant, dark mode, etc.
132
+ - **Industry**: healthcare, fintech, gaming, education, etc.
133
+ - **Stack**: React, Vue, Next.js, or default to `html-tailwind`
134
+
135
+ ### Step 2: Generate Design System (REQUIRED)
136
+
137
+ **Always start with `--design-system`** to get comprehensive recommendations with reasoning:
138
+
139
+ ```bash
140
+ python3 logos/skills/ui-ux-pro-max/scripts/search.py "<product_type> <industry> <keywords>" --design-system [-p "Project Name"]
141
+ ```
142
+
143
+ This command:
144
+ 1. Searches 5 domains in parallel (product, style, color, landing, typography)
145
+ 2. Applies reasoning rules from `ui-reasoning.csv` to select best matches
146
+ 3. Returns complete design system: pattern, style, colors, typography, effects
147
+ 4. Includes anti-patterns to avoid
148
+
149
+ **Example:**
150
+ ```bash
151
+ python3 logos/skills/ui-ux-pro-max/scripts/search.py "beauty spa wellness service" --design-system -p "Serenity Spa"
152
+ ```
153
+
154
+ ### Step 2b: Persist Design System (Master + Overrides Pattern)
155
+
156
+ To save the design system for hierarchical retrieval across sessions, add `--persist`:
157
+
158
+ ```bash
159
+ python3 logos/skills/ui-ux-pro-max/scripts/search.py "<query>" --design-system --persist -p "Project Name"
160
+ ```
161
+
162
+ This creates:
163
+ - `design-system/MASTER.md` — Global Source of Truth with all design rules
164
+ - `design-system/pages/` — Folder for page-specific overrides
165
+
166
+ **With page-specific override:**
167
+ ```bash
168
+ python3 logos/skills/ui-ux-pro-max/scripts/search.py "<query>" --design-system --persist -p "Project Name" --page "dashboard"
169
+ ```
170
+
171
+ This also creates:
172
+ - `design-system/pages/dashboard.md` — Page-specific deviations from Master
173
+
174
+ **How hierarchical retrieval works:**
175
+ 1. When building a specific page (e.g., "Checkout"), first check `design-system/pages/checkout.md`
176
+ 2. If the page file exists, its rules **override** the Master file
177
+ 3. If not, use `design-system/MASTER.md` exclusively
178
+
179
+ ### Step 3: Supplement with Detailed Searches (as needed)
180
+
181
+ After getting the design system, use domain searches to get additional details:
182
+
183
+ ```bash
184
+ python3 logos/skills/ui-ux-pro-max/scripts/search.py "<keyword>" --domain <domain> [-n <max_results>]
185
+ ```
186
+
187
+ **When to use detailed searches:**
188
+
189
+ | Need | Domain | Example |
190
+ |------|--------|---------|
191
+ | More style options | `style` | `--domain style "glassmorphism dark"` |
192
+ | Chart recommendations | `chart` | `--domain chart "real-time dashboard"` |
193
+ | UX best practices | `ux` | `--domain ux "animation accessibility"` |
194
+ | Alternative fonts | `typography` | `--domain typography "elegant luxury"` |
195
+ | Landing structure | `landing` | `--domain landing "hero social-proof"` |
196
+
197
+ ### Step 4: Stack Guidelines (Default: html-tailwind)
198
+
199
+ Get implementation-specific best practices. If user doesn't specify a stack, **default to `html-tailwind`**.
200
+
201
+ ```bash
202
+ python3 logos/skills/ui-ux-pro-max/scripts/search.py "<keyword>" --stack html-tailwind
203
+ ```
204
+
205
+ Available stacks: `html-tailwind`, `react`, `nextjs`, `vue`, `svelte`, `swiftui`, `react-native`, `flutter`, `shadcn`, `jetpack-compose`
206
+
207
+ ---
208
+
209
+ ## Search Reference
210
+
211
+ ### Available Domains
212
+
213
+ | Domain | Use For | Example Keywords |
214
+ |--------|---------|------------------|
215
+ | `product` | Product type recommendations | SaaS, e-commerce, portfolio, healthcare, beauty, service |
216
+ | `style` | UI styles, colors, effects | glassmorphism, minimalism, dark mode, brutalism |
217
+ | `typography` | Font pairings, Google Fonts | elegant, playful, professional, modern |
218
+ | `color` | Color palettes by product type | saas, ecommerce, healthcare, beauty, fintech, service |
219
+ | `landing` | Page structure, CTA strategies | hero, hero-centric, testimonial, pricing, social-proof |
220
+ | `chart` | Chart types, library recommendations | trend, comparison, timeline, funnel, pie |
221
+ | `ux` | Best practices, anti-patterns | animation, accessibility, z-index, loading |
222
+ | `react` | React/Next.js performance | waterfall, bundle, suspense, memo, rerender, cache |
223
+ | `web` | Web interface guidelines | aria, focus, keyboard, semantic, virtualize |
224
+ | `prompt` | AI prompts, CSS keywords | (style name) |
225
+
226
+ ### Available Stacks
227
+
228
+ | Stack | Focus |
229
+ |-------|-------|
230
+ | `html-tailwind` | Tailwind utilities, responsive, a11y (DEFAULT) |
231
+ | `react` | State, hooks, performance, patterns |
232
+ | `nextjs` | SSR, routing, images, API routes |
233
+ | `vue` | Composition API, Pinia, Vue Router |
234
+ | `svelte` | Runes, stores, SvelteKit |
235
+ | `swiftui` | Views, State, Navigation, Animation |
236
+ | `react-native` | Components, Navigation, Lists |
237
+ | `flutter` | Widgets, State, Layout, Theming |
238
+ | `shadcn` | shadcn/ui components, theming, forms, patterns |
239
+ | `jetpack-compose` | Composables, Modifiers, State Hoisting, Recomposition |
240
+
241
+ ---
242
+
243
+ ## Example Workflow
244
+
245
+ **User request:** "Làm landing page cho dịch vụ chăm sóc da chuyên nghiệp"
246
+
247
+ ### Step 1: Analyze Requirements
248
+ - Product type: Beauty/Spa service
249
+ - Style keywords: elegant, professional, soft
250
+ - Industry: Beauty/Wellness
251
+ - Stack: html-tailwind (default)
252
+
253
+ ### Step 2: Generate Design System (REQUIRED)
254
+
255
+ ```bash
256
+ python3 logos/skills/ui-ux-pro-max/scripts/search.py "beauty spa wellness service elegant" --design-system -p "Serenity Spa"
257
+ ```
258
+
259
+ **Output:** Complete design system with pattern, style, colors, typography, effects, and anti-patterns.
260
+
261
+ ### Step 3: Supplement with Detailed Searches (as needed)
262
+
263
+ ```bash
264
+ # Get UX guidelines for animation and accessibility
265
+ python3 logos/skills/ui-ux-pro-max/scripts/search.py "animation accessibility" --domain ux
266
+
267
+ # Get alternative typography options if needed
268
+ python3 logos/skills/ui-ux-pro-max/scripts/search.py "elegant luxury serif" --domain typography
269
+ ```
270
+
271
+ ### Step 4: Stack Guidelines
272
+
273
+ ```bash
274
+ python3 logos/skills/ui-ux-pro-max/scripts/search.py "layout responsive form" --stack html-tailwind
275
+ ```
276
+
277
+ **Then:** Synthesize design system + detailed searches and implement the design.
278
+
279
+ ---
280
+
281
+ ## Output Formats
282
+
283
+ The `--design-system` flag supports two output formats:
284
+
285
+ ```bash
286
+ # ASCII box (default) - best for terminal display
287
+ python3 logos/skills/ui-ux-pro-max/scripts/search.py "fintech crypto" --design-system
288
+
289
+ # Markdown - best for documentation
290
+ python3 logos/skills/ui-ux-pro-max/scripts/search.py "fintech crypto" --design-system -f markdown
291
+ ```
292
+
293
+ ---
294
+
295
+ ## Tips for Better Results
296
+
297
+ 1. **Be specific with keywords** - "healthcare SaaS dashboard" > "app"
298
+ 2. **Search multiple times** - Different keywords reveal different insights
299
+ 3. **Combine domains** - Style + Typography + Color = Complete design system
300
+ 4. **Always check UX** - Search "animation", "z-index", "accessibility" for common issues
301
+ 5. **Use stack flag** - Get implementation-specific best practices
302
+ 6. **Iterate** - If first search doesn't match, try different keywords
303
+
304
+ ---
305
+
306
+ ## Common Rules for Professional UI
307
+
308
+ These are frequently overlooked issues that make UI look unprofessional:
309
+
310
+ ### Icons & Visual Elements
311
+
312
+ | Rule | Do | Don't |
313
+ |------|----|----- |
314
+ | **No emoji icons** | Use SVG icons (Heroicons, Lucide, Simple Icons) | Use emojis like 🎨 🚀 ⚙️ as UI icons |
315
+ | **Stable hover states** | Use color/opacity transitions on hover | Use scale transforms that shift layout |
316
+ | **Correct brand logos** | Research official SVG from Simple Icons | Guess or use incorrect logo paths |
317
+ | **Consistent icon sizing** | Use fixed viewBox (24x24) with w-6 h-6 | Mix different icon sizes randomly |
318
+
319
+ ### Interaction & Cursor
320
+
321
+ | Rule | Do | Don't |
322
+ |------|----|----- |
323
+ | **Cursor pointer** | Add `cursor-pointer` to all clickable/hoverable cards | Leave default cursor on interactive elements |
324
+ | **Hover feedback** | Provide visual feedback (color, shadow, border) | No indication element is interactive |
325
+ | **Smooth transitions** | Use `transition-colors duration-200` | Instant state changes or too slow (>500ms) |
326
+
327
+ ### Light/Dark Mode Contrast
328
+
329
+ | Rule | Do | Don't |
330
+ |------|----|----- |
331
+ | **Glass card light mode** | Use `bg-white/80` or higher opacity | Use `bg-white/10` (too transparent) |
332
+ | **Text contrast light** | Use `#0F172A` (slate-900) for text | Use `#94A3B8` (slate-400) for body text |
333
+ | **Muted text light** | Use `#475569` (slate-600) minimum | Use gray-400 or lighter |
334
+ | **Border visibility** | Use `border-gray-200` in light mode | Use `border-white/10` (invisible) |
335
+
336
+ ### Layout & Spacing
337
+
338
+ | Rule | Do | Don't |
339
+ |------|----|----- |
340
+ | **Floating navbar** | Add `top-4 left-4 right-4` spacing | Stick navbar to `top-0 left-0 right-0` |
341
+ | **Content padding** | Account for fixed navbar height | Let content hide behind fixed elements |
342
+ | **Consistent max-width** | Use same `max-w-6xl` or `max-w-7xl` | Mix different container widths |
343
+
344
+ ---
345
+
346
+ ## Pre-Delivery Checklist
347
+
348
+ Before delivering UI code, verify these items:
349
+
350
+ ### Visual Quality
351
+ - [ ] No emojis used as icons (use SVG instead)
352
+ - [ ] All icons from consistent icon set (Heroicons/Lucide)
353
+ - [ ] Brand logos are correct (verified from Simple Icons)
354
+ - [ ] Hover states don't cause layout shift
355
+ - [ ] Use theme colors directly (bg-primary) not var() wrapper
356
+
357
+ ### Interaction
358
+ - [ ] All clickable elements have `cursor-pointer`
359
+ - [ ] Hover states provide clear visual feedback
360
+ - [ ] Transitions are smooth (150-300ms)
361
+ - [ ] Focus states visible for keyboard navigation
362
+
363
+ ### Light/Dark Mode
364
+ - [ ] Light mode text has sufficient contrast (4.5:1 minimum)
365
+ - [ ] Glass/transparent elements visible in light mode
366
+ - [ ] Borders visible in both modes
367
+ - [ ] Test both modes before delivery
368
+
369
+ ### Layout
370
+ - [ ] Floating elements have proper spacing from edges
371
+ - [ ] No content hidden behind fixed navbars
372
+ - [ ] Responsive at 375px, 768px, 1024px, 1440px
373
+ - [ ] No horizontal scroll on mobile
374
+
375
+ ### Accessibility
376
+ - [ ] All images have alt text
377
+ - [ ] Form inputs have labels
378
+ - [ ] Color is not the only indicator
379
+ - [ ] `prefers-reduced-motion` respected
@@ -0,0 +1,43 @@
1
+ # Upstream Sync Record
2
+
3
+ **Source**: https://github.com/nextlevelbuilder/ui-ux-pro-max-skill
4
+ **License**: MIT
5
+ **Vendored Commit**: `b7e3af80f6e331f6fb456667b82b12cade7c9d35` (HEAD on `main` at vendor time)
6
+ **Vendored Date**: 2026-05-24
7
+ **Vendored By**: huangxianglong (via OpenLogos change proposal `builtin-ui-ux-pro-max-skill`)
8
+ **Vendor Method**: `npx -y uipro-cli init --ai claude` then copy `.claude/skills/ui-ux-pro-max/`
9
+
10
+ ## How to Re-Sync
11
+
12
+ ```bash
13
+ # 1. 在临时目录跑官方安装器
14
+ mkdir -p /tmp/uipro-vendor && cd /tmp/uipro-vendor
15
+ rm -rf .claude
16
+ npx -y uipro-cli init --ai claude
17
+
18
+ # 2. 对比 SKILL.md / data/ / scripts/ 是否有变化
19
+ diff -r /tmp/uipro-vendor/.claude/skills/ui-ux-pro-max \
20
+ <openlogos-root>/skills/ui-ux-pro-max
21
+
22
+ # 3. 如有更新,覆盖并重新应用下方「OpenLogos-Side Modifications」段落中所有改动
23
+ # 4. 重新拉取 LICENSE: curl -sSL https://raw.githubusercontent.com/nextlevelbuilder/ui-ux-pro-max-skill/main/LICENSE
24
+ # 5. 同步到 plugin/skills/ui-ux-pro-max/
25
+ # 6. 更新本文件中的 Vendored Commit / Vendored Date 字段
26
+ ```
27
+
28
+ ## OpenLogos-Side Modifications
29
+
30
+ vendor 后我们在上游 `SKILL.md` 之上做了如下本地化改动。重新同步时必须重新应用,否则会被覆盖丢失:
31
+
32
+ 1. **顶部 OpenLogos vendor 标注**:在 `SKILL.md` 第一行 frontmatter 之后插入:
33
+ ```markdown
34
+ > 本 Skill 来自 [ui-ux-pro-max-skill](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill)(MIT),由 OpenLogos vendor 内置。
35
+ ```
36
+
37
+ 2. **路径本地化**:全文替换
38
+ - `skills/ui-ux-pro-max/scripts/` → `logos/skills/ui-ux-pro-max/scripts/`
39
+
40
+ 原因:上游脚本路径写死 `.claude/skills/ui-ux-pro-max/...`(相对 `.claude/`),但 OpenLogos 用户项目的 skill 部署路径是 `logos/skills/ui-ux-pro-max/`。
41
+
42
+ 3. **未来其他改动**(按时间倒序追加):
43
+ - _无_
@@ -0,0 +1,26 @@
1
+ No,Data Type,Keywords,Best Chart Type,Secondary Options,Color Guidance,Performance Impact,Accessibility Notes,Library Recommendation,Interactive Level
2
+ 1,Trend Over Time,"trend, time-series, line, growth, timeline, progress",Line Chart,"Area Chart, Smooth Area",Primary: #0080FF. Multiple series: use distinct colors. Fill: 20% opacity,⚡ Excellent (optimized),✓ Clear line patterns for colorblind users. Add pattern overlays.,"Chart.js, Recharts, ApexCharts",Hover + Zoom
3
+ 2,Compare Categories,"compare, categories, bar, comparison, ranking",Bar Chart (Horizontal or Vertical),"Column Chart, Grouped Bar",Each bar: distinct color. Category: grouped same color. Sorted: descending order,⚡ Excellent,✓ Easy to compare. Add value labels on bars for clarity.,"Chart.js, Recharts, D3.js",Hover + Sort
4
+ 3,Part-to-Whole,"part-to-whole, pie, donut, percentage, proportion, share",Pie Chart or Donut,"Stacked Bar, Treemap",Colors: 5-6 max. Contrasting palette. Large slices first. Use labels.,⚡ Good (limit 6 slices),⚠ Hard for accessibility. Better: Stacked bar with legend. Avoid pie if >5 items.,"Chart.js, Recharts, D3.js",Hover + Drill
5
+ 4,Correlation/Distribution,"correlation, distribution, scatter, relationship, pattern",Scatter Plot or Bubble Chart,"Heat Map, Matrix",Color axis: gradient (blue-red). Size: relative. Opacity: 0.6-0.8 to show density,⚠ Moderate (many points),⚠ Provide data table alternative. Use pattern + color distinction.,"D3.js, Plotly, Recharts",Hover + Brush
6
+ 5,Heatmap/Intensity,"heatmap, heat-map, intensity, density, matrix",Heat Map or Choropleth,"Grid Heat Map, Bubble Heat",Gradient: Cool (blue) to Hot (red). Scale: clear legend. Divergent for ±data,⚡ Excellent (color CSS),⚠ Colorblind: Use pattern overlay. Provide numerical legend.,"D3.js, Plotly, ApexCharts",Hover + Zoom
7
+ 6,Geographic Data,"geographic, map, location, region, geo, spatial","Choropleth Map, Bubble Map",Geographic Heat Map,Regional: single color gradient or categorized colors. Legend: clear scale,⚠ Moderate (rendering),⚠ Include text labels for regions. Provide data table alternative.,"D3.js, Mapbox, Leaflet",Pan + Zoom + Drill
8
+ 7,Funnel/Flow,funnel/flow,"Funnel Chart, Sankey",Waterfall (for flows),Stages: gradient (starting color → ending color). Show conversion %,⚡ Good,✓ Clear stage labels + percentages. Good for accessibility if labeled.,"D3.js, Recharts, Custom SVG",Hover + Drill
9
+ 8,Performance vs Target,performance-vs-target,Gauge Chart or Bullet Chart,"Dial, Thermometer",Performance: Red→Yellow→Green gradient. Target: marker line. Threshold colors,⚡ Good,✓ Add numerical value + percentage label beside gauge.,"D3.js, ApexCharts, Custom SVG",Hover
10
+ 9,Time-Series Forecast,time-series-forecast,Line with Confidence Band,Ribbon Chart,Actual: solid line #0080FF. Forecast: dashed #FF9500. Band: light shading,⚡ Good,✓ Clearly distinguish actual vs forecast. Add legend.,"Chart.js, ApexCharts, Plotly",Hover + Toggle
11
+ 10,Anomaly Detection,anomaly-detection,Line Chart with Highlights,Scatter with Alert,Normal: blue #0080FF. Anomaly: red #FF0000 circle/square marker + alert,⚡ Good,✓ Circle/marker for anomalies. Add text alert annotation.,"D3.js, Plotly, ApexCharts",Hover + Alert
12
+ 11,Hierarchical/Nested Data,hierarchical/nested-data,Treemap,"Sunburst, Nested Donut, Icicle",Parent: distinct hues. Children: lighter shades. White borders 2-3px.,⚠ Moderate,⚠ Poor - provide table alternative. Label large areas.,"D3.js, Recharts, ApexCharts",Hover + Drilldown
13
+ 12,Flow/Process Data,flow/process-data,Sankey Diagram,"Alluvial, Chord Diagram",Gradient from source to target. Opacity 0.4-0.6 for flows.,⚠ Moderate,⚠ Poor - provide flow table alternative.,"D3.js (d3-sankey), Plotly",Hover + Drilldown
14
+ 13,Cumulative Changes,cumulative-changes,Waterfall Chart,"Stacked Bar, Cascade",Increases: #4CAF50. Decreases: #F44336. Start: #2196F3. End: #0D47A1.,⚡ Good,✓ Good - clear directional colors with labels.,"ApexCharts, Highcharts, Plotly",Hover
15
+ 14,Multi-Variable Comparison,multi-variable-comparison,Radar/Spider Chart,"Parallel Coordinates, Grouped Bar",Single: #0080FF 20% fill. Multiple: distinct colors per dataset.,⚡ Good,⚠ Moderate - limit 5-8 axes. Add data table.,"Chart.js, Recharts, ApexCharts",Hover + Toggle
16
+ 15,Stock/Trading OHLC,stock/trading-ohlc,Candlestick Chart,"OHLC Bar, Heikin-Ashi",Bullish: #26A69A. Bearish: #EF5350. Volume: 40% opacity below.,⚡ Good,⚠ Moderate - provide OHLC data table.,"Lightweight Charts (TradingView), ApexCharts",Real-time + Hover + Zoom
17
+ 16,Relationship/Connection Data,relationship/connection-data,Network Graph,"Hierarchical Tree, Adjacency Matrix",Node types: categorical colors. Edges: #90A4AE 60% opacity.,❌ Poor (500+ nodes struggles),❌ Very Poor - provide adjacency list alternative.,"D3.js (d3-force), Vis.js, Cytoscape.js",Drilldown + Hover + Drag
18
+ 17,Distribution/Statistical,distribution/statistical,Box Plot,"Violin Plot, Beeswarm",Box: #BBDEFB. Border: #1976D2. Median: #D32F2F. Outliers: #F44336.,⚡ Excellent,"✓ Good - include stats table (min, Q1, median, Q3, max).","Plotly, D3.js, Chart.js (plugin)",Hover
19
+ 18,Performance vs Target (Compact),performance-vs-target-(compact),Bullet Chart,"Gauge, Progress Bar","Ranges: #FFCDD2, #FFF9C4, #C8E6C9. Performance: #1976D2. Target: black 3px.",⚡ Excellent,✓ Excellent - compact with clear values.,"D3.js, Plotly, Custom SVG",Hover
20
+ 19,Proportional/Percentage,proportional/percentage,Waffle Chart,"Pictogram, Stacked Bar 100%",10x10 grid. 3-5 categories max. 2-3px spacing between squares.,⚡ Good,✓ Good - better than pie for accessibility.,"D3.js, React-Waffle, Custom CSS Grid",Hover
21
+ 20,Hierarchical Proportional,hierarchical-proportional,Sunburst Chart,"Treemap, Icicle, Circle Packing",Center to outer: darker to lighter. 15-20% lighter per level.,⚠ Moderate,⚠ Poor - provide hierarchy table alternative.,"D3.js (d3-hierarchy), Recharts, ApexCharts",Drilldown + Hover
22
+ 21,Root Cause Analysis,"root cause, decomposition, tree, hierarchy, drill-down, ai-split",Decomposition Tree,"Decision Tree, Flow Chart",Nodes: #2563EB (Primary) vs #EF4444 (Negative impact). Connectors: Neutral grey.,⚠ Moderate (calculation heavy),✓ clear hierarchy. Allow keyboard navigation for nodes.,"Power BI (native), React-Flow, Custom D3.js",Drill + Expand
23
+ 22,3D Spatial Data,"3d, spatial, immersive, terrain, molecular, volumetric",3D Scatter/Surface Plot,"Volumetric Rendering, Point Cloud",Depth cues: lighting/shading. Z-axis: color gradient (cool to warm).,❌ Heavy (WebGL required),❌ Poor - requires alternative 2D view or data table.,"Three.js, Deck.gl, Plotly 3D",Rotate + Zoom + VR
24
+ 23,Real-Time Streaming,"streaming, real-time, ticker, live, velocity, pulse",Streaming Area Chart,"Ticker Tape, Moving Gauge",Current: Bright Pulse (#00FF00). History: Fading opacity. Grid: Dark.,⚡ Optimized (canvas/webgl),⚠ Flashing elements - provide pause button. High contrast.,Smoothed D3.js, CanvasJS
25
+ 24,Sentiment/Emotion,"sentiment, emotion, nlp, opinion, feeling",Word Cloud with Sentiment,"Sentiment Arc, Radar Chart",Positive: #22C55E. Negative: #EF4444. Neutral: #94A3B8. Size = Frequency.,⚡ Good,⚠ Word clouds poor for screen readers. Use list view.,"D3-cloud, Highcharts, Nivo",Hover + Filter
26
+ 25,Process Mining,"process, mining, variants, path, bottleneck, log",Process Map / Graph,"Directed Acyclic Graph (DAG), Petri Net",Happy path: #10B981 (Thick). Deviations: #F59E0B (Thin). Bottlenecks: #EF4444.,⚠ Moderate to Heavy,⚠ Complex graphs hard to navigate. Provide path summary.,"React-Flow, Cytoscape.js, Recharts",Drag + Node-Click
@@ -0,0 +1,97 @@
1
+ No,Product Type,Primary (Hex),Secondary (Hex),CTA (Hex),Background (Hex),Text (Hex),Border (Hex),Notes
2
+ 1,SaaS (General),#2563EB,#3B82F6,#F97316,#F8FAFC,#1E293B,#E2E8F0,Trust blue + orange CTA contrast
3
+ 2,Micro SaaS,#6366F1,#818CF8,#10B981,#F5F3FF,#1E1B4B,#E0E7FF,Indigo primary + emerald CTA
4
+ 3,E-commerce,#059669,#10B981,#F97316,#ECFDF5,#064E3B,#A7F3D0,Success green + urgency orange
5
+ 4,E-commerce Luxury,#1C1917,#44403C,#CA8A04,#FAFAF9,#0C0A09,#D6D3D1,Premium dark + gold accent
6
+ 5,Service Landing Page,#0EA5E9,#38BDF8,#F97316,#F0F9FF,#0C4A6E,#BAE6FD,Sky blue trust + warm CTA
7
+ 6,B2B Service,#0F172A,#334155,#0369A1,#F8FAFC,#020617,#E2E8F0,Professional navy + blue CTA
8
+ 7,Financial Dashboard,#0F172A,#1E293B,#22C55E,#020617,#F8FAFC,#334155,Dark bg + green positive indicators
9
+ 8,Analytics Dashboard,#1E40AF,#3B82F6,#F59E0B,#F8FAFC,#1E3A8A,#DBEAFE,Blue data + amber highlights
10
+ 9,Healthcare App,#0891B2,#22D3EE,#059669,#ECFEFF,#164E63,#A5F3FC,Calm cyan + health green
11
+ 10,Educational App,#4F46E5,#818CF8,#F97316,#EEF2FF,#1E1B4B,#C7D2FE,Playful indigo + energetic orange
12
+ 11,Creative Agency,#EC4899,#F472B6,#06B6D4,#FDF2F8,#831843,#FBCFE8,Bold pink + cyan accent
13
+ 12,Portfolio/Personal,#18181B,#3F3F46,#2563EB,#FAFAFA,#09090B,#E4E4E7,Monochrome + blue accent
14
+ 13,Gaming,#7C3AED,#A78BFA,#F43F5E,#0F0F23,#E2E8F0,#4C1D95,Neon purple + rose action
15
+ 14,Government/Public Service,#0F172A,#334155,#0369A1,#F8FAFC,#020617,#E2E8F0,High contrast navy + blue
16
+ 15,Fintech/Crypto,#F59E0B,#FBBF24,#8B5CF6,#0F172A,#F8FAFC,#334155,Gold trust + purple tech
17
+ 16,Social Media App,#E11D48,#FB7185,#2563EB,#FFF1F2,#881337,#FECDD3,Vibrant rose + engagement blue
18
+ 17,Productivity Tool,#0D9488,#14B8A6,#F97316,#F0FDFA,#134E4A,#99F6E4,Teal focus + action orange
19
+ 18,Design System/Component Library,#4F46E5,#6366F1,#F97316,#EEF2FF,#312E81,#C7D2FE,Indigo brand + doc hierarchy
20
+ 19,AI/Chatbot Platform,#7C3AED,#A78BFA,#06B6D4,#FAF5FF,#1E1B4B,#DDD6FE,AI purple + cyan interactions
21
+ 20,NFT/Web3 Platform,#8B5CF6,#A78BFA,#FBBF24,#0F0F23,#F8FAFC,#4C1D95,Purple tech + gold value
22
+ 21,Creator Economy Platform,#EC4899,#F472B6,#F97316,#FDF2F8,#831843,#FBCFE8,Creator pink + engagement orange
23
+ 22,Sustainability/ESG Platform,#059669,#10B981,#0891B2,#ECFDF5,#064E3B,#A7F3D0,Nature green + ocean blue
24
+ 23,Remote Work/Collaboration Tool,#6366F1,#818CF8,#10B981,#F5F3FF,#312E81,#E0E7FF,Calm indigo + success green
25
+ 24,Mental Health App,#8B5CF6,#C4B5FD,#10B981,#FAF5FF,#4C1D95,#EDE9FE,Calming lavender + wellness green
26
+ 25,Pet Tech App,#F97316,#FB923C,#2563EB,#FFF7ED,#9A3412,#FED7AA,Playful orange + trust blue
27
+ 26,Smart Home/IoT Dashboard,#1E293B,#334155,#22C55E,#0F172A,#F8FAFC,#475569,Dark tech + status green
28
+ 27,EV/Charging Ecosystem,#0891B2,#22D3EE,#22C55E,#ECFEFF,#164E63,#A5F3FC,Electric cyan + eco green
29
+ 28,Subscription Box Service,#D946EF,#E879F9,#F97316,#FDF4FF,#86198F,#F5D0FE,Excitement purple + urgency orange
30
+ 29,Podcast Platform,#1E1B4B,#312E81,#F97316,#0F0F23,#F8FAFC,#4338CA,Dark audio + warm accent
31
+ 30,Dating App,#E11D48,#FB7185,#F97316,#FFF1F2,#881337,#FECDD3,Romantic rose + warm orange
32
+ 31,Micro-Credentials/Badges Platform,#0369A1,#0EA5E9,#CA8A04,#F0F9FF,#0C4A6E,#BAE6FD,Trust blue + achievement gold
33
+ 32,Knowledge Base/Documentation,#475569,#64748B,#2563EB,#F8FAFC,#1E293B,#E2E8F0,Neutral grey + link blue
34
+ 33,Hyperlocal Services,#059669,#10B981,#F97316,#ECFDF5,#064E3B,#A7F3D0,Location green + action orange
35
+ 34,Beauty/Spa/Wellness Service,#EC4899,#F9A8D4,#8B5CF6,#FDF2F8,#831843,#FBCFE8,Soft pink + lavender luxury
36
+ 35,Luxury/Premium Brand,#1C1917,#44403C,#CA8A04,#FAFAF9,#0C0A09,#D6D3D1,Premium black + gold accent
37
+ 36,Restaurant/Food Service,#DC2626,#F87171,#CA8A04,#FEF2F2,#450A0A,#FECACA,Appetizing red + warm gold
38
+ 37,Fitness/Gym App,#F97316,#FB923C,#22C55E,#1F2937,#F8FAFC,#374151,Energy orange + success green
39
+ 38,Real Estate/Property,#0F766E,#14B8A6,#0369A1,#F0FDFA,#134E4A,#99F6E4,Trust teal + professional blue
40
+ 39,Travel/Tourism Agency,#0EA5E9,#38BDF8,#F97316,#F0F9FF,#0C4A6E,#BAE6FD,Sky blue + adventure orange
41
+ 40,Hotel/Hospitality,#1E3A8A,#3B82F6,#CA8A04,#F8FAFC,#1E40AF,#BFDBFE,Luxury navy + gold service
42
+ 41,Wedding/Event Planning,#DB2777,#F472B6,#CA8A04,#FDF2F8,#831843,#FBCFE8,Romantic pink + elegant gold
43
+ 42,Legal Services,#1E3A8A,#1E40AF,#B45309,#F8FAFC,#0F172A,#CBD5E1,Authority navy + trust gold
44
+ 43,Insurance Platform,#0369A1,#0EA5E9,#22C55E,#F0F9FF,#0C4A6E,#BAE6FD,Security blue + protected green
45
+ 44,Banking/Traditional Finance,#0F172A,#1E3A8A,#CA8A04,#F8FAFC,#020617,#E2E8F0,Trust navy + premium gold
46
+ 45,Online Course/E-learning,#0D9488,#2DD4BF,#F97316,#F0FDFA,#134E4A,#5EEAD4,Progress teal + achievement orange
47
+ 46,Non-profit/Charity,#0891B2,#22D3EE,#F97316,#ECFEFF,#164E63,#A5F3FC,Compassion blue + action orange
48
+ 47,Music Streaming,#1E1B4B,#4338CA,#22C55E,#0F0F23,#F8FAFC,#312E81,Dark audio + play green
49
+ 48,Video Streaming/OTT,#0F0F23,#1E1B4B,#E11D48,#000000,#F8FAFC,#312E81,Cinema dark + play red
50
+ 49,Job Board/Recruitment,#0369A1,#0EA5E9,#22C55E,#F0F9FF,#0C4A6E,#BAE6FD,Professional blue + success green
51
+ 50,Marketplace (P2P),#7C3AED,#A78BFA,#22C55E,#FAF5FF,#4C1D95,#DDD6FE,Trust purple + transaction green
52
+ 51,Logistics/Delivery,#2563EB,#3B82F6,#F97316,#EFF6FF,#1E40AF,#BFDBFE,Tracking blue + delivery orange
53
+ 52,Agriculture/Farm Tech,#15803D,#22C55E,#CA8A04,#F0FDF4,#14532D,#BBF7D0,Earth green + harvest gold
54
+ 53,Construction/Architecture,#64748B,#94A3B8,#F97316,#F8FAFC,#334155,#E2E8F0,Industrial grey + safety orange
55
+ 54,Automotive/Car Dealership,#1E293B,#334155,#DC2626,#F8FAFC,#0F172A,#E2E8F0,Premium dark + action red
56
+ 55,Photography Studio,#18181B,#27272A,#F8FAFC,#000000,#FAFAFA,#3F3F46,Pure black + white contrast
57
+ 56,Coworking Space,#F59E0B,#FBBF24,#2563EB,#FFFBEB,#78350F,#FDE68A,Energetic amber + booking blue
58
+ 57,Cleaning Service,#0891B2,#22D3EE,#22C55E,#ECFEFF,#164E63,#A5F3FC,Fresh cyan + clean green
59
+ 58,Home Services (Plumber/Electrician),#1E40AF,#3B82F6,#F97316,#EFF6FF,#1E3A8A,#BFDBFE,Professional blue + urgent orange
60
+ 59,Childcare/Daycare,#F472B6,#FBCFE8,#22C55E,#FDF2F8,#9D174D,#FCE7F3,Soft pink + safe green
61
+ 60,Senior Care/Elderly,#0369A1,#38BDF8,#22C55E,#F0F9FF,#0C4A6E,#E0F2FE,Calm blue + reassuring green
62
+ 61,Medical Clinic,#0891B2,#22D3EE,#22C55E,#F0FDFA,#134E4A,#CCFBF1,Medical teal + health green
63
+ 62,Pharmacy/Drug Store,#15803D,#22C55E,#0369A1,#F0FDF4,#14532D,#BBF7D0,Pharmacy green + trust blue
64
+ 63,Dental Practice,#0EA5E9,#38BDF8,#FBBF24,#F0F9FF,#0C4A6E,#BAE6FD,Fresh blue + smile yellow
65
+ 64,Veterinary Clinic,#0D9488,#14B8A6,#F97316,#F0FDFA,#134E4A,#99F6E4,Caring teal + warm orange
66
+ 65,Florist/Plant Shop,#15803D,#22C55E,#EC4899,#F0FDF4,#14532D,#BBF7D0,Natural green + floral pink
67
+ 66,Bakery/Cafe,#92400E,#B45309,#F8FAFC,#FEF3C7,#78350F,#FDE68A,Warm brown + cream white
68
+ 67,Coffee Shop,#78350F,#92400E,#FBBF24,#FEF3C7,#451A03,#FDE68A,Coffee brown + warm gold
69
+ 68,Brewery/Winery,#7C2D12,#B91C1C,#CA8A04,#FEF2F2,#450A0A,#FECACA,Deep burgundy + craft gold
70
+ 69,Airline,#1E3A8A,#3B82F6,#F97316,#EFF6FF,#1E40AF,#BFDBFE,Sky blue + booking orange
71
+ 70,News/Media Platform,#DC2626,#EF4444,#1E40AF,#FEF2F2,#450A0A,#FECACA,Breaking red + link blue
72
+ 71,Magazine/Blog,#18181B,#3F3F46,#EC4899,#FAFAFA,#09090B,#E4E4E7,Editorial black + accent pink
73
+ 72,Freelancer Platform,#6366F1,#818CF8,#22C55E,#EEF2FF,#312E81,#C7D2FE,Creative indigo + hire green
74
+ 73,Consulting Firm,#0F172A,#334155,#CA8A04,#F8FAFC,#020617,#E2E8F0,Authority navy + premium gold
75
+ 74,Marketing Agency,#EC4899,#F472B6,#06B6D4,#FDF2F8,#831843,#FBCFE8,Bold pink + creative cyan
76
+ 75,Event Management,#7C3AED,#A78BFA,#F97316,#FAF5FF,#4C1D95,#DDD6FE,Excitement purple + action orange
77
+ 76,Conference/Webinar Platform,#1E40AF,#3B82F6,#22C55E,#EFF6FF,#1E3A8A,#BFDBFE,Professional blue + join green
78
+ 77,Membership/Community,#7C3AED,#A78BFA,#22C55E,#FAF5FF,#4C1D95,#DDD6FE,Community purple + join green
79
+ 78,Newsletter Platform,#0369A1,#0EA5E9,#F97316,#F0F9FF,#0C4A6E,#BAE6FD,Trust blue + subscribe orange
80
+ 79,Digital Products/Downloads,#6366F1,#818CF8,#22C55E,#EEF2FF,#312E81,#C7D2FE,Digital indigo + buy green
81
+ 80,Church/Religious Organization,#7C3AED,#A78BFA,#CA8A04,#FAF5FF,#4C1D95,#DDD6FE,Spiritual purple + warm gold
82
+ 81,Sports Team/Club,#DC2626,#EF4444,#FBBF24,#FEF2F2,#7F1D1D,#FECACA,Team red + championship gold
83
+ 82,Museum/Gallery,#18181B,#27272A,#F8FAFC,#FAFAFA,#09090B,#E4E4E7,Gallery black + white space
84
+ 83,Theater/Cinema,#1E1B4B,#312E81,#CA8A04,#0F0F23,#F8FAFC,#4338CA,Dramatic dark + spotlight gold
85
+ 84,Language Learning App,#4F46E5,#818CF8,#22C55E,#EEF2FF,#312E81,#C7D2FE,Learning indigo + progress green
86
+ 85,Coding Bootcamp,#0F172A,#1E293B,#22C55E,#020617,#F8FAFC,#334155,Terminal dark + success green
87
+ 86,Cybersecurity Platform,#00FF41,#0D0D0D,#FF3333,#000000,#E0E0E0,#1F1F1F,Matrix green + alert red
88
+ 87,Developer Tool / IDE,#1E293B,#334155,#22C55E,#0F172A,#F8FAFC,#475569,Code dark + run green
89
+ 88,Biotech / Life Sciences,#0EA5E9,#0284C7,#10B981,#F0F9FF,#0C4A6E,#BAE6FD,DNA blue + life green
90
+ 89,Space Tech / Aerospace,#F8FAFC,#94A3B8,#3B82F6,#0B0B10,#F8FAFC,#1E293B,Star white + launch blue
91
+ 90,Architecture / Interior,#171717,#404040,#D4AF37,#FFFFFF,#171717,#E5E5E5,Minimal black + accent gold
92
+ 91,Quantum Computing,#00FFFF,#7B61FF,#FF00FF,#050510,#E0E0FF,#333344,Quantum cyan + interference purple
93
+ 92,Biohacking / Longevity,#FF4D4D,#4D94FF,#00E676,#F5F5F7,#1C1C1E,#E5E5EA,Bio red/blue + vitality green
94
+ 93,Autonomous Systems,#00FF41,#008F11,#FF3333,#0D1117,#E6EDF3,#30363D,Terminal green + alert red
95
+ 94,Generative AI Art,#18181B,#3F3F46,#EC4899,#FAFAFA,#09090B,#E4E4E7,Canvas neutral + creative pink
96
+ 95,Spatial / Vision OS,#FFFFFF,#E5E5E5,#007AFF,#888888,#000000,#CCCCCC,Glass white + system blue
97
+ 96,Climate Tech,#059669,#10B981,#FBBF24,#ECFDF5,#064E3B,#A7F3D0,Nature green + solar gold