mcp-probe-kit 3.0.23 → 3.1.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 (141) hide show
  1. package/README.md +755 -779
  2. package/build/index.js +38 -40
  3. package/build/lib/__tests__/memory-injection.unit.test.js +1 -0
  4. package/build/lib/agents-md-template.js +32 -32
  5. package/build/lib/memory-client.d.ts +2 -0
  6. package/build/lib/memory-client.js +1 -0
  7. package/build/lib/memory-config.d.ts +2 -0
  8. package/build/lib/memory-config.js +1 -0
  9. package/build/lib/memory-orchestration.d.ts +4 -0
  10. package/build/lib/memory-orchestration.js +28 -5
  11. package/build/lib/skill-bridge.js +12 -12
  12. package/build/resources/index.d.ts +4 -0
  13. package/build/resources/index.js +4 -0
  14. package/build/resources/tool-params-guide.d.ts +571 -0
  15. package/build/resources/tool-params-guide.js +488 -0
  16. package/build/resources/ui-ux-data/guidelines/vercel-web-interface.json +1632 -1632
  17. package/build/resources/ui-ux-data/metadata.json +30 -30
  18. package/build/resources/ui-ux-data/shadcn/blocks.json +2541 -2541
  19. package/build/resources/ui-ux-data/shadcn/components.json +997 -997
  20. package/build/resources/ui-ux-data/themes/presets.json +483 -483
  21. package/build/schemas/index.d.ts +0 -22
  22. package/build/schemas/memory-tools.d.ts +0 -22
  23. package/build/schemas/memory-tools.js +0 -14
  24. package/build/tools/__tests__/read_memory_asset.unit.test.js +75 -0
  25. package/build/tools/__tests__/search_memory.unit.test.js +7 -1
  26. package/build/tools/analyze_project.d.ts +1 -0
  27. package/build/tools/analyze_project.js +527 -0
  28. package/build/tools/check_deps.d.ts +13 -0
  29. package/build/tools/check_deps.js +204 -0
  30. package/build/tools/code_insight.js +41 -41
  31. package/build/tools/convert.d.ts +13 -0
  32. package/build/tools/convert.js +599 -0
  33. package/build/tools/css_order.d.ts +13 -0
  34. package/build/tools/css_order.js +81 -0
  35. package/build/tools/debug.d.ts +13 -0
  36. package/build/tools/debug.js +131 -0
  37. package/build/tools/design2code.d.ts +20 -0
  38. package/build/tools/design2code.js +426 -0
  39. package/build/tools/detect_shell.d.ts +6 -0
  40. package/build/tools/detect_shell.js +151 -0
  41. package/build/tools/explain.d.ts +13 -0
  42. package/build/tools/explain.js +390 -0
  43. package/build/tools/fix.d.ts +13 -0
  44. package/build/tools/fix.js +303 -0
  45. package/build/tools/fix_bug.js +161 -161
  46. package/build/tools/gen_mock.d.ts +22 -0
  47. package/build/tools/gen_mock.js +269 -0
  48. package/build/tools/gen_skill.d.ts +13 -0
  49. package/build/tools/gen_skill.js +560 -0
  50. package/build/tools/genapi.d.ts +13 -0
  51. package/build/tools/genapi.js +174 -0
  52. package/build/tools/genchangelog.d.ts +13 -0
  53. package/build/tools/genchangelog.js +250 -0
  54. package/build/tools/gencommit.js +60 -60
  55. package/build/tools/gendoc.d.ts +13 -0
  56. package/build/tools/gendoc.js +232 -0
  57. package/build/tools/genpr.d.ts +13 -0
  58. package/build/tools/genpr.js +194 -0
  59. package/build/tools/genreadme.d.ts +13 -0
  60. package/build/tools/genreadme.js +626 -0
  61. package/build/tools/gensql.d.ts +13 -0
  62. package/build/tools/gensql.js +320 -0
  63. package/build/tools/genui.d.ts +13 -0
  64. package/build/tools/genui.js +803 -0
  65. package/build/tools/index.d.ts +0 -1
  66. package/build/tools/index.js +0 -1
  67. package/build/tools/init_component_catalog.d.ts +22 -0
  68. package/build/tools/init_component_catalog.js +809 -0
  69. package/build/tools/init_project_context.js +432 -432
  70. package/build/tools/init_setting.d.ts +13 -0
  71. package/build/tools/init_setting.js +47 -0
  72. package/build/tools/perf.d.ts +13 -0
  73. package/build/tools/perf.js +409 -0
  74. package/build/tools/read_memory_asset.js +2 -1
  75. package/build/tools/render_ui.d.ts +22 -0
  76. package/build/tools/render_ui.js +384 -0
  77. package/build/tools/resolve_conflict.d.ts +13 -0
  78. package/build/tools/resolve_conflict.js +349 -0
  79. package/build/tools/search_memory.js +1 -0
  80. package/build/tools/security_scan.d.ts +22 -0
  81. package/build/tools/security_scan.js +323 -0
  82. package/build/tools/split.d.ts +13 -0
  83. package/build/tools/split.js +599 -0
  84. package/build/tools/start_api.d.ts +13 -0
  85. package/build/tools/start_api.js +193 -0
  86. package/build/tools/start_bugfix.js +233 -233
  87. package/build/tools/start_doc.d.ts +13 -0
  88. package/build/tools/start_doc.js +207 -0
  89. package/build/tools/start_feature.js +117 -117
  90. package/build/tools/start_product.js +1 -1
  91. package/build/tools/start_refactor.d.ts +13 -0
  92. package/build/tools/start_refactor.js +188 -0
  93. package/build/tools/start_release.d.ts +13 -0
  94. package/build/tools/start_release.js +167 -0
  95. package/build/tools/start_review.d.ts +13 -0
  96. package/build/tools/start_review.js +175 -0
  97. package/build/tools/start_ui.js +399 -399
  98. package/build/tools/ui-ux-tools.js +290 -290
  99. package/build/utils/__tests__/vercel-guidelines-sync.unit.test.js +12 -12
  100. package/build/utils/themes-sync.js +8 -8
  101. package/package.json +81 -83
  102. package/build/lib/__tests__/memory-orchestration.unit.test.js +0 -84
  103. package/build/lib/__tests__/memory-payload.unit.test.js +0 -35
  104. package/build/lib/cursor-history-client.d.ts +0 -54
  105. package/build/lib/cursor-history-client.js +0 -240
  106. package/build/tools/__tests__/cursor-history.unit.test.js +0 -38
  107. package/build/tools/cursor_read_conversation.d.ts +0 -7
  108. package/build/tools/cursor_read_conversation.js +0 -36
  109. package/docs/.mcp-probe/layout.json +0 -11
  110. package/docs/CNAME +0 -1
  111. package/docs/assets/font/MaterialSymbolsOutlined.codepoints +0 -4102
  112. package/docs/assets/font/MaterialSymbolsOutlined.ttf +0 -0
  113. package/docs/assets/font/noto-sans-sc-400.ttf +0 -0
  114. package/docs/assets/font/noto-sans-sc-700.ttf +0 -0
  115. package/docs/assets/font/noto-sans-sc-900.ttf +0 -0
  116. package/docs/assets/js/i18n.js +0 -375
  117. package/docs/assets/js/tailwind.js +0 -83
  118. package/docs/assets/logo-zh.png +0 -0
  119. package/docs/assets/logo.png +0 -0
  120. package/docs/data/tools.js +0 -523
  121. package/docs/i18n/all-tools/en.json +0 -190
  122. package/docs/i18n/all-tools/ja.json +0 -171
  123. package/docs/i18n/all-tools/ko.json +0 -171
  124. package/docs/i18n/all-tools/zh-CN.json +0 -190
  125. package/docs/i18n/en.json +0 -626
  126. package/docs/i18n/ja.json +0 -602
  127. package/docs/i18n/ko.json +0 -602
  128. package/docs/i18n/zh-CN.json +0 -626
  129. package/docs/index.html +0 -327
  130. package/docs/memory-local-setup.md +0 -314
  131. package/docs/memory-local-setup.zh-CN.md +0 -283
  132. package/docs/pages/all-tools.html +0 -515
  133. package/docs/pages/examples.html +0 -717
  134. package/docs/pages/getting-started.html +0 -964
  135. package/docs/pages/migration.html +0 -308
  136. package/docs/specs/user-auth/design.md +0 -82
  137. package/docs/specs/user-auth/requirements.md +0 -52
  138. package/docs/specs/user-auth/tasks.md +0 -55
  139. /package/build/{lib/__tests__/memory-orchestration.unit.test.d.ts → tools/__tests__/read_memory_asset.unit.test.d.ts} +0 -0
  140. /package/build/{lib/__tests__/memory-payload.unit.test.d.ts → utils/design-docs-generator.d.ts} +0 -0
  141. /package/build/{tools/__tests__/cursor-history.unit.test.d.ts → utils/design-docs-generator.js} +0 -0
@@ -1,483 +1,483 @@
1
- [
2
- {
3
- "name": "zinc-neutral",
4
- "title": "Zinc Neutral",
5
- "description": "默认中性 SaaS 风格,低饱和、专业克制",
6
- "style": "new-york",
7
- "stack": "react",
8
- "baseColor": "zinc",
9
- "mood": "neutral professional",
10
- "bestFor": [
11
- "SaaS",
12
- "B2B",
13
- "Admin"
14
- ],
15
- "cssVarsLight": {
16
- "background": "0 0% 100%",
17
- "foreground": "240 10% 3.9%",
18
- "card": "0 0% 100%",
19
- "card-foreground": "240 10% 3.9%",
20
- "popover": "0 0% 100%",
21
- "popover-foreground": "240 10% 3.9%",
22
- "secondary": "240 4.8% 95.9%",
23
- "secondary-foreground": "240 5.9% 10%",
24
- "muted": "240 4.8% 95.9%",
25
- "muted-foreground": "240 3.8% 46.1%",
26
- "accent": "240 4.8% 95.9%",
27
- "accent-foreground": "240 5.9% 10%",
28
- "destructive": "0 84.2% 60.2%",
29
- "destructive-foreground": "0 0% 98%",
30
- "border": "240 5.9% 90%",
31
- "input": "240 5.9% 90%",
32
- "ring": "240 5.9% 10%",
33
- "radius": "0.5rem",
34
- "primary": "240 5.9% 10%",
35
- "primary-foreground": "0 0% 98%"
36
- },
37
- "cssVarsDark": {
38
- "background": "240 10% 3.9%",
39
- "foreground": "0 0% 98%",
40
- "card": "240 10% 3.9%",
41
- "card-foreground": "0 0% 98%",
42
- "popover": "240 10% 3.9%",
43
- "popover-foreground": "0 0% 98%",
44
- "secondary": "240 3.7% 15.9%",
45
- "secondary-foreground": "0 0% 98%",
46
- "muted": "240 3.7% 15.9%",
47
- "muted-foreground": "240 5% 64.9%",
48
- "accent": "240 3.7% 15.9%",
49
- "accent-foreground": "0 0% 98%",
50
- "destructive": "0 62.8% 30.6%",
51
- "destructive-foreground": "0 0% 98%",
52
- "border": "240 3.7% 15.9%",
53
- "input": "240 3.7% 15.9%",
54
- "ring": "0 0% 98%",
55
- "radius": "0.5rem",
56
- "primary": "0 0% 98%",
57
- "primary-foreground": "240 5.9% 10%"
58
- },
59
- "globalsCssSnippet": "@layer base {\n /* Theme: zinc-neutral — paste into globals.css */\n :root {\n --background: 0 0% 100%;\n --foreground: 240 10% 3.9%;\n --card: 0 0% 100%;\n --card-foreground: 240 10% 3.9%;\n --popover: 0 0% 100%;\n --popover-foreground: 240 10% 3.9%;\n --secondary: 240 4.8% 95.9%;\n --secondary-foreground: 240 5.9% 10%;\n --muted: 240 4.8% 95.9%;\n --muted-foreground: 240 3.8% 46.1%;\n --accent: 240 4.8% 95.9%;\n --accent-foreground: 240 5.9% 10%;\n --destructive: 0 84.2% 60.2%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 5.9% 90%;\n --input: 240 5.9% 90%;\n --ring: 240 5.9% 10%;\n --radius: 0.5rem;\n --primary: 240 5.9% 10%;\n --primary-foreground: 0 0% 98%;\n }\n .dark {\n --background: 240 10% 3.9%;\n --foreground: 0 0% 98%;\n --card: 240 10% 3.9%;\n --card-foreground: 0 0% 98%;\n --popover: 240 10% 3.9%;\n --popover-foreground: 0 0% 98%;\n --secondary: 240 3.7% 15.9%;\n --secondary-foreground: 0 0% 98%;\n --muted: 240 3.7% 15.9%;\n --muted-foreground: 240 5% 64.9%;\n --accent: 240 3.7% 15.9%;\n --accent-foreground: 0 0% 98%;\n --destructive: 0 62.8% 30.6%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 3.7% 15.9%;\n --input: 240 3.7% 15.9%;\n --ring: 0 0% 98%;\n --radius: 0.5rem;\n --primary: 0 0% 98%;\n --primary-foreground: 240 5.9% 10%;\n }\n}",
60
- "category": "ui-themes",
61
- "source": "mcp-probe-kit-curated-shadcn"
62
- },
63
- {
64
- "name": "slate-dashboard",
65
- "title": "Slate Dashboard",
66
- "description": "偏冷灰的数据看板与分析产品",
67
- "style": "new-york",
68
- "stack": "react",
69
- "baseColor": "slate",
70
- "mood": "cool analytical",
71
- "bestFor": [
72
- "Analytics Dashboard",
73
- "Fintech"
74
- ],
75
- "cssVarsLight": {
76
- "background": "0 0% 100%",
77
- "foreground": "240 10% 3.9%",
78
- "card": "0 0% 100%",
79
- "card-foreground": "240 10% 3.9%",
80
- "popover": "0 0% 100%",
81
- "popover-foreground": "240 10% 3.9%",
82
- "secondary": "240 4.8% 95.9%",
83
- "secondary-foreground": "240 5.9% 10%",
84
- "muted": "240 4.8% 95.9%",
85
- "muted-foreground": "240 3.8% 46.1%",
86
- "accent": "240 4.8% 95.9%",
87
- "accent-foreground": "240 5.9% 10%",
88
- "destructive": "0 84.2% 60.2%",
89
- "destructive-foreground": "0 0% 98%",
90
- "border": "240 5.9% 90%",
91
- "input": "240 5.9% 90%",
92
- "ring": "215.4 16.3% 36.9%",
93
- "radius": "0.5rem",
94
- "primary": "215.4 16.3% 36.9%",
95
- "primary-foreground": "0 0% 98%"
96
- },
97
- "cssVarsDark": {
98
- "background": "240 10% 3.9%",
99
- "foreground": "0 0% 98%",
100
- "card": "240 10% 3.9%",
101
- "card-foreground": "0 0% 98%",
102
- "popover": "240 10% 3.9%",
103
- "popover-foreground": "0 0% 98%",
104
- "secondary": "240 3.7% 15.9%",
105
- "secondary-foreground": "0 0% 98%",
106
- "muted": "240 3.7% 15.9%",
107
- "muted-foreground": "240 5% 64.9%",
108
- "accent": "240 3.7% 15.9%",
109
- "accent-foreground": "0 0% 98%",
110
- "destructive": "0 62.8% 30.6%",
111
- "destructive-foreground": "0 0% 98%",
112
- "border": "240 3.7% 15.9%",
113
- "input": "240 3.7% 15.9%",
114
- "ring": "210 40% 98%",
115
- "radius": "0.5rem",
116
- "primary": "210 40% 98%",
117
- "primary-foreground": "240 5.9% 10%"
118
- },
119
- "globalsCssSnippet": "@layer base {\n /* Theme: slate-dashboard — paste into globals.css */\n :root {\n --background: 0 0% 100%;\n --foreground: 240 10% 3.9%;\n --card: 0 0% 100%;\n --card-foreground: 240 10% 3.9%;\n --popover: 0 0% 100%;\n --popover-foreground: 240 10% 3.9%;\n --secondary: 240 4.8% 95.9%;\n --secondary-foreground: 240 5.9% 10%;\n --muted: 240 4.8% 95.9%;\n --muted-foreground: 240 3.8% 46.1%;\n --accent: 240 4.8% 95.9%;\n --accent-foreground: 240 5.9% 10%;\n --destructive: 0 84.2% 60.2%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 5.9% 90%;\n --input: 240 5.9% 90%;\n --ring: 215.4 16.3% 36.9%;\n --radius: 0.5rem;\n --primary: 215.4 16.3% 36.9%;\n --primary-foreground: 0 0% 98%;\n }\n .dark {\n --background: 240 10% 3.9%;\n --foreground: 0 0% 98%;\n --card: 240 10% 3.9%;\n --card-foreground: 0 0% 98%;\n --popover: 240 10% 3.9%;\n --popover-foreground: 0 0% 98%;\n --secondary: 240 3.7% 15.9%;\n --secondary-foreground: 0 0% 98%;\n --muted: 240 3.7% 15.9%;\n --muted-foreground: 240 5% 64.9%;\n --accent: 240 3.7% 15.9%;\n --accent-foreground: 0 0% 98%;\n --destructive: 0 62.8% 30.6%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 3.7% 15.9%;\n --input: 240 3.7% 15.9%;\n --ring: 210 40% 98%;\n --radius: 0.5rem;\n --primary: 210 40% 98%;\n --primary-foreground: 240 5.9% 10%;\n }\n}",
120
- "category": "ui-themes",
121
- "source": "mcp-probe-kit-curated-shadcn"
122
- },
123
- {
124
- "name": "blue-saas",
125
- "title": "Blue SaaS",
126
- "description": "常见 B2B 蓝色主色,清晰可信",
127
- "style": "new-york",
128
- "stack": "react",
129
- "baseColor": "blue",
130
- "mood": "trustworthy modern",
131
- "bestFor": [
132
- "SaaS",
133
- "B2B Service"
134
- ],
135
- "cssVarsLight": {
136
- "background": "0 0% 100%",
137
- "foreground": "240 10% 3.9%",
138
- "card": "0 0% 100%",
139
- "card-foreground": "240 10% 3.9%",
140
- "popover": "0 0% 100%",
141
- "popover-foreground": "240 10% 3.9%",
142
- "secondary": "240 4.8% 95.9%",
143
- "secondary-foreground": "240 5.9% 10%",
144
- "muted": "240 4.8% 95.9%",
145
- "muted-foreground": "240 3.8% 46.1%",
146
- "accent": "240 4.8% 95.9%",
147
- "accent-foreground": "240 5.9% 10%",
148
- "destructive": "0 84.2% 60.2%",
149
- "destructive-foreground": "0 0% 98%",
150
- "border": "240 5.9% 90%",
151
- "input": "240 5.9% 90%",
152
- "ring": "221.2 83.2% 53.3%",
153
- "radius": "0.5rem",
154
- "primary": "221.2 83.2% 53.3%",
155
- "primary-foreground": "0 0% 98%"
156
- },
157
- "cssVarsDark": {
158
- "background": "240 10% 3.9%",
159
- "foreground": "0 0% 98%",
160
- "card": "240 10% 3.9%",
161
- "card-foreground": "0 0% 98%",
162
- "popover": "240 10% 3.9%",
163
- "popover-foreground": "0 0% 98%",
164
- "secondary": "240 3.7% 15.9%",
165
- "secondary-foreground": "0 0% 98%",
166
- "muted": "240 3.7% 15.9%",
167
- "muted-foreground": "240 5% 64.9%",
168
- "accent": "240 3.7% 15.9%",
169
- "accent-foreground": "0 0% 98%",
170
- "destructive": "0 62.8% 30.6%",
171
- "destructive-foreground": "0 0% 98%",
172
- "border": "240 3.7% 15.9%",
173
- "input": "240 3.7% 15.9%",
174
- "ring": "217.2 91.2% 59.8%",
175
- "radius": "0.5rem",
176
- "primary": "217.2 91.2% 59.8%",
177
- "primary-foreground": "240 5.9% 10%"
178
- },
179
- "globalsCssSnippet": "@layer base {\n /* Theme: blue-saas — paste into globals.css */\n :root {\n --background: 0 0% 100%;\n --foreground: 240 10% 3.9%;\n --card: 0 0% 100%;\n --card-foreground: 240 10% 3.9%;\n --popover: 0 0% 100%;\n --popover-foreground: 240 10% 3.9%;\n --secondary: 240 4.8% 95.9%;\n --secondary-foreground: 240 5.9% 10%;\n --muted: 240 4.8% 95.9%;\n --muted-foreground: 240 3.8% 46.1%;\n --accent: 240 4.8% 95.9%;\n --accent-foreground: 240 5.9% 10%;\n --destructive: 0 84.2% 60.2%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 5.9% 90%;\n --input: 240 5.9% 90%;\n --ring: 221.2 83.2% 53.3%;\n --radius: 0.5rem;\n --primary: 221.2 83.2% 53.3%;\n --primary-foreground: 0 0% 98%;\n }\n .dark {\n --background: 240 10% 3.9%;\n --foreground: 0 0% 98%;\n --card: 240 10% 3.9%;\n --card-foreground: 0 0% 98%;\n --popover: 240 10% 3.9%;\n --popover-foreground: 0 0% 98%;\n --secondary: 240 3.7% 15.9%;\n --secondary-foreground: 0 0% 98%;\n --muted: 240 3.7% 15.9%;\n --muted-foreground: 240 5% 64.9%;\n --accent: 240 3.7% 15.9%;\n --accent-foreground: 0 0% 98%;\n --destructive: 0 62.8% 30.6%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 3.7% 15.9%;\n --input: 240 3.7% 15.9%;\n --ring: 217.2 91.2% 59.8%;\n --radius: 0.5rem;\n --primary: 217.2 91.2% 59.8%;\n --primary-foreground: 240 5.9% 10%;\n }\n}",
180
- "category": "ui-themes",
181
- "source": "mcp-probe-kit-curated-shadcn"
182
- },
183
- {
184
- "name": "violet-creative",
185
- "title": "Violet Creative",
186
- "description": "偏创意工具/设计产品的紫色主色",
187
- "style": "new-york",
188
- "stack": "react",
189
- "baseColor": "violet",
190
- "mood": "creative premium",
191
- "bestFor": [
192
- "Creative Agency",
193
- "Portfolio"
194
- ],
195
- "cssVarsLight": {
196
- "background": "0 0% 100%",
197
- "foreground": "240 10% 3.9%",
198
- "card": "0 0% 100%",
199
- "card-foreground": "240 10% 3.9%",
200
- "popover": "0 0% 100%",
201
- "popover-foreground": "240 10% 3.9%",
202
- "secondary": "240 4.8% 95.9%",
203
- "secondary-foreground": "240 5.9% 10%",
204
- "muted": "240 4.8% 95.9%",
205
- "muted-foreground": "240 3.8% 46.1%",
206
- "accent": "240 4.8% 95.9%",
207
- "accent-foreground": "240 5.9% 10%",
208
- "destructive": "0 84.2% 60.2%",
209
- "destructive-foreground": "0 0% 98%",
210
- "border": "240 5.9% 90%",
211
- "input": "240 5.9% 90%",
212
- "ring": "262.1 83.3% 57.8%",
213
- "radius": "0.5rem",
214
- "primary": "262.1 83.3% 57.8%",
215
- "primary-foreground": "0 0% 98%"
216
- },
217
- "cssVarsDark": {
218
- "background": "240 10% 3.9%",
219
- "foreground": "0 0% 98%",
220
- "card": "240 10% 3.9%",
221
- "card-foreground": "0 0% 98%",
222
- "popover": "240 10% 3.9%",
223
- "popover-foreground": "0 0% 98%",
224
- "secondary": "240 3.7% 15.9%",
225
- "secondary-foreground": "0 0% 98%",
226
- "muted": "240 3.7% 15.9%",
227
- "muted-foreground": "240 5% 64.9%",
228
- "accent": "240 3.7% 15.9%",
229
- "accent-foreground": "0 0% 98%",
230
- "destructive": "0 62.8% 30.6%",
231
- "destructive-foreground": "0 0% 98%",
232
- "border": "240 3.7% 15.9%",
233
- "input": "240 3.7% 15.9%",
234
- "ring": "263.4 70% 50.4%",
235
- "radius": "0.5rem",
236
- "primary": "263.4 70% 50.4%",
237
- "primary-foreground": "240 5.9% 10%"
238
- },
239
- "globalsCssSnippet": "@layer base {\n /* Theme: violet-creative — paste into globals.css */\n :root {\n --background: 0 0% 100%;\n --foreground: 240 10% 3.9%;\n --card: 0 0% 100%;\n --card-foreground: 240 10% 3.9%;\n --popover: 0 0% 100%;\n --popover-foreground: 240 10% 3.9%;\n --secondary: 240 4.8% 95.9%;\n --secondary-foreground: 240 5.9% 10%;\n --muted: 240 4.8% 95.9%;\n --muted-foreground: 240 3.8% 46.1%;\n --accent: 240 4.8% 95.9%;\n --accent-foreground: 240 5.9% 10%;\n --destructive: 0 84.2% 60.2%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 5.9% 90%;\n --input: 240 5.9% 90%;\n --ring: 262.1 83.3% 57.8%;\n --radius: 0.5rem;\n --primary: 262.1 83.3% 57.8%;\n --primary-foreground: 0 0% 98%;\n }\n .dark {\n --background: 240 10% 3.9%;\n --foreground: 0 0% 98%;\n --card: 240 10% 3.9%;\n --card-foreground: 0 0% 98%;\n --popover: 240 10% 3.9%;\n --popover-foreground: 0 0% 98%;\n --secondary: 240 3.7% 15.9%;\n --secondary-foreground: 0 0% 98%;\n --muted: 240 3.7% 15.9%;\n --muted-foreground: 240 5% 64.9%;\n --accent: 240 3.7% 15.9%;\n --accent-foreground: 0 0% 98%;\n --destructive: 0 62.8% 30.6%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 3.7% 15.9%;\n --input: 240 3.7% 15.9%;\n --ring: 263.4 70% 50.4%;\n --radius: 0.5rem;\n --primary: 263.4 70% 50.4%;\n --primary-foreground: 240 5.9% 10%;\n }\n}",
240
- "category": "ui-themes",
241
- "source": "mcp-probe-kit-curated-shadcn"
242
- },
243
- {
244
- "name": "rose-beauty",
245
- "title": "Rose Beauty",
246
- "description": "美妆/生活方式产品的柔和玫瑰色",
247
- "style": "new-york",
248
- "stack": "react",
249
- "baseColor": "rose",
250
- "mood": "soft elegant",
251
- "bestFor": [
252
- "Beauty",
253
- "E-commerce"
254
- ],
255
- "cssVarsLight": {
256
- "background": "0 0% 100%",
257
- "foreground": "240 10% 3.9%",
258
- "card": "0 0% 100%",
259
- "card-foreground": "240 10% 3.9%",
260
- "popover": "0 0% 100%",
261
- "popover-foreground": "240 10% 3.9%",
262
- "secondary": "240 4.8% 95.9%",
263
- "secondary-foreground": "240 5.9% 10%",
264
- "muted": "240 4.8% 95.9%",
265
- "muted-foreground": "240 3.8% 46.1%",
266
- "accent": "240 4.8% 95.9%",
267
- "accent-foreground": "240 5.9% 10%",
268
- "destructive": "0 84.2% 60.2%",
269
- "destructive-foreground": "0 0% 98%",
270
- "border": "240 5.9% 90%",
271
- "input": "240 5.9% 90%",
272
- "ring": "346.8 77.2% 49.8%",
273
- "radius": "0.5rem",
274
- "primary": "346.8 77.2% 49.8%",
275
- "primary-foreground": "0 0% 98%"
276
- },
277
- "cssVarsDark": {
278
- "background": "240 10% 3.9%",
279
- "foreground": "0 0% 98%",
280
- "card": "240 10% 3.9%",
281
- "card-foreground": "0 0% 98%",
282
- "popover": "240 10% 3.9%",
283
- "popover-foreground": "0 0% 98%",
284
- "secondary": "240 3.7% 15.9%",
285
- "secondary-foreground": "0 0% 98%",
286
- "muted": "240 3.7% 15.9%",
287
- "muted-foreground": "240 5% 64.9%",
288
- "accent": "240 3.7% 15.9%",
289
- "accent-foreground": "0 0% 98%",
290
- "destructive": "0 62.8% 30.6%",
291
- "destructive-foreground": "0 0% 98%",
292
- "border": "240 3.7% 15.9%",
293
- "input": "240 3.7% 15.9%",
294
- "ring": "346.8 77.2% 49.8%",
295
- "radius": "0.5rem",
296
- "primary": "346.8 77.2% 49.8%",
297
- "primary-foreground": "240 5.9% 10%"
298
- },
299
- "globalsCssSnippet": "@layer base {\n /* Theme: rose-beauty — paste into globals.css */\n :root {\n --background: 0 0% 100%;\n --foreground: 240 10% 3.9%;\n --card: 0 0% 100%;\n --card-foreground: 240 10% 3.9%;\n --popover: 0 0% 100%;\n --popover-foreground: 240 10% 3.9%;\n --secondary: 240 4.8% 95.9%;\n --secondary-foreground: 240 5.9% 10%;\n --muted: 240 4.8% 95.9%;\n --muted-foreground: 240 3.8% 46.1%;\n --accent: 240 4.8% 95.9%;\n --accent-foreground: 240 5.9% 10%;\n --destructive: 0 84.2% 60.2%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 5.9% 90%;\n --input: 240 5.9% 90%;\n --ring: 346.8 77.2% 49.8%;\n --radius: 0.5rem;\n --primary: 346.8 77.2% 49.8%;\n --primary-foreground: 0 0% 98%;\n }\n .dark {\n --background: 240 10% 3.9%;\n --foreground: 0 0% 98%;\n --card: 240 10% 3.9%;\n --card-foreground: 0 0% 98%;\n --popover: 240 10% 3.9%;\n --popover-foreground: 0 0% 98%;\n --secondary: 240 3.7% 15.9%;\n --secondary-foreground: 0 0% 98%;\n --muted: 240 3.7% 15.9%;\n --muted-foreground: 240 5% 64.9%;\n --accent: 240 3.7% 15.9%;\n --accent-foreground: 0 0% 98%;\n --destructive: 0 62.8% 30.6%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 3.7% 15.9%;\n --input: 240 3.7% 15.9%;\n --ring: 346.8 77.2% 49.8%;\n --radius: 0.5rem;\n --primary: 346.8 77.2% 49.8%;\n --primary-foreground: 240 5.9% 10%;\n }\n}",
300
- "category": "ui-themes",
301
- "source": "mcp-probe-kit-curated-shadcn"
302
- },
303
- {
304
- "name": "green-health",
305
- "title": "Green Health",
306
- "description": "医疗/健康类产品的绿色主色",
307
- "style": "new-york",
308
- "stack": "react",
309
- "baseColor": "green",
310
- "mood": "calm trustworthy",
311
- "bestFor": [
312
- "Healthcare App",
313
- "Educational App"
314
- ],
315
- "cssVarsLight": {
316
- "background": "0 0% 100%",
317
- "foreground": "240 10% 3.9%",
318
- "card": "0 0% 100%",
319
- "card-foreground": "240 10% 3.9%",
320
- "popover": "0 0% 100%",
321
- "popover-foreground": "240 10% 3.9%",
322
- "secondary": "240 4.8% 95.9%",
323
- "secondary-foreground": "240 5.9% 10%",
324
- "muted": "240 4.8% 95.9%",
325
- "muted-foreground": "240 3.8% 46.1%",
326
- "accent": "240 4.8% 95.9%",
327
- "accent-foreground": "240 5.9% 10%",
328
- "destructive": "0 84.2% 60.2%",
329
- "destructive-foreground": "0 0% 98%",
330
- "border": "240 5.9% 90%",
331
- "input": "240 5.9% 90%",
332
- "ring": "142.1 76.2% 36.3%",
333
- "radius": "0.5rem",
334
- "primary": "142.1 76.2% 36.3%",
335
- "primary-foreground": "0 0% 98%"
336
- },
337
- "cssVarsDark": {
338
- "background": "240 10% 3.9%",
339
- "foreground": "0 0% 98%",
340
- "card": "240 10% 3.9%",
341
- "card-foreground": "0 0% 98%",
342
- "popover": "240 10% 3.9%",
343
- "popover-foreground": "0 0% 98%",
344
- "secondary": "240 3.7% 15.9%",
345
- "secondary-foreground": "0 0% 98%",
346
- "muted": "240 3.7% 15.9%",
347
- "muted-foreground": "240 5% 64.9%",
348
- "accent": "240 3.7% 15.9%",
349
- "accent-foreground": "0 0% 98%",
350
- "destructive": "0 62.8% 30.6%",
351
- "destructive-foreground": "0 0% 98%",
352
- "border": "240 3.7% 15.9%",
353
- "input": "240 3.7% 15.9%",
354
- "ring": "142.1 70.6% 45.3%",
355
- "radius": "0.5rem",
356
- "primary": "142.1 70.6% 45.3%",
357
- "primary-foreground": "240 5.9% 10%"
358
- },
359
- "globalsCssSnippet": "@layer base {\n /* Theme: green-health — paste into globals.css */\n :root {\n --background: 0 0% 100%;\n --foreground: 240 10% 3.9%;\n --card: 0 0% 100%;\n --card-foreground: 240 10% 3.9%;\n --popover: 0 0% 100%;\n --popover-foreground: 240 10% 3.9%;\n --secondary: 240 4.8% 95.9%;\n --secondary-foreground: 240 5.9% 10%;\n --muted: 240 4.8% 95.9%;\n --muted-foreground: 240 3.8% 46.1%;\n --accent: 240 4.8% 95.9%;\n --accent-foreground: 240 5.9% 10%;\n --destructive: 0 84.2% 60.2%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 5.9% 90%;\n --input: 240 5.9% 90%;\n --ring: 142.1 76.2% 36.3%;\n --radius: 0.5rem;\n --primary: 142.1 76.2% 36.3%;\n --primary-foreground: 0 0% 98%;\n }\n .dark {\n --background: 240 10% 3.9%;\n --foreground: 0 0% 98%;\n --card: 240 10% 3.9%;\n --card-foreground: 0 0% 98%;\n --popover: 240 10% 3.9%;\n --popover-foreground: 0 0% 98%;\n --secondary: 240 3.7% 15.9%;\n --secondary-foreground: 0 0% 98%;\n --muted: 240 3.7% 15.9%;\n --muted-foreground: 240 5% 64.9%;\n --accent: 240 3.7% 15.9%;\n --accent-foreground: 0 0% 98%;\n --destructive: 0 62.8% 30.6%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 3.7% 15.9%;\n --input: 240 3.7% 15.9%;\n --ring: 142.1 70.6% 45.3%;\n --radius: 0.5rem;\n --primary: 142.1 70.6% 45.3%;\n --primary-foreground: 240 5.9% 10%;\n }\n}",
360
- "category": "ui-themes",
361
- "source": "mcp-probe-kit-curated-shadcn"
362
- },
363
- {
364
- "name": "orange-energy",
365
- "title": "Orange Energy",
366
- "description": "活动/增长类产品的橙色主色",
367
- "style": "new-york",
368
- "stack": "react",
369
- "baseColor": "orange",
370
- "mood": "energetic friendly",
371
- "bestFor": [
372
- "Social Media App",
373
- "Government/Public Service"
374
- ],
375
- "cssVarsLight": {
376
- "background": "0 0% 100%",
377
- "foreground": "240 10% 3.9%",
378
- "card": "0 0% 100%",
379
- "card-foreground": "240 10% 3.9%",
380
- "popover": "0 0% 100%",
381
- "popover-foreground": "240 10% 3.9%",
382
- "secondary": "240 4.8% 95.9%",
383
- "secondary-foreground": "240 5.9% 10%",
384
- "muted": "240 4.8% 95.9%",
385
- "muted-foreground": "240 3.8% 46.1%",
386
- "accent": "240 4.8% 95.9%",
387
- "accent-foreground": "240 5.9% 10%",
388
- "destructive": "0 84.2% 60.2%",
389
- "destructive-foreground": "0 0% 98%",
390
- "border": "240 5.9% 90%",
391
- "input": "240 5.9% 90%",
392
- "ring": "24.6 95% 53.1%",
393
- "radius": "0.5rem",
394
- "primary": "24.6 95% 53.1%",
395
- "primary-foreground": "0 0% 98%"
396
- },
397
- "cssVarsDark": {
398
- "background": "240 10% 3.9%",
399
- "foreground": "0 0% 98%",
400
- "card": "240 10% 3.9%",
401
- "card-foreground": "0 0% 98%",
402
- "popover": "240 10% 3.9%",
403
- "popover-foreground": "0 0% 98%",
404
- "secondary": "240 3.7% 15.9%",
405
- "secondary-foreground": "0 0% 98%",
406
- "muted": "240 3.7% 15.9%",
407
- "muted-foreground": "240 5% 64.9%",
408
- "accent": "240 3.7% 15.9%",
409
- "accent-foreground": "0 0% 98%",
410
- "destructive": "0 62.8% 30.6%",
411
- "destructive-foreground": "0 0% 98%",
412
- "border": "240 3.7% 15.9%",
413
- "input": "240 3.7% 15.9%",
414
- "ring": "20.5 90.2% 48.2%",
415
- "radius": "0.5rem",
416
- "primary": "20.5 90.2% 48.2%",
417
- "primary-foreground": "240 5.9% 10%"
418
- },
419
- "globalsCssSnippet": "@layer base {\n /* Theme: orange-energy — paste into globals.css */\n :root {\n --background: 0 0% 100%;\n --foreground: 240 10% 3.9%;\n --card: 0 0% 100%;\n --card-foreground: 240 10% 3.9%;\n --popover: 0 0% 100%;\n --popover-foreground: 240 10% 3.9%;\n --secondary: 240 4.8% 95.9%;\n --secondary-foreground: 240 5.9% 10%;\n --muted: 240 4.8% 95.9%;\n --muted-foreground: 240 3.8% 46.1%;\n --accent: 240 4.8% 95.9%;\n --accent-foreground: 240 5.9% 10%;\n --destructive: 0 84.2% 60.2%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 5.9% 90%;\n --input: 240 5.9% 90%;\n --ring: 24.6 95% 53.1%;\n --radius: 0.5rem;\n --primary: 24.6 95% 53.1%;\n --primary-foreground: 0 0% 98%;\n }\n .dark {\n --background: 240 10% 3.9%;\n --foreground: 0 0% 98%;\n --card: 240 10% 3.9%;\n --card-foreground: 0 0% 98%;\n --popover: 240 10% 3.9%;\n --popover-foreground: 0 0% 98%;\n --secondary: 240 3.7% 15.9%;\n --secondary-foreground: 0 0% 98%;\n --muted: 240 3.7% 15.9%;\n --muted-foreground: 240 5% 64.9%;\n --accent: 240 3.7% 15.9%;\n --accent-foreground: 0 0% 98%;\n --destructive: 0 62.8% 30.6%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 3.7% 15.9%;\n --input: 240 3.7% 15.9%;\n --ring: 20.5 90.2% 48.2%;\n --radius: 0.5rem;\n --primary: 20.5 90.2% 48.2%;\n --primary-foreground: 240 5.9% 10%;\n }\n}",
420
- "category": "ui-themes",
421
- "source": "mcp-probe-kit-curated-shadcn"
422
- },
423
- {
424
- "name": "stone-editorial",
425
- "title": "Stone Editorial",
426
- "description": "内容/媒体站点常用的暖灰 editorial 感",
427
- "style": "new-york",
428
- "stack": "react",
429
- "baseColor": "stone",
430
- "mood": "editorial warm",
431
- "bestFor": [
432
- "Portfolio/Personal",
433
- "Educational App"
434
- ],
435
- "cssVarsLight": {
436
- "background": "0 0% 100%",
437
- "foreground": "240 10% 3.9%",
438
- "card": "0 0% 100%",
439
- "card-foreground": "240 10% 3.9%",
440
- "popover": "0 0% 100%",
441
- "popover-foreground": "240 10% 3.9%",
442
- "secondary": "240 4.8% 95.9%",
443
- "secondary-foreground": "240 5.9% 10%",
444
- "muted": "240 4.8% 95.9%",
445
- "muted-foreground": "240 3.8% 46.1%",
446
- "accent": "240 4.8% 95.9%",
447
- "accent-foreground": "240 5.9% 10%",
448
- "destructive": "0 84.2% 60.2%",
449
- "destructive-foreground": "0 0% 98%",
450
- "border": "240 5.9% 90%",
451
- "input": "240 5.9% 90%",
452
- "ring": "25 5.3% 24.7%",
453
- "radius": "0.5rem",
454
- "primary": "25 5.3% 24.7%",
455
- "primary-foreground": "0 0% 98%"
456
- },
457
- "cssVarsDark": {
458
- "background": "240 10% 3.9%",
459
- "foreground": "0 0% 98%",
460
- "card": "240 10% 3.9%",
461
- "card-foreground": "0 0% 98%",
462
- "popover": "240 10% 3.9%",
463
- "popover-foreground": "0 0% 98%",
464
- "secondary": "240 3.7% 15.9%",
465
- "secondary-foreground": "0 0% 98%",
466
- "muted": "240 3.7% 15.9%",
467
- "muted-foreground": "240 5% 64.9%",
468
- "accent": "240 3.7% 15.9%",
469
- "accent-foreground": "0 0% 98%",
470
- "destructive": "0 62.8% 30.6%",
471
- "destructive-foreground": "0 0% 98%",
472
- "border": "240 3.7% 15.9%",
473
- "input": "240 3.7% 15.9%",
474
- "ring": "60 9.1% 97.8%",
475
- "radius": "0.5rem",
476
- "primary": "60 9.1% 97.8%",
477
- "primary-foreground": "240 5.9% 10%"
478
- },
479
- "globalsCssSnippet": "@layer base {\n /* Theme: stone-editorial — paste into globals.css */\n :root {\n --background: 0 0% 100%;\n --foreground: 240 10% 3.9%;\n --card: 0 0% 100%;\n --card-foreground: 240 10% 3.9%;\n --popover: 0 0% 100%;\n --popover-foreground: 240 10% 3.9%;\n --secondary: 240 4.8% 95.9%;\n --secondary-foreground: 240 5.9% 10%;\n --muted: 240 4.8% 95.9%;\n --muted-foreground: 240 3.8% 46.1%;\n --accent: 240 4.8% 95.9%;\n --accent-foreground: 240 5.9% 10%;\n --destructive: 0 84.2% 60.2%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 5.9% 90%;\n --input: 240 5.9% 90%;\n --ring: 25 5.3% 24.7%;\n --radius: 0.5rem;\n --primary: 25 5.3% 24.7%;\n --primary-foreground: 0 0% 98%;\n }\n .dark {\n --background: 240 10% 3.9%;\n --foreground: 0 0% 98%;\n --card: 240 10% 3.9%;\n --card-foreground: 0 0% 98%;\n --popover: 240 10% 3.9%;\n --popover-foreground: 0 0% 98%;\n --secondary: 240 3.7% 15.9%;\n --secondary-foreground: 0 0% 98%;\n --muted: 240 3.7% 15.9%;\n --muted-foreground: 240 5% 64.9%;\n --accent: 240 3.7% 15.9%;\n --accent-foreground: 0 0% 98%;\n --destructive: 0 62.8% 30.6%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 3.7% 15.9%;\n --input: 240 3.7% 15.9%;\n --ring: 60 9.1% 97.8%;\n --radius: 0.5rem;\n --primary: 60 9.1% 97.8%;\n --primary-foreground: 240 5.9% 10%;\n }\n}",
480
- "category": "ui-themes",
481
- "source": "mcp-probe-kit-curated-shadcn"
482
- }
483
- ]
1
+ [
2
+ {
3
+ "name": "zinc-neutral",
4
+ "title": "Zinc Neutral",
5
+ "description": "默认中性 SaaS 风格,低饱和、专业克制",
6
+ "style": "new-york",
7
+ "stack": "react",
8
+ "baseColor": "zinc",
9
+ "mood": "neutral professional",
10
+ "bestFor": [
11
+ "SaaS",
12
+ "B2B",
13
+ "Admin"
14
+ ],
15
+ "cssVarsLight": {
16
+ "background": "0 0% 100%",
17
+ "foreground": "240 10% 3.9%",
18
+ "card": "0 0% 100%",
19
+ "card-foreground": "240 10% 3.9%",
20
+ "popover": "0 0% 100%",
21
+ "popover-foreground": "240 10% 3.9%",
22
+ "secondary": "240 4.8% 95.9%",
23
+ "secondary-foreground": "240 5.9% 10%",
24
+ "muted": "240 4.8% 95.9%",
25
+ "muted-foreground": "240 3.8% 46.1%",
26
+ "accent": "240 4.8% 95.9%",
27
+ "accent-foreground": "240 5.9% 10%",
28
+ "destructive": "0 84.2% 60.2%",
29
+ "destructive-foreground": "0 0% 98%",
30
+ "border": "240 5.9% 90%",
31
+ "input": "240 5.9% 90%",
32
+ "ring": "240 5.9% 10%",
33
+ "radius": "0.5rem",
34
+ "primary": "240 5.9% 10%",
35
+ "primary-foreground": "0 0% 98%"
36
+ },
37
+ "cssVarsDark": {
38
+ "background": "240 10% 3.9%",
39
+ "foreground": "0 0% 98%",
40
+ "card": "240 10% 3.9%",
41
+ "card-foreground": "0 0% 98%",
42
+ "popover": "240 10% 3.9%",
43
+ "popover-foreground": "0 0% 98%",
44
+ "secondary": "240 3.7% 15.9%",
45
+ "secondary-foreground": "0 0% 98%",
46
+ "muted": "240 3.7% 15.9%",
47
+ "muted-foreground": "240 5% 64.9%",
48
+ "accent": "240 3.7% 15.9%",
49
+ "accent-foreground": "0 0% 98%",
50
+ "destructive": "0 62.8% 30.6%",
51
+ "destructive-foreground": "0 0% 98%",
52
+ "border": "240 3.7% 15.9%",
53
+ "input": "240 3.7% 15.9%",
54
+ "ring": "0 0% 98%",
55
+ "radius": "0.5rem",
56
+ "primary": "0 0% 98%",
57
+ "primary-foreground": "240 5.9% 10%"
58
+ },
59
+ "globalsCssSnippet": "@layer base {\n /* Theme: zinc-neutral — paste into globals.css */\n :root {\n --background: 0 0% 100%;\n --foreground: 240 10% 3.9%;\n --card: 0 0% 100%;\n --card-foreground: 240 10% 3.9%;\n --popover: 0 0% 100%;\n --popover-foreground: 240 10% 3.9%;\n --secondary: 240 4.8% 95.9%;\n --secondary-foreground: 240 5.9% 10%;\n --muted: 240 4.8% 95.9%;\n --muted-foreground: 240 3.8% 46.1%;\n --accent: 240 4.8% 95.9%;\n --accent-foreground: 240 5.9% 10%;\n --destructive: 0 84.2% 60.2%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 5.9% 90%;\n --input: 240 5.9% 90%;\n --ring: 240 5.9% 10%;\n --radius: 0.5rem;\n --primary: 240 5.9% 10%;\n --primary-foreground: 0 0% 98%;\n }\n .dark {\n --background: 240 10% 3.9%;\n --foreground: 0 0% 98%;\n --card: 240 10% 3.9%;\n --card-foreground: 0 0% 98%;\n --popover: 240 10% 3.9%;\n --popover-foreground: 0 0% 98%;\n --secondary: 240 3.7% 15.9%;\n --secondary-foreground: 0 0% 98%;\n --muted: 240 3.7% 15.9%;\n --muted-foreground: 240 5% 64.9%;\n --accent: 240 3.7% 15.9%;\n --accent-foreground: 0 0% 98%;\n --destructive: 0 62.8% 30.6%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 3.7% 15.9%;\n --input: 240 3.7% 15.9%;\n --ring: 0 0% 98%;\n --radius: 0.5rem;\n --primary: 0 0% 98%;\n --primary-foreground: 240 5.9% 10%;\n }\n}",
60
+ "category": "ui-themes",
61
+ "source": "mcp-probe-kit-curated-shadcn"
62
+ },
63
+ {
64
+ "name": "slate-dashboard",
65
+ "title": "Slate Dashboard",
66
+ "description": "偏冷灰的数据看板与分析产品",
67
+ "style": "new-york",
68
+ "stack": "react",
69
+ "baseColor": "slate",
70
+ "mood": "cool analytical",
71
+ "bestFor": [
72
+ "Analytics Dashboard",
73
+ "Fintech"
74
+ ],
75
+ "cssVarsLight": {
76
+ "background": "0 0% 100%",
77
+ "foreground": "240 10% 3.9%",
78
+ "card": "0 0% 100%",
79
+ "card-foreground": "240 10% 3.9%",
80
+ "popover": "0 0% 100%",
81
+ "popover-foreground": "240 10% 3.9%",
82
+ "secondary": "240 4.8% 95.9%",
83
+ "secondary-foreground": "240 5.9% 10%",
84
+ "muted": "240 4.8% 95.9%",
85
+ "muted-foreground": "240 3.8% 46.1%",
86
+ "accent": "240 4.8% 95.9%",
87
+ "accent-foreground": "240 5.9% 10%",
88
+ "destructive": "0 84.2% 60.2%",
89
+ "destructive-foreground": "0 0% 98%",
90
+ "border": "240 5.9% 90%",
91
+ "input": "240 5.9% 90%",
92
+ "ring": "215.4 16.3% 36.9%",
93
+ "radius": "0.5rem",
94
+ "primary": "215.4 16.3% 36.9%",
95
+ "primary-foreground": "0 0% 98%"
96
+ },
97
+ "cssVarsDark": {
98
+ "background": "240 10% 3.9%",
99
+ "foreground": "0 0% 98%",
100
+ "card": "240 10% 3.9%",
101
+ "card-foreground": "0 0% 98%",
102
+ "popover": "240 10% 3.9%",
103
+ "popover-foreground": "0 0% 98%",
104
+ "secondary": "240 3.7% 15.9%",
105
+ "secondary-foreground": "0 0% 98%",
106
+ "muted": "240 3.7% 15.9%",
107
+ "muted-foreground": "240 5% 64.9%",
108
+ "accent": "240 3.7% 15.9%",
109
+ "accent-foreground": "0 0% 98%",
110
+ "destructive": "0 62.8% 30.6%",
111
+ "destructive-foreground": "0 0% 98%",
112
+ "border": "240 3.7% 15.9%",
113
+ "input": "240 3.7% 15.9%",
114
+ "ring": "210 40% 98%",
115
+ "radius": "0.5rem",
116
+ "primary": "210 40% 98%",
117
+ "primary-foreground": "240 5.9% 10%"
118
+ },
119
+ "globalsCssSnippet": "@layer base {\n /* Theme: slate-dashboard — paste into globals.css */\n :root {\n --background: 0 0% 100%;\n --foreground: 240 10% 3.9%;\n --card: 0 0% 100%;\n --card-foreground: 240 10% 3.9%;\n --popover: 0 0% 100%;\n --popover-foreground: 240 10% 3.9%;\n --secondary: 240 4.8% 95.9%;\n --secondary-foreground: 240 5.9% 10%;\n --muted: 240 4.8% 95.9%;\n --muted-foreground: 240 3.8% 46.1%;\n --accent: 240 4.8% 95.9%;\n --accent-foreground: 240 5.9% 10%;\n --destructive: 0 84.2% 60.2%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 5.9% 90%;\n --input: 240 5.9% 90%;\n --ring: 215.4 16.3% 36.9%;\n --radius: 0.5rem;\n --primary: 215.4 16.3% 36.9%;\n --primary-foreground: 0 0% 98%;\n }\n .dark {\n --background: 240 10% 3.9%;\n --foreground: 0 0% 98%;\n --card: 240 10% 3.9%;\n --card-foreground: 0 0% 98%;\n --popover: 240 10% 3.9%;\n --popover-foreground: 0 0% 98%;\n --secondary: 240 3.7% 15.9%;\n --secondary-foreground: 0 0% 98%;\n --muted: 240 3.7% 15.9%;\n --muted-foreground: 240 5% 64.9%;\n --accent: 240 3.7% 15.9%;\n --accent-foreground: 0 0% 98%;\n --destructive: 0 62.8% 30.6%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 3.7% 15.9%;\n --input: 240 3.7% 15.9%;\n --ring: 210 40% 98%;\n --radius: 0.5rem;\n --primary: 210 40% 98%;\n --primary-foreground: 240 5.9% 10%;\n }\n}",
120
+ "category": "ui-themes",
121
+ "source": "mcp-probe-kit-curated-shadcn"
122
+ },
123
+ {
124
+ "name": "blue-saas",
125
+ "title": "Blue SaaS",
126
+ "description": "常见 B2B 蓝色主色,清晰可信",
127
+ "style": "new-york",
128
+ "stack": "react",
129
+ "baseColor": "blue",
130
+ "mood": "trustworthy modern",
131
+ "bestFor": [
132
+ "SaaS",
133
+ "B2B Service"
134
+ ],
135
+ "cssVarsLight": {
136
+ "background": "0 0% 100%",
137
+ "foreground": "240 10% 3.9%",
138
+ "card": "0 0% 100%",
139
+ "card-foreground": "240 10% 3.9%",
140
+ "popover": "0 0% 100%",
141
+ "popover-foreground": "240 10% 3.9%",
142
+ "secondary": "240 4.8% 95.9%",
143
+ "secondary-foreground": "240 5.9% 10%",
144
+ "muted": "240 4.8% 95.9%",
145
+ "muted-foreground": "240 3.8% 46.1%",
146
+ "accent": "240 4.8% 95.9%",
147
+ "accent-foreground": "240 5.9% 10%",
148
+ "destructive": "0 84.2% 60.2%",
149
+ "destructive-foreground": "0 0% 98%",
150
+ "border": "240 5.9% 90%",
151
+ "input": "240 5.9% 90%",
152
+ "ring": "221.2 83.2% 53.3%",
153
+ "radius": "0.5rem",
154
+ "primary": "221.2 83.2% 53.3%",
155
+ "primary-foreground": "0 0% 98%"
156
+ },
157
+ "cssVarsDark": {
158
+ "background": "240 10% 3.9%",
159
+ "foreground": "0 0% 98%",
160
+ "card": "240 10% 3.9%",
161
+ "card-foreground": "0 0% 98%",
162
+ "popover": "240 10% 3.9%",
163
+ "popover-foreground": "0 0% 98%",
164
+ "secondary": "240 3.7% 15.9%",
165
+ "secondary-foreground": "0 0% 98%",
166
+ "muted": "240 3.7% 15.9%",
167
+ "muted-foreground": "240 5% 64.9%",
168
+ "accent": "240 3.7% 15.9%",
169
+ "accent-foreground": "0 0% 98%",
170
+ "destructive": "0 62.8% 30.6%",
171
+ "destructive-foreground": "0 0% 98%",
172
+ "border": "240 3.7% 15.9%",
173
+ "input": "240 3.7% 15.9%",
174
+ "ring": "217.2 91.2% 59.8%",
175
+ "radius": "0.5rem",
176
+ "primary": "217.2 91.2% 59.8%",
177
+ "primary-foreground": "240 5.9% 10%"
178
+ },
179
+ "globalsCssSnippet": "@layer base {\n /* Theme: blue-saas — paste into globals.css */\n :root {\n --background: 0 0% 100%;\n --foreground: 240 10% 3.9%;\n --card: 0 0% 100%;\n --card-foreground: 240 10% 3.9%;\n --popover: 0 0% 100%;\n --popover-foreground: 240 10% 3.9%;\n --secondary: 240 4.8% 95.9%;\n --secondary-foreground: 240 5.9% 10%;\n --muted: 240 4.8% 95.9%;\n --muted-foreground: 240 3.8% 46.1%;\n --accent: 240 4.8% 95.9%;\n --accent-foreground: 240 5.9% 10%;\n --destructive: 0 84.2% 60.2%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 5.9% 90%;\n --input: 240 5.9% 90%;\n --ring: 221.2 83.2% 53.3%;\n --radius: 0.5rem;\n --primary: 221.2 83.2% 53.3%;\n --primary-foreground: 0 0% 98%;\n }\n .dark {\n --background: 240 10% 3.9%;\n --foreground: 0 0% 98%;\n --card: 240 10% 3.9%;\n --card-foreground: 0 0% 98%;\n --popover: 240 10% 3.9%;\n --popover-foreground: 0 0% 98%;\n --secondary: 240 3.7% 15.9%;\n --secondary-foreground: 0 0% 98%;\n --muted: 240 3.7% 15.9%;\n --muted-foreground: 240 5% 64.9%;\n --accent: 240 3.7% 15.9%;\n --accent-foreground: 0 0% 98%;\n --destructive: 0 62.8% 30.6%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 3.7% 15.9%;\n --input: 240 3.7% 15.9%;\n --ring: 217.2 91.2% 59.8%;\n --radius: 0.5rem;\n --primary: 217.2 91.2% 59.8%;\n --primary-foreground: 240 5.9% 10%;\n }\n}",
180
+ "category": "ui-themes",
181
+ "source": "mcp-probe-kit-curated-shadcn"
182
+ },
183
+ {
184
+ "name": "violet-creative",
185
+ "title": "Violet Creative",
186
+ "description": "偏创意工具/设计产品的紫色主色",
187
+ "style": "new-york",
188
+ "stack": "react",
189
+ "baseColor": "violet",
190
+ "mood": "creative premium",
191
+ "bestFor": [
192
+ "Creative Agency",
193
+ "Portfolio"
194
+ ],
195
+ "cssVarsLight": {
196
+ "background": "0 0% 100%",
197
+ "foreground": "240 10% 3.9%",
198
+ "card": "0 0% 100%",
199
+ "card-foreground": "240 10% 3.9%",
200
+ "popover": "0 0% 100%",
201
+ "popover-foreground": "240 10% 3.9%",
202
+ "secondary": "240 4.8% 95.9%",
203
+ "secondary-foreground": "240 5.9% 10%",
204
+ "muted": "240 4.8% 95.9%",
205
+ "muted-foreground": "240 3.8% 46.1%",
206
+ "accent": "240 4.8% 95.9%",
207
+ "accent-foreground": "240 5.9% 10%",
208
+ "destructive": "0 84.2% 60.2%",
209
+ "destructive-foreground": "0 0% 98%",
210
+ "border": "240 5.9% 90%",
211
+ "input": "240 5.9% 90%",
212
+ "ring": "262.1 83.3% 57.8%",
213
+ "radius": "0.5rem",
214
+ "primary": "262.1 83.3% 57.8%",
215
+ "primary-foreground": "0 0% 98%"
216
+ },
217
+ "cssVarsDark": {
218
+ "background": "240 10% 3.9%",
219
+ "foreground": "0 0% 98%",
220
+ "card": "240 10% 3.9%",
221
+ "card-foreground": "0 0% 98%",
222
+ "popover": "240 10% 3.9%",
223
+ "popover-foreground": "0 0% 98%",
224
+ "secondary": "240 3.7% 15.9%",
225
+ "secondary-foreground": "0 0% 98%",
226
+ "muted": "240 3.7% 15.9%",
227
+ "muted-foreground": "240 5% 64.9%",
228
+ "accent": "240 3.7% 15.9%",
229
+ "accent-foreground": "0 0% 98%",
230
+ "destructive": "0 62.8% 30.6%",
231
+ "destructive-foreground": "0 0% 98%",
232
+ "border": "240 3.7% 15.9%",
233
+ "input": "240 3.7% 15.9%",
234
+ "ring": "263.4 70% 50.4%",
235
+ "radius": "0.5rem",
236
+ "primary": "263.4 70% 50.4%",
237
+ "primary-foreground": "240 5.9% 10%"
238
+ },
239
+ "globalsCssSnippet": "@layer base {\n /* Theme: violet-creative — paste into globals.css */\n :root {\n --background: 0 0% 100%;\n --foreground: 240 10% 3.9%;\n --card: 0 0% 100%;\n --card-foreground: 240 10% 3.9%;\n --popover: 0 0% 100%;\n --popover-foreground: 240 10% 3.9%;\n --secondary: 240 4.8% 95.9%;\n --secondary-foreground: 240 5.9% 10%;\n --muted: 240 4.8% 95.9%;\n --muted-foreground: 240 3.8% 46.1%;\n --accent: 240 4.8% 95.9%;\n --accent-foreground: 240 5.9% 10%;\n --destructive: 0 84.2% 60.2%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 5.9% 90%;\n --input: 240 5.9% 90%;\n --ring: 262.1 83.3% 57.8%;\n --radius: 0.5rem;\n --primary: 262.1 83.3% 57.8%;\n --primary-foreground: 0 0% 98%;\n }\n .dark {\n --background: 240 10% 3.9%;\n --foreground: 0 0% 98%;\n --card: 240 10% 3.9%;\n --card-foreground: 0 0% 98%;\n --popover: 240 10% 3.9%;\n --popover-foreground: 0 0% 98%;\n --secondary: 240 3.7% 15.9%;\n --secondary-foreground: 0 0% 98%;\n --muted: 240 3.7% 15.9%;\n --muted-foreground: 240 5% 64.9%;\n --accent: 240 3.7% 15.9%;\n --accent-foreground: 0 0% 98%;\n --destructive: 0 62.8% 30.6%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 3.7% 15.9%;\n --input: 240 3.7% 15.9%;\n --ring: 263.4 70% 50.4%;\n --radius: 0.5rem;\n --primary: 263.4 70% 50.4%;\n --primary-foreground: 240 5.9% 10%;\n }\n}",
240
+ "category": "ui-themes",
241
+ "source": "mcp-probe-kit-curated-shadcn"
242
+ },
243
+ {
244
+ "name": "rose-beauty",
245
+ "title": "Rose Beauty",
246
+ "description": "美妆/生活方式产品的柔和玫瑰色",
247
+ "style": "new-york",
248
+ "stack": "react",
249
+ "baseColor": "rose",
250
+ "mood": "soft elegant",
251
+ "bestFor": [
252
+ "Beauty",
253
+ "E-commerce"
254
+ ],
255
+ "cssVarsLight": {
256
+ "background": "0 0% 100%",
257
+ "foreground": "240 10% 3.9%",
258
+ "card": "0 0% 100%",
259
+ "card-foreground": "240 10% 3.9%",
260
+ "popover": "0 0% 100%",
261
+ "popover-foreground": "240 10% 3.9%",
262
+ "secondary": "240 4.8% 95.9%",
263
+ "secondary-foreground": "240 5.9% 10%",
264
+ "muted": "240 4.8% 95.9%",
265
+ "muted-foreground": "240 3.8% 46.1%",
266
+ "accent": "240 4.8% 95.9%",
267
+ "accent-foreground": "240 5.9% 10%",
268
+ "destructive": "0 84.2% 60.2%",
269
+ "destructive-foreground": "0 0% 98%",
270
+ "border": "240 5.9% 90%",
271
+ "input": "240 5.9% 90%",
272
+ "ring": "346.8 77.2% 49.8%",
273
+ "radius": "0.5rem",
274
+ "primary": "346.8 77.2% 49.8%",
275
+ "primary-foreground": "0 0% 98%"
276
+ },
277
+ "cssVarsDark": {
278
+ "background": "240 10% 3.9%",
279
+ "foreground": "0 0% 98%",
280
+ "card": "240 10% 3.9%",
281
+ "card-foreground": "0 0% 98%",
282
+ "popover": "240 10% 3.9%",
283
+ "popover-foreground": "0 0% 98%",
284
+ "secondary": "240 3.7% 15.9%",
285
+ "secondary-foreground": "0 0% 98%",
286
+ "muted": "240 3.7% 15.9%",
287
+ "muted-foreground": "240 5% 64.9%",
288
+ "accent": "240 3.7% 15.9%",
289
+ "accent-foreground": "0 0% 98%",
290
+ "destructive": "0 62.8% 30.6%",
291
+ "destructive-foreground": "0 0% 98%",
292
+ "border": "240 3.7% 15.9%",
293
+ "input": "240 3.7% 15.9%",
294
+ "ring": "346.8 77.2% 49.8%",
295
+ "radius": "0.5rem",
296
+ "primary": "346.8 77.2% 49.8%",
297
+ "primary-foreground": "240 5.9% 10%"
298
+ },
299
+ "globalsCssSnippet": "@layer base {\n /* Theme: rose-beauty — paste into globals.css */\n :root {\n --background: 0 0% 100%;\n --foreground: 240 10% 3.9%;\n --card: 0 0% 100%;\n --card-foreground: 240 10% 3.9%;\n --popover: 0 0% 100%;\n --popover-foreground: 240 10% 3.9%;\n --secondary: 240 4.8% 95.9%;\n --secondary-foreground: 240 5.9% 10%;\n --muted: 240 4.8% 95.9%;\n --muted-foreground: 240 3.8% 46.1%;\n --accent: 240 4.8% 95.9%;\n --accent-foreground: 240 5.9% 10%;\n --destructive: 0 84.2% 60.2%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 5.9% 90%;\n --input: 240 5.9% 90%;\n --ring: 346.8 77.2% 49.8%;\n --radius: 0.5rem;\n --primary: 346.8 77.2% 49.8%;\n --primary-foreground: 0 0% 98%;\n }\n .dark {\n --background: 240 10% 3.9%;\n --foreground: 0 0% 98%;\n --card: 240 10% 3.9%;\n --card-foreground: 0 0% 98%;\n --popover: 240 10% 3.9%;\n --popover-foreground: 0 0% 98%;\n --secondary: 240 3.7% 15.9%;\n --secondary-foreground: 0 0% 98%;\n --muted: 240 3.7% 15.9%;\n --muted-foreground: 240 5% 64.9%;\n --accent: 240 3.7% 15.9%;\n --accent-foreground: 0 0% 98%;\n --destructive: 0 62.8% 30.6%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 3.7% 15.9%;\n --input: 240 3.7% 15.9%;\n --ring: 346.8 77.2% 49.8%;\n --radius: 0.5rem;\n --primary: 346.8 77.2% 49.8%;\n --primary-foreground: 240 5.9% 10%;\n }\n}",
300
+ "category": "ui-themes",
301
+ "source": "mcp-probe-kit-curated-shadcn"
302
+ },
303
+ {
304
+ "name": "green-health",
305
+ "title": "Green Health",
306
+ "description": "医疗/健康类产品的绿色主色",
307
+ "style": "new-york",
308
+ "stack": "react",
309
+ "baseColor": "green",
310
+ "mood": "calm trustworthy",
311
+ "bestFor": [
312
+ "Healthcare App",
313
+ "Educational App"
314
+ ],
315
+ "cssVarsLight": {
316
+ "background": "0 0% 100%",
317
+ "foreground": "240 10% 3.9%",
318
+ "card": "0 0% 100%",
319
+ "card-foreground": "240 10% 3.9%",
320
+ "popover": "0 0% 100%",
321
+ "popover-foreground": "240 10% 3.9%",
322
+ "secondary": "240 4.8% 95.9%",
323
+ "secondary-foreground": "240 5.9% 10%",
324
+ "muted": "240 4.8% 95.9%",
325
+ "muted-foreground": "240 3.8% 46.1%",
326
+ "accent": "240 4.8% 95.9%",
327
+ "accent-foreground": "240 5.9% 10%",
328
+ "destructive": "0 84.2% 60.2%",
329
+ "destructive-foreground": "0 0% 98%",
330
+ "border": "240 5.9% 90%",
331
+ "input": "240 5.9% 90%",
332
+ "ring": "142.1 76.2% 36.3%",
333
+ "radius": "0.5rem",
334
+ "primary": "142.1 76.2% 36.3%",
335
+ "primary-foreground": "0 0% 98%"
336
+ },
337
+ "cssVarsDark": {
338
+ "background": "240 10% 3.9%",
339
+ "foreground": "0 0% 98%",
340
+ "card": "240 10% 3.9%",
341
+ "card-foreground": "0 0% 98%",
342
+ "popover": "240 10% 3.9%",
343
+ "popover-foreground": "0 0% 98%",
344
+ "secondary": "240 3.7% 15.9%",
345
+ "secondary-foreground": "0 0% 98%",
346
+ "muted": "240 3.7% 15.9%",
347
+ "muted-foreground": "240 5% 64.9%",
348
+ "accent": "240 3.7% 15.9%",
349
+ "accent-foreground": "0 0% 98%",
350
+ "destructive": "0 62.8% 30.6%",
351
+ "destructive-foreground": "0 0% 98%",
352
+ "border": "240 3.7% 15.9%",
353
+ "input": "240 3.7% 15.9%",
354
+ "ring": "142.1 70.6% 45.3%",
355
+ "radius": "0.5rem",
356
+ "primary": "142.1 70.6% 45.3%",
357
+ "primary-foreground": "240 5.9% 10%"
358
+ },
359
+ "globalsCssSnippet": "@layer base {\n /* Theme: green-health — paste into globals.css */\n :root {\n --background: 0 0% 100%;\n --foreground: 240 10% 3.9%;\n --card: 0 0% 100%;\n --card-foreground: 240 10% 3.9%;\n --popover: 0 0% 100%;\n --popover-foreground: 240 10% 3.9%;\n --secondary: 240 4.8% 95.9%;\n --secondary-foreground: 240 5.9% 10%;\n --muted: 240 4.8% 95.9%;\n --muted-foreground: 240 3.8% 46.1%;\n --accent: 240 4.8% 95.9%;\n --accent-foreground: 240 5.9% 10%;\n --destructive: 0 84.2% 60.2%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 5.9% 90%;\n --input: 240 5.9% 90%;\n --ring: 142.1 76.2% 36.3%;\n --radius: 0.5rem;\n --primary: 142.1 76.2% 36.3%;\n --primary-foreground: 0 0% 98%;\n }\n .dark {\n --background: 240 10% 3.9%;\n --foreground: 0 0% 98%;\n --card: 240 10% 3.9%;\n --card-foreground: 0 0% 98%;\n --popover: 240 10% 3.9%;\n --popover-foreground: 0 0% 98%;\n --secondary: 240 3.7% 15.9%;\n --secondary-foreground: 0 0% 98%;\n --muted: 240 3.7% 15.9%;\n --muted-foreground: 240 5% 64.9%;\n --accent: 240 3.7% 15.9%;\n --accent-foreground: 0 0% 98%;\n --destructive: 0 62.8% 30.6%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 3.7% 15.9%;\n --input: 240 3.7% 15.9%;\n --ring: 142.1 70.6% 45.3%;\n --radius: 0.5rem;\n --primary: 142.1 70.6% 45.3%;\n --primary-foreground: 240 5.9% 10%;\n }\n}",
360
+ "category": "ui-themes",
361
+ "source": "mcp-probe-kit-curated-shadcn"
362
+ },
363
+ {
364
+ "name": "orange-energy",
365
+ "title": "Orange Energy",
366
+ "description": "活动/增长类产品的橙色主色",
367
+ "style": "new-york",
368
+ "stack": "react",
369
+ "baseColor": "orange",
370
+ "mood": "energetic friendly",
371
+ "bestFor": [
372
+ "Social Media App",
373
+ "Government/Public Service"
374
+ ],
375
+ "cssVarsLight": {
376
+ "background": "0 0% 100%",
377
+ "foreground": "240 10% 3.9%",
378
+ "card": "0 0% 100%",
379
+ "card-foreground": "240 10% 3.9%",
380
+ "popover": "0 0% 100%",
381
+ "popover-foreground": "240 10% 3.9%",
382
+ "secondary": "240 4.8% 95.9%",
383
+ "secondary-foreground": "240 5.9% 10%",
384
+ "muted": "240 4.8% 95.9%",
385
+ "muted-foreground": "240 3.8% 46.1%",
386
+ "accent": "240 4.8% 95.9%",
387
+ "accent-foreground": "240 5.9% 10%",
388
+ "destructive": "0 84.2% 60.2%",
389
+ "destructive-foreground": "0 0% 98%",
390
+ "border": "240 5.9% 90%",
391
+ "input": "240 5.9% 90%",
392
+ "ring": "24.6 95% 53.1%",
393
+ "radius": "0.5rem",
394
+ "primary": "24.6 95% 53.1%",
395
+ "primary-foreground": "0 0% 98%"
396
+ },
397
+ "cssVarsDark": {
398
+ "background": "240 10% 3.9%",
399
+ "foreground": "0 0% 98%",
400
+ "card": "240 10% 3.9%",
401
+ "card-foreground": "0 0% 98%",
402
+ "popover": "240 10% 3.9%",
403
+ "popover-foreground": "0 0% 98%",
404
+ "secondary": "240 3.7% 15.9%",
405
+ "secondary-foreground": "0 0% 98%",
406
+ "muted": "240 3.7% 15.9%",
407
+ "muted-foreground": "240 5% 64.9%",
408
+ "accent": "240 3.7% 15.9%",
409
+ "accent-foreground": "0 0% 98%",
410
+ "destructive": "0 62.8% 30.6%",
411
+ "destructive-foreground": "0 0% 98%",
412
+ "border": "240 3.7% 15.9%",
413
+ "input": "240 3.7% 15.9%",
414
+ "ring": "20.5 90.2% 48.2%",
415
+ "radius": "0.5rem",
416
+ "primary": "20.5 90.2% 48.2%",
417
+ "primary-foreground": "240 5.9% 10%"
418
+ },
419
+ "globalsCssSnippet": "@layer base {\n /* Theme: orange-energy — paste into globals.css */\n :root {\n --background: 0 0% 100%;\n --foreground: 240 10% 3.9%;\n --card: 0 0% 100%;\n --card-foreground: 240 10% 3.9%;\n --popover: 0 0% 100%;\n --popover-foreground: 240 10% 3.9%;\n --secondary: 240 4.8% 95.9%;\n --secondary-foreground: 240 5.9% 10%;\n --muted: 240 4.8% 95.9%;\n --muted-foreground: 240 3.8% 46.1%;\n --accent: 240 4.8% 95.9%;\n --accent-foreground: 240 5.9% 10%;\n --destructive: 0 84.2% 60.2%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 5.9% 90%;\n --input: 240 5.9% 90%;\n --ring: 24.6 95% 53.1%;\n --radius: 0.5rem;\n --primary: 24.6 95% 53.1%;\n --primary-foreground: 0 0% 98%;\n }\n .dark {\n --background: 240 10% 3.9%;\n --foreground: 0 0% 98%;\n --card: 240 10% 3.9%;\n --card-foreground: 0 0% 98%;\n --popover: 240 10% 3.9%;\n --popover-foreground: 0 0% 98%;\n --secondary: 240 3.7% 15.9%;\n --secondary-foreground: 0 0% 98%;\n --muted: 240 3.7% 15.9%;\n --muted-foreground: 240 5% 64.9%;\n --accent: 240 3.7% 15.9%;\n --accent-foreground: 0 0% 98%;\n --destructive: 0 62.8% 30.6%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 3.7% 15.9%;\n --input: 240 3.7% 15.9%;\n --ring: 20.5 90.2% 48.2%;\n --radius: 0.5rem;\n --primary: 20.5 90.2% 48.2%;\n --primary-foreground: 240 5.9% 10%;\n }\n}",
420
+ "category": "ui-themes",
421
+ "source": "mcp-probe-kit-curated-shadcn"
422
+ },
423
+ {
424
+ "name": "stone-editorial",
425
+ "title": "Stone Editorial",
426
+ "description": "内容/媒体站点常用的暖灰 editorial 感",
427
+ "style": "new-york",
428
+ "stack": "react",
429
+ "baseColor": "stone",
430
+ "mood": "editorial warm",
431
+ "bestFor": [
432
+ "Portfolio/Personal",
433
+ "Educational App"
434
+ ],
435
+ "cssVarsLight": {
436
+ "background": "0 0% 100%",
437
+ "foreground": "240 10% 3.9%",
438
+ "card": "0 0% 100%",
439
+ "card-foreground": "240 10% 3.9%",
440
+ "popover": "0 0% 100%",
441
+ "popover-foreground": "240 10% 3.9%",
442
+ "secondary": "240 4.8% 95.9%",
443
+ "secondary-foreground": "240 5.9% 10%",
444
+ "muted": "240 4.8% 95.9%",
445
+ "muted-foreground": "240 3.8% 46.1%",
446
+ "accent": "240 4.8% 95.9%",
447
+ "accent-foreground": "240 5.9% 10%",
448
+ "destructive": "0 84.2% 60.2%",
449
+ "destructive-foreground": "0 0% 98%",
450
+ "border": "240 5.9% 90%",
451
+ "input": "240 5.9% 90%",
452
+ "ring": "25 5.3% 24.7%",
453
+ "radius": "0.5rem",
454
+ "primary": "25 5.3% 24.7%",
455
+ "primary-foreground": "0 0% 98%"
456
+ },
457
+ "cssVarsDark": {
458
+ "background": "240 10% 3.9%",
459
+ "foreground": "0 0% 98%",
460
+ "card": "240 10% 3.9%",
461
+ "card-foreground": "0 0% 98%",
462
+ "popover": "240 10% 3.9%",
463
+ "popover-foreground": "0 0% 98%",
464
+ "secondary": "240 3.7% 15.9%",
465
+ "secondary-foreground": "0 0% 98%",
466
+ "muted": "240 3.7% 15.9%",
467
+ "muted-foreground": "240 5% 64.9%",
468
+ "accent": "240 3.7% 15.9%",
469
+ "accent-foreground": "0 0% 98%",
470
+ "destructive": "0 62.8% 30.6%",
471
+ "destructive-foreground": "0 0% 98%",
472
+ "border": "240 3.7% 15.9%",
473
+ "input": "240 3.7% 15.9%",
474
+ "ring": "60 9.1% 97.8%",
475
+ "radius": "0.5rem",
476
+ "primary": "60 9.1% 97.8%",
477
+ "primary-foreground": "240 5.9% 10%"
478
+ },
479
+ "globalsCssSnippet": "@layer base {\n /* Theme: stone-editorial — paste into globals.css */\n :root {\n --background: 0 0% 100%;\n --foreground: 240 10% 3.9%;\n --card: 0 0% 100%;\n --card-foreground: 240 10% 3.9%;\n --popover: 0 0% 100%;\n --popover-foreground: 240 10% 3.9%;\n --secondary: 240 4.8% 95.9%;\n --secondary-foreground: 240 5.9% 10%;\n --muted: 240 4.8% 95.9%;\n --muted-foreground: 240 3.8% 46.1%;\n --accent: 240 4.8% 95.9%;\n --accent-foreground: 240 5.9% 10%;\n --destructive: 0 84.2% 60.2%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 5.9% 90%;\n --input: 240 5.9% 90%;\n --ring: 25 5.3% 24.7%;\n --radius: 0.5rem;\n --primary: 25 5.3% 24.7%;\n --primary-foreground: 0 0% 98%;\n }\n .dark {\n --background: 240 10% 3.9%;\n --foreground: 0 0% 98%;\n --card: 240 10% 3.9%;\n --card-foreground: 0 0% 98%;\n --popover: 240 10% 3.9%;\n --popover-foreground: 0 0% 98%;\n --secondary: 240 3.7% 15.9%;\n --secondary-foreground: 0 0% 98%;\n --muted: 240 3.7% 15.9%;\n --muted-foreground: 240 5% 64.9%;\n --accent: 240 3.7% 15.9%;\n --accent-foreground: 0 0% 98%;\n --destructive: 0 62.8% 30.6%;\n --destructive-foreground: 0 0% 98%;\n --border: 240 3.7% 15.9%;\n --input: 240 3.7% 15.9%;\n --ring: 60 9.1% 97.8%;\n --radius: 0.5rem;\n --primary: 60 9.1% 97.8%;\n --primary-foreground: 240 5.9% 10%;\n }\n}",
480
+ "category": "ui-themes",
481
+ "source": "mcp-probe-kit-curated-shadcn"
482
+ }
483
+ ]