css-is-awesome 1.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 (198) hide show
  1. package/AGENTS.md +343 -0
  2. package/CHANGELOG.md +1036 -0
  3. package/CLAUDE.md +9 -0
  4. package/CONTRACT.md +580 -0
  5. package/GEMINI.md +9 -0
  6. package/LICENSE +21 -0
  7. package/LICENSE-third-party +88 -0
  8. package/MIGRATION.md +312 -0
  9. package/README.md +380 -0
  10. package/ROADMAP.md +714 -0
  11. package/THEMING.md +290 -0
  12. package/THREE-TIERS.md +158 -0
  13. package/VERSIONING.md +200 -0
  14. package/_index.scss +34 -0
  15. package/api.scss +16 -0
  16. package/bin/README.md +57 -0
  17. package/bin/cia.cjs +114 -0
  18. package/bin/migrate-bootstrap.cjs +427 -0
  19. package/bin/migrate-tailwind.cjs +832 -0
  20. package/css-is-awesome.instructions.md +533 -0
  21. package/dist/css-is-awesome.core.css +598 -0
  22. package/dist/css-is-awesome.core.min.css +1 -0
  23. package/dist/css-is-awesome.css +3733 -0
  24. package/dist/css-is-awesome.min.css +1 -0
  25. package/dist/css-is-awesome.utilities.css +2445 -0
  26. package/dist/css-is-awesome.utilities.min.css +1 -0
  27. package/dist/tokens.css +508 -0
  28. package/dist/tokens.d.ts +266 -0
  29. package/dist/tokens.min.css +1 -0
  30. package/figma-tokens/README.md +57 -0
  31. package/figma-tokens/primitives-brand.scss +121 -0
  32. package/figma-tokens/semantic-dark.scss +61 -0
  33. package/figma-tokens/semantic-light.scss +61 -0
  34. package/figma-tokens/tokens.json +144 -0
  35. package/llm.txt +183 -0
  36. package/mcp/server.cjs +1495 -0
  37. package/package.json +199 -0
  38. package/public/icons/README.md +278 -0
  39. package/public/icons/arrow-right.svg +4 -0
  40. package/public/icons/check.svg +4 -0
  41. package/public/icons/chevron-down.svg +4 -0
  42. package/public/icons/close.svg +4 -0
  43. package/public/icons/core/arrow-down.svg +13 -0
  44. package/public/icons/core/arrow-left.svg +13 -0
  45. package/public/icons/core/arrow-right.svg +13 -0
  46. package/public/icons/core/arrow-up.svg +13 -0
  47. package/public/icons/core/bell.svg +13 -0
  48. package/public/icons/core/calendar.svg +15 -0
  49. package/public/icons/core/check.svg +12 -0
  50. package/public/icons/core/chevron-down.svg +12 -0
  51. package/public/icons/core/chevron-left.svg +12 -0
  52. package/public/icons/core/chevron-right.svg +12 -0
  53. package/public/icons/core/chevron-up.svg +12 -0
  54. package/public/icons/core/clock.svg +13 -0
  55. package/public/icons/core/close.svg +13 -0
  56. package/public/icons/core/copy.svg +13 -0
  57. package/public/icons/core/download.svg +14 -0
  58. package/public/icons/core/edit.svg +13 -0
  59. package/public/icons/core/error.svg +14 -0
  60. package/public/icons/core/external-link.svg +14 -0
  61. package/public/icons/core/eye-off.svg +15 -0
  62. package/public/icons/core/eye.svg +13 -0
  63. package/public/icons/core/filter.svg +12 -0
  64. package/public/icons/core/heart.svg +12 -0
  65. package/public/icons/core/help.svg +14 -0
  66. package/public/icons/core/home.svg +13 -0
  67. package/public/icons/core/info.svg +14 -0
  68. package/public/icons/core/loading.svg +12 -0
  69. package/public/icons/core/lock.svg +13 -0
  70. package/public/icons/core/mail.svg +13 -0
  71. package/public/icons/core/menu.svg +14 -0
  72. package/public/icons/core/message.svg +12 -0
  73. package/public/icons/core/minus.svg +12 -0
  74. package/public/icons/core/more-horizontal.svg +14 -0
  75. package/public/icons/core/pause.svg +13 -0
  76. package/public/icons/core/play.svg +12 -0
  77. package/public/icons/core/plus.svg +13 -0
  78. package/public/icons/core/refresh.svg +15 -0
  79. package/public/icons/core/save.svg +14 -0
  80. package/public/icons/core/search.svg +13 -0
  81. package/public/icons/core/settings.svg +13 -0
  82. package/public/icons/core/share.svg +14 -0
  83. package/public/icons/core/sort.svg +15 -0
  84. package/public/icons/core/star.svg +12 -0
  85. package/public/icons/core/success.svg +13 -0
  86. package/public/icons/core/trash.svg +16 -0
  87. package/public/icons/core/unlock.svg +13 -0
  88. package/public/icons/core/upload.svg +14 -0
  89. package/public/icons/core/user.svg +13 -0
  90. package/public/icons/core/users.svg +15 -0
  91. package/public/icons/core/warning.svg +14 -0
  92. package/public/icons/download.svg +4 -0
  93. package/public/icons/edit.svg +4 -0
  94. package/public/icons/menu.svg +4 -0
  95. package/public/icons/search.svg +4 -0
  96. package/public/theme.css +4179 -0
  97. package/public/themes/README.md +102 -0
  98. package/public/themes/boilerplate/theme.css +154 -0
  99. package/public/themes/boilerplate-dark/theme.css +171 -0
  100. package/public/themes/boilerplate-light/theme.css +171 -0
  101. package/public/themes/cupertino/theme.css +165 -0
  102. package/public/themes/cupertino-dark/theme.css +200 -0
  103. package/public/themes/cupertino-light/theme.css +227 -0
  104. package/public/themes/glass/theme.css +190 -0
  105. package/public/themes/glass-dark/theme.css +201 -0
  106. package/public/themes/glass-light/theme.css +229 -0
  107. package/public/themes/graphite/theme.css +155 -0
  108. package/public/themes/graphite-dark/theme.css +223 -0
  109. package/public/themes/graphite-light/theme.css +191 -0
  110. package/public/themes/press/theme.css +189 -0
  111. package/public/themes/press-dark/theme.css +199 -0
  112. package/public/themes/press-light/theme.css +235 -0
  113. package/public/themes/prism/theme.css +159 -0
  114. package/public/themes/prism-dark/theme.css +185 -0
  115. package/public/themes/prism-light/theme.css +188 -0
  116. package/public/themes/sketchbook/theme.css +152 -0
  117. package/public/themes/sketchbook-dark/theme.css +194 -0
  118. package/public/themes/sketchbook-light/theme.css +188 -0
  119. package/public/themes/terminal/theme.css +159 -0
  120. package/public/themes/terminal-dark/theme.css +229 -0
  121. package/public/themes/terminal-light/theme.css +152 -0
  122. package/scripts/README.md +70 -0
  123. package/scripts/icon-contract.json +67 -0
  124. package/scripts/icon-validator.js +205 -0
  125. package/scripts/prepare-dist.mjs +65 -0
  126. package/scripts/theme-a11y.js +415 -0
  127. package/scripts/theme-contract.json +171 -0
  128. package/scripts/theme-validator.js +674 -0
  129. package/scss/README.md +55 -0
  130. package/scss/_animations-utilities.scss +107 -0
  131. package/scss/_animations.scss +248 -0
  132. package/scss/_app-styles.scss +15 -0
  133. package/scss/_generator.scss +174 -0
  134. package/scss/_icons.scss +475 -0
  135. package/scss/_index.scss +17 -0
  136. package/scss/_layout.scss +597 -0
  137. package/scss/_mixins.scss +1036 -0
  138. package/scss/_system.scss +291 -0
  139. package/scss/_utilities.scss +377 -0
  140. package/scss/api.scss +61 -0
  141. package/scss/components/_accordion.scss +72 -0
  142. package/scss/components/_buttons.scss +171 -0
  143. package/scss/components/_copy-button.scss +69 -0
  144. package/scss/components/_data.scss +190 -0
  145. package/scss/components/_feedback.scss +197 -0
  146. package/scss/components/_forms.scss +272 -0
  147. package/scss/components/_index.scss +17 -0
  148. package/scss/components/_navigation.scss +186 -0
  149. package/scss/components/_overlay.scss +259 -0
  150. package/scss/components/_stepper.scss +159 -0
  151. package/scss/components/_tabs.scss +72 -0
  152. package/scss/core.scss +54 -0
  153. package/scss/examples/_theming.scss +107 -0
  154. package/scss/examples/_usage.scss +317 -0
  155. package/scss/main.scss +64 -0
  156. package/scss/recipes/README.md +110 -0
  157. package/scss/recipes/_bare-tags.scss +232 -0
  158. package/scss/recipes/_recipe-template.md +119 -0
  159. package/scss/recipes/combobox.md +509 -0
  160. package/scss/recipes/dialog.md +265 -0
  161. package/scss/recipes/print-to-pdf.md +263 -0
  162. package/scss/theme/README.md +67 -0
  163. package/scss/theme/_brand.scss +18 -0
  164. package/scss/theme/_colors-dark.scss +68 -0
  165. package/scss/theme/_colors-light.scss +70 -0
  166. package/scss/theme/_components.scss +94 -0
  167. package/scss/theme/_icons.scss +104 -0
  168. package/scss/theme/_index.scss +62 -0
  169. package/scss/theme/_shadows.scss +65 -0
  170. package/scss/theme/_shape.scss +13 -0
  171. package/scss/theme/_typography.scss +9 -0
  172. package/scss/theme/registry.json +447 -0
  173. package/scss/themes/boilerplate-dark.scss +212 -0
  174. package/scss/themes/boilerplate-light.scss +209 -0
  175. package/scss/themes/boilerplate.scss +181 -0
  176. package/scss/themes/cupertino-dark.scss +238 -0
  177. package/scss/themes/cupertino-light.scss +266 -0
  178. package/scss/themes/cupertino.scss +194 -0
  179. package/scss/themes/glass-dark.scss +238 -0
  180. package/scss/themes/glass-light.scss +266 -0
  181. package/scss/themes/glass.scss +220 -0
  182. package/scss/themes/graphite-dark.scss +260 -0
  183. package/scss/themes/graphite-light.scss +228 -0
  184. package/scss/themes/graphite.scss +182 -0
  185. package/scss/themes/press-dark.scss +237 -0
  186. package/scss/themes/press-light.scss +273 -0
  187. package/scss/themes/press.scss +241 -0
  188. package/scss/themes/prism-dark.scss +217 -0
  189. package/scss/themes/prism-light.scss +220 -0
  190. package/scss/themes/prism.scss +190 -0
  191. package/scss/themes/sketchbook-dark.scss +231 -0
  192. package/scss/themes/sketchbook-light.scss +231 -0
  193. package/scss/themes/sketchbook.scss +178 -0
  194. package/scss/themes/terminal-dark.scss +267 -0
  195. package/scss/themes/terminal-light.scss +175 -0
  196. package/scss/themes/terminal.scss +185 -0
  197. package/scss/tokens.scss +23 -0
  198. package/scss/utilities-only.scss +4 -0
@@ -0,0 +1,447 @@
1
+ {
2
+ "activeTheme": "default",
3
+ "themes": [
4
+ {
5
+ "id": "default",
6
+ "label": "Default",
7
+ "createdAt": "2024-01-01T00:00:00.000Z",
8
+ "source": "preset",
9
+ "values": {
10
+ "brand-primary": "#3A5FCD",
11
+ "brand-primary-hover": "#2E4A99",
12
+ "brand-primary-active": "#1E3A8A",
13
+ "brand-secondary": "#FF6B6B",
14
+ "brand-secondary-hover": "#E85555",
15
+ "brand-secondary-active": "#CC5555",
16
+ "brand-accent": "#0099FF",
17
+ "brand-accent-hover": "#0088E6",
18
+ "background-default": "#FFFFFF",
19
+ "background-subtle": "#F8F6F0",
20
+ "background-navbar": "#FAFAFA",
21
+ "surface-default": "#FFFFFF",
22
+ "surface-subtle": "#F8F6F0",
23
+ "surface-muted": "#F5F5F5",
24
+ "surface-emphasis": "#E5E5E5",
25
+ "text-primary": "#0f0f0f",
26
+ "text-secondary": "#525252",
27
+ "text-muted": "#6b6b6b",
28
+ "text-inverse": "#ffffff",
29
+ "text-link": "#384fff",
30
+ "text-link-hover": "#2a3acc",
31
+ "border-default": "#e5e5e5",
32
+ "border-subtle": "#f5f5f5",
33
+ "border-emphasis": "#d4d4d4",
34
+ "border-focus": "#384fff",
35
+ "interactive-hover": "rgba(0, 0, 0, 0.03)",
36
+ "interactive-active": "rgba(0, 0, 0, 0.06)",
37
+ "action-primary-default": "#3A5FCD",
38
+ "action-primary-hover": "#2E4A99",
39
+ "action-primary-active": "#1E3A8A",
40
+ "action-secondary-default": "#FF6B6B",
41
+ "action-secondary-hover": "#E85555",
42
+ "action-secondary-active": "#CC5555",
43
+ "success-default": "#10b981",
44
+ "success-hover": "#059669",
45
+ "success-subtle": "#ecfdf5",
46
+ "success-text": "#065f46",
47
+ "warning-default": "#f59e0b",
48
+ "warning-hover": "#d97706",
49
+ "warning-subtle": "#fffbeb",
50
+ "warning-text": "#92400e",
51
+ "error-default": "#DC2626",
52
+ "error-hover": "#B91C1C",
53
+ "error-subtle": "#FEF2F2",
54
+ "error-text": "#991B1B",
55
+ "info-default": "#3A5FCD",
56
+ "info-hover": "#2E4A99",
57
+ "info-subtle": "#EFF6FF",
58
+ "info-text": "#1E3A8A",
59
+ "radius-none": "0",
60
+ "radius-sm": "0.25rem",
61
+ "radius-md": "0.375rem",
62
+ "radius-lg": "0.5rem",
63
+ "radius-xl": "0.75rem",
64
+ "radius-2xl": "1rem",
65
+ "radius-full": "9999px",
66
+ "shadow-sm": "0 1px 2px 0 rgb(0 0 0 / 0.05)",
67
+ "shadow-md": "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
68
+ "shadow-lg": "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
69
+ "shadow-xl": "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)",
70
+ "shadow-2xl": "0 25px 50px -12px rgb(0 0 0 / 0.25)",
71
+ "shadow-inner": "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",
72
+ "font-primary": "Inter, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif",
73
+ "font-secondary": "Georgia, Times New Roman, serif",
74
+ "font-mono": "Fira Code, Consolas, Monaco, monospace"
75
+ }
76
+ },
77
+ {
78
+ "id": "royal-blue",
79
+ "label": "Royal Blue",
80
+ "createdAt": "2024-01-01T00:00:00.000Z",
81
+ "source": "preset",
82
+ "values": {
83
+ "brand-primary": "#3A5FCD",
84
+ "brand-primary-hover": "#2E4A99",
85
+ "brand-primary-active": "#1E3A8A",
86
+ "brand-secondary": "#FF6B6B",
87
+ "brand-secondary-hover": "#E85555",
88
+ "brand-secondary-active": "#CC5555",
89
+ "brand-accent": "#0099FF",
90
+ "brand-accent-hover": "#0088E6",
91
+ "background-default": "#FFFFFF",
92
+ "background-subtle": "#F8F6F0",
93
+ "background-navbar": "#FAFAFA",
94
+ "surface-default": "#FFFFFF",
95
+ "surface-subtle": "#F8F6F0",
96
+ "surface-muted": "#F5F5F5",
97
+ "surface-emphasis": "#E5E5E5",
98
+ "text-primary": "#0f0f0f",
99
+ "text-secondary": "#525252",
100
+ "text-muted": "#6b6b6b",
101
+ "text-inverse": "#ffffff",
102
+ "text-link": "#3A5FCD",
103
+ "text-link-hover": "#2E4A99",
104
+ "border-default": "#e5e5e5",
105
+ "border-subtle": "#f5f5f5",
106
+ "border-emphasis": "#d4d4d4",
107
+ "border-focus": "#3A5FCD",
108
+ "interactive-hover": "rgba(0, 0, 0, 0.03)",
109
+ "interactive-active": "rgba(0, 0, 0, 0.06)",
110
+ "action-primary-default": "#3A5FCD",
111
+ "action-primary-hover": "#2E4A99",
112
+ "action-primary-active": "#1E3A8A",
113
+ "action-secondary-default": "#FF6B6B",
114
+ "action-secondary-hover": "#E85555",
115
+ "action-secondary-active": "#CC5555",
116
+ "success-default": "#10b981",
117
+ "success-hover": "#059669",
118
+ "success-subtle": "#ecfdf5",
119
+ "success-text": "#065f46",
120
+ "warning-default": "#f59e0b",
121
+ "warning-hover": "#d97706",
122
+ "warning-subtle": "#fffbeb",
123
+ "warning-text": "#92400e",
124
+ "error-default": "#DC2626",
125
+ "error-hover": "#B91C1C",
126
+ "error-subtle": "#FEF2F2",
127
+ "error-text": "#991B1B",
128
+ "info-default": "#3A5FCD",
129
+ "info-hover": "#2E4A99",
130
+ "info-subtle": "#EFF6FF",
131
+ "info-text": "#1E3A8A",
132
+ "radius-none": "0",
133
+ "radius-sm": "0.25rem",
134
+ "radius-md": "0.375rem",
135
+ "radius-lg": "0.5rem",
136
+ "radius-xl": "0.75rem",
137
+ "radius-2xl": "1rem",
138
+ "radius-full": "9999px",
139
+ "shadow-sm": "0 1px 2px 0 rgb(0 0 0 / 0.05)",
140
+ "shadow-md": "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
141
+ "shadow-lg": "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
142
+ "shadow-xl": "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)",
143
+ "shadow-2xl": "0 25px 50px -12px rgb(0 0 0 / 0.25)",
144
+ "shadow-inner": "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",
145
+ "font-primary": "Inter, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif",
146
+ "font-secondary": "Georgia, Times New Roman, serif",
147
+ "font-mono": "Fira Code, Consolas, Monaco, monospace"
148
+ }
149
+ },
150
+ {
151
+ "id": "grinning-gremlin",
152
+ "label": "Grinning Gremlin",
153
+ "createdAt": "2024-01-01T00:00:00.000Z",
154
+ "source": "preset",
155
+ "values": {
156
+ "brand-primary": "#2D6A4F",
157
+ "brand-primary-hover": "#245A42",
158
+ "brand-primary-active": "#1B4332",
159
+ "brand-secondary": "#E76F51",
160
+ "brand-secondary-hover": "#D45A3E",
161
+ "brand-secondary-active": "#C0472E",
162
+ "brand-accent": "#E9C46A",
163
+ "brand-accent-hover": "#D4AF55",
164
+ "background-default": "#FEFAF6",
165
+ "background-subtle": "#F5F0EB",
166
+ "background-navbar": "#FEFAF6",
167
+ "surface-default": "#FFFFFF",
168
+ "surface-subtle": "#F5F0EB",
169
+ "surface-muted": "#EDE8E3",
170
+ "surface-emphasis": "#DDD8D3",
171
+ "text-primary": "#1A1A1A",
172
+ "text-secondary": "#4A4A4A",
173
+ "text-muted": "#6B6B6B",
174
+ "text-inverse": "#FFFFFF",
175
+ "text-link": "#2D6A4F",
176
+ "text-link-hover": "#245A42",
177
+ "border-default": "#D4D4D4",
178
+ "border-subtle": "#E8E8E8",
179
+ "border-emphasis": "#A3A3A3",
180
+ "border-focus": "#2D6A4F",
181
+ "interactive-hover": "rgba(0, 0, 0, 0.03)",
182
+ "interactive-active": "rgba(0, 0, 0, 0.06)",
183
+ "action-primary-default": "#2D6A4F",
184
+ "action-primary-hover": "#245A42",
185
+ "action-primary-active": "#1B4332",
186
+ "action-secondary-default": "#E76F51",
187
+ "action-secondary-hover": "#D45A3E",
188
+ "action-secondary-active": "#C0472E",
189
+ "success-default": "#10b981",
190
+ "success-hover": "#059669",
191
+ "success-subtle": "#ecfdf5",
192
+ "success-text": "#065f46",
193
+ "warning-default": "#f59e0b",
194
+ "warning-hover": "#d97706",
195
+ "warning-subtle": "#fffbeb",
196
+ "warning-text": "#92400e",
197
+ "error-default": "#DC2626",
198
+ "error-hover": "#B91C1C",
199
+ "error-subtle": "#FEF2F2",
200
+ "error-text": "#991B1B",
201
+ "info-default": "#2D6A4F",
202
+ "info-hover": "#245A42",
203
+ "info-subtle": "#ECFDF5",
204
+ "info-text": "#1B4332",
205
+ "radius-none": "0",
206
+ "radius-sm": "0.25rem",
207
+ "radius-md": "0.5rem",
208
+ "radius-lg": "0.75rem",
209
+ "radius-xl": "1rem",
210
+ "radius-2xl": "1.5rem",
211
+ "radius-full": "9999px",
212
+ "shadow-sm": "0 1px 2px 0 rgb(0 0 0 / 0.05)",
213
+ "shadow-md": "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
214
+ "shadow-lg": "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
215
+ "shadow-xl": "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)",
216
+ "shadow-2xl": "0 25px 50px -12px rgb(0 0 0 / 0.25)",
217
+ "shadow-inner": "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",
218
+ "font-primary": "Inter, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif",
219
+ "font-secondary": "Georgia, Times New Roman, serif",
220
+ "font-mono": "Fira Code, Consolas, Monaco, monospace"
221
+ }
222
+ },
223
+ {
224
+ "id": "custom",
225
+ "label": "Custom",
226
+ "createdAt": "2024-01-01T00:00:00.000Z",
227
+ "source": "preset",
228
+ "values": {
229
+ "brand-primary": "#3A5FCD",
230
+ "brand-primary-hover": "#2E4A99",
231
+ "brand-primary-active": "#1E3A8A",
232
+ "brand-secondary": "#FF6B6B",
233
+ "brand-secondary-hover": "#E85555",
234
+ "brand-secondary-active": "#CC5555",
235
+ "brand-accent": "#0099FF",
236
+ "brand-accent-hover": "#0088E6",
237
+ "background-default": "#FFFFFF",
238
+ "background-subtle": "#F8F6F0",
239
+ "background-navbar": "#FAFAFA",
240
+ "surface-default": "#FFFFFF",
241
+ "surface-subtle": "#F8F6F0",
242
+ "surface-muted": "#F5F5F5",
243
+ "surface-emphasis": "#E5E5E5",
244
+ "text-primary": "#0f0f0f",
245
+ "text-secondary": "#525252",
246
+ "text-muted": "#6b6b6b",
247
+ "text-inverse": "#ffffff",
248
+ "text-link": "#384fff",
249
+ "text-link-hover": "#2a3acc",
250
+ "border-default": "#e5e5e5",
251
+ "border-subtle": "#f5f5f5",
252
+ "border-emphasis": "#d4d4d4",
253
+ "border-focus": "#384fff",
254
+ "interactive-hover": "rgba(0, 0, 0, 0.03)",
255
+ "interactive-active": "rgba(0, 0, 0, 0.06)",
256
+ "action-primary-default": "#3A5FCD",
257
+ "action-primary-hover": "#2E4A99",
258
+ "action-primary-active": "#1E3A8A",
259
+ "action-secondary-default": "#FF6B6B",
260
+ "action-secondary-hover": "#E85555",
261
+ "action-secondary-active": "#CC5555",
262
+ "success-default": "#10b981",
263
+ "success-hover": "#059669",
264
+ "success-subtle": "#ecfdf5",
265
+ "success-text": "#065f46",
266
+ "warning-default": "#f59e0b",
267
+ "warning-hover": "#d97706",
268
+ "warning-subtle": "#fffbeb",
269
+ "warning-text": "#92400e",
270
+ "error-default": "#DC2626",
271
+ "error-hover": "#B91C1C",
272
+ "error-subtle": "#FEF2F2",
273
+ "error-text": "#991B1B",
274
+ "info-default": "#3A5FCD",
275
+ "info-hover": "#2E4A99",
276
+ "info-subtle": "#EFF6FF",
277
+ "info-text": "#1E3A8A",
278
+ "radius-none": "0",
279
+ "radius-sm": "0.25rem",
280
+ "radius-md": "0.375rem",
281
+ "radius-lg": "0.5rem",
282
+ "radius-xl": "0.75rem",
283
+ "radius-2xl": "1rem",
284
+ "radius-full": "9999px",
285
+ "shadow-sm": "0 1px 2px 0 rgb(0 0 0 / 0.05)",
286
+ "shadow-md": "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
287
+ "shadow-lg": "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
288
+ "shadow-xl": "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)",
289
+ "shadow-2xl": "0 25px 50px -12px rgb(0 0 0 / 0.25)",
290
+ "shadow-inner": "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",
291
+ "font-primary": "Inter, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif",
292
+ "font-secondary": "Georgia, Times New Roman, serif",
293
+ "font-mono": "Fira Code, Consolas, Monaco, monospace"
294
+ }
295
+ },
296
+ {
297
+ "id": "zeroheight-warm",
298
+ "label": "Zeroheight Warm",
299
+ "createdAt": "2026-02-12T02:07:34.178Z",
300
+ "source": "extracted",
301
+ "sourceUrl": "https://zeroheight.com/",
302
+ "values": {
303
+ "brand-primary": "#1D1D1B",
304
+ "brand-primary-hover": "#3A3A38",
305
+ "brand-primary-active": "#0A0A09",
306
+ "brand-secondary": "#E85C4A",
307
+ "brand-secondary-hover": "#D14836",
308
+ "brand-secondary-active": "#BF3A2A",
309
+ "brand-accent": "#8B6FD4",
310
+ "brand-accent-hover": "#7558C0",
311
+ "background-default": "#F8F6F0",
312
+ "background-subtle": "#F3F0E8",
313
+ "background-navbar": "#F8F6F0",
314
+ "surface-default": "#FFFFFF",
315
+ "surface-subtle": "#F3F0E8",
316
+ "surface-muted": "#EAE7DF",
317
+ "surface-emphasis": "#E2DECC",
318
+ "text-primary": "#1D1D1B",
319
+ "text-secondary": "#4A4A47",
320
+ "text-muted": "#888882",
321
+ "text-inverse": "#FFFFFF",
322
+ "text-link": "#1D1D1B",
323
+ "text-link-hover": "#4A4A47",
324
+ "border-default": "#4A4A47",
325
+ "border-subtle": "#EAE7DF",
326
+ "border-emphasis": "#1D1D1B",
327
+ "border-focus": "#E85C4A",
328
+ "interactive-hover": "rgba(0, 0, 0, 0.04)",
329
+ "interactive-active": "rgba(0, 0, 0, 0.08)",
330
+ "action-primary-default": "#1D1D1B",
331
+ "action-primary-hover": "#3A3A38",
332
+ "action-primary-active": "#0A0A09",
333
+ "action-secondary-default": "#E85C4A",
334
+ "action-secondary-hover": "#D14836",
335
+ "action-secondary-active": "#BF3A2A",
336
+ "success-default": "#2D9B6E",
337
+ "success-hover": "#228357",
338
+ "success-subtle": "#F0FAF5",
339
+ "success-text": "#1A6B47",
340
+ "warning-default": "#D4960A",
341
+ "warning-hover": "#B07D08",
342
+ "warning-subtle": "#FFF9EB",
343
+ "warning-text": "#8A6106",
344
+ "error-default": "#D93025",
345
+ "error-hover": "#B5281E",
346
+ "error-subtle": "#FEF2F1",
347
+ "error-text": "#961D16",
348
+ "info-default": "#4285F4",
349
+ "info-hover": "#3367D6",
350
+ "info-subtle": "#EFF5FF",
351
+ "info-text": "#1A56C4",
352
+ "radius-none": "0",
353
+ "radius-sm": "3px",
354
+ "radius-md": "4px",
355
+ "radius-lg": "6px",
356
+ "radius-xl": "10px",
357
+ "radius-2xl": "16px",
358
+ "radius-full": "9999px",
359
+ "shadow-sm": "0 1px 2px 0 rgb(0 0 0 / 0.04)",
360
+ "shadow-md": "0 2px 6px -1px rgb(0 0 0 / 0.06)",
361
+ "shadow-lg": "0 8px 16px -4px rgb(0 0 0 / 0.08)",
362
+ "shadow-xl": "0 16px 24px -6px rgb(0 0 0 / 0.10)",
363
+ "shadow-2xl": "0 24px 48px -12px rgb(0 0 0 / 0.15)",
364
+ "shadow-inner": "inset 0 1px 3px 0 rgb(0 0 0 / 0.04)",
365
+ "font-primary": "GeneralSans, Geist, system-ui, sans-serif",
366
+ "font-secondary": "Selecta, Geist, system-ui, sans-serif",
367
+ "font-mono": "Fira Code, Consolas, Monaco, monospace"
368
+ }
369
+ },
370
+ {
371
+ "id": "status-master",
372
+ "label": "Status Master",
373
+ "createdAt": "2026-03-01T00:00:00.000Z",
374
+ "source": "project",
375
+ "sourceProject": "status-master",
376
+ "values": {
377
+ "brand-primary": "#3A5FCD",
378
+ "brand-primary-hover": "#2E4A99",
379
+ "brand-primary-active": "#1E3A8A",
380
+ "brand-secondary": "#FF6B6B",
381
+ "brand-secondary-hover": "#E85555",
382
+ "brand-secondary-active": "#CC5555",
383
+ "brand-accent": "#0099FF",
384
+ "brand-accent-hover": "#0088E6",
385
+ "background-default": "#FFFFFF",
386
+ "background-subtle": "#F8F6F0",
387
+ "background-navbar": "#FAFAFA",
388
+ "surface-default": "#FFFFFF",
389
+ "surface-subtle": "#F8F6F0",
390
+ "surface-muted": "#F5F5F5",
391
+ "surface-emphasis": "#E5E5E5",
392
+ "text-primary": "#0f0f0f",
393
+ "text-secondary": "#525252",
394
+ "text-muted": "#6b6b6b",
395
+ "text-inverse": "#ffffff",
396
+ "text-link": "#384fff",
397
+ "text-link-hover": "#2a3acc",
398
+ "border-default": "#e5e5e5",
399
+ "border-subtle": "#f5f5f5",
400
+ "border-emphasis": "#d4d4d4",
401
+ "border-focus": "#384fff",
402
+ "interactive-hover": "rgba(0, 0, 0, 0.03)",
403
+ "interactive-active": "rgba(0, 0, 0, 0.06)",
404
+ "action-primary-default": "#3A5FCD",
405
+ "action-primary-hover": "#2E4A99",
406
+ "action-primary-active": "#1E3A8A",
407
+ "action-secondary-default": "#FF6B6B",
408
+ "action-secondary-hover": "#E85555",
409
+ "action-secondary-active": "#CC5555",
410
+ "success-default": "#10b981",
411
+ "success-hover": "#059669",
412
+ "success-subtle": "#ecfdf5",
413
+ "success-text": "#065f46",
414
+ "warning-default": "#f59e0b",
415
+ "warning-hover": "#d97706",
416
+ "warning-subtle": "#fffbeb",
417
+ "warning-text": "#92400e",
418
+ "error-default": "#DC2626",
419
+ "error-hover": "#B91C1C",
420
+ "error-subtle": "#FEF2F2",
421
+ "error-text": "#991B1B",
422
+ "info-default": "#3A5FCD",
423
+ "info-hover": "#2E4A99",
424
+ "info-subtle": "#EFF6FF",
425
+ "info-text": "#1E3A8A",
426
+ "radius-none": "0",
427
+ "radius-sm": "0.25rem",
428
+ "radius-md": "0.375rem",
429
+ "radius-lg": "0.5rem",
430
+ "radius-xl": "0.75rem",
431
+ "radius-2xl": "1rem",
432
+ "radius-full": "9999px",
433
+ "shadow-sm": "0 1px 2px 0 rgb(0 0 0 / 0.05)",
434
+ "shadow-md": "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
435
+ "shadow-lg": "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
436
+ "shadow-xl": "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)",
437
+ "shadow-2xl": "0 25px 50px -12px rgb(0 0 0 / 0.25)",
438
+ "shadow-inner": "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",
439
+ "font-primary": "Inter, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif",
440
+ "font-secondary": "Georgia, Times New Roman, serif",
441
+ "font-mono": "Fira Code, Consolas, Monaco, monospace",
442
+ "btn-radius": "md",
443
+ "btn-font-weight": "medium"
444
+ }
445
+ }
446
+ ]
447
+ }
@@ -0,0 +1,212 @@
1
+ // ============================================================================
2
+ // THEME — boilerplate-dark
3
+ // ============================================================================
4
+ // Night half of Boilerplate.
5
+ //
6
+ // Promoted from a bundle-only block to a real source 2026-08-29. NOT derived
7
+ // from boilerplate.scss: --shadow-md/lg/xl here are two-part shadows where the
8
+ // parent's dark branch is single-part. That is deliberate tuning, so the values
9
+ // below are copied verbatim rather than collapsed out of the parent.
10
+ //
11
+ // Selector: :root, :root[data-theme="boilerplate-dark"]
12
+ // ============================================================================
13
+ @use '../mixins' as m;
14
+
15
+ @include m.theme('boilerplate-dark', dark) {
16
+ /* Surfaces — slate dark ramp */
17
+ --paper: #0f172a;
18
+ --paper-raised: #1e293b;
19
+ --paper-sunk: #020617;
20
+ --paper-glass: rgba(15, 23, 42, 0.85);
21
+
22
+ /* Ink — inverted slate */
23
+ --ink: #f8fafc;
24
+ --ink-soft: #e2e8f0;
25
+ --ink-faint: #94a3b8;
26
+ --graphite: #f1f5f9;
27
+ --muted: #64748b;
28
+
29
+ /* Lines — dark slate borders */
30
+ --guide: #334155;
31
+ --guide-soft: #1e293b;
32
+ --hair: #1e293b;
33
+ --hair-soft: #0f172a;
34
+
35
+ /* Primary accent — brighter blue for dark surfaces */
36
+ --ai: #3b82f6;
37
+ --ai-ink: #60a5fa;
38
+ --ai-wash: #1e3a8a;
39
+
40
+ /* Seal — red */
41
+ --shu: #ef4444;
42
+ --shu-wash: #450a0a;
43
+
44
+ /* Tertiary — amber */
45
+ --ochre: #f59e0b;
46
+ --ochre-wash: #422006;
47
+
48
+ /* Code — neutral dark syntax surface */
49
+ --code-bg: #020617;
50
+ --code-ink: #e2e8f0;
51
+ --code-muted: #708198;
52
+ --code-accent: #fb923c;
53
+ --code-green: #4ade80;
54
+ --code-blue: #60a5fa;
55
+
56
+ /* Typography — system stacks only (no @import) */
57
+ --font-display: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
58
+ --font-script: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
59
+ --font-serif: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
60
+ --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
61
+ --font-mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
62
+
63
+ /* Radius */
64
+ --r-sm: 4px;
65
+ --r-md: 6px;
66
+ --r-lg: 8px;
67
+
68
+ /* Shadow — heavier on dark, neutral black */
69
+ --shadow-sm: 0 1px 2px rgba(0, 0, 0, .30);
70
+ --shadow-md: 0 2px 4px rgba(0, 0, 0, .40);
71
+ --shadow-lg: 0 6px 16px -4px rgba(0, 0, 0, .55);
72
+ --shadow-xl: 0 16px 32px -8px rgba(0, 0, 0, .65);
73
+ --shadow-2xl: 0 24px 48px -12px rgba(0, 0, 0, .75);
74
+
75
+ /* Blur */
76
+ --blur-sm: none;
77
+ --blur-md: none;
78
+ --blur-lg: none;
79
+
80
+ /* Glow */
81
+ --glow-sm: 0 0 0 transparent;
82
+ --glow-md: 0 0 0 transparent;
83
+ --glow-lg: 0 0 0 transparent;
84
+
85
+ /* Motion */
86
+ --duration-fast: 120ms;
87
+ --duration-normal: 180ms;
88
+ --duration-slow: 280ms;
89
+ --ease: cubic-bezier(.4, 0, .2, 1);
90
+
91
+ /* Backgrounds */
92
+ --background-default: var(--paper);
93
+ --background-subtle: var(--paper-sunk);
94
+ --background-navbar: var(--paper-raised);
95
+
96
+ /* Surfaces (semantic) */
97
+ --surface-default: var(--paper);
98
+ --surface-raised: var(--paper-raised);
99
+ --surface-sunk: var(--paper-sunk);
100
+ --surface-muted: var(--paper-sunk);
101
+ --surface-subtle: var(--paper-raised);
102
+ --surface-emphasis: var(--ink);
103
+ --surface-glass: var(--paper-glass);
104
+
105
+ /* Text */
106
+ --text-primary: var(--ink);
107
+ --text-secondary: var(--ink-soft);
108
+ --text-muted: var(--ink-faint);
109
+ --text-tertiary: var(--muted);
110
+ --text-inverse: var(--paper);
111
+ --text-link: var(--ai);
112
+ --text-link-hover: var(--ai-ink);
113
+
114
+ /* Borders */
115
+ --border-default: var(--hair);
116
+ --border-subtle: var(--hair-soft);
117
+ --border-emphasis: var(--guide);
118
+ --border-focus: var(--ai);
119
+
120
+ /* Interactive overlays — light wash on dark */
121
+ --interactive-hover: rgba(248, 250, 252, 0.05);
122
+ --interactive-active: rgba(248, 250, 252, 0.10);
123
+
124
+ /* Brand */
125
+ --brand-primary: var(--ai);
126
+ --brand-primary-hover: var(--ai-ink);
127
+
128
+ /* Action triplets */
129
+ --action-primary-default: var(--ai);
130
+ --action-primary-hover: var(--ai-ink);
131
+ --action-primary-active: var(--ai-ink);
132
+ --action-primary-wash: var(--ai-wash);
133
+ --action-secondary-default: var(--shu);
134
+ --action-secondary-hover: var(--shu);
135
+ --action-secondary-active: var(--shu);
136
+ --action-secondary-wash: var(--shu-wash);
137
+ --action-tertiary-default: var(--ochre);
138
+ --action-tertiary-hover: var(--ochre);
139
+ --action-tertiary-active: var(--ochre);
140
+ --action-tertiary-wash: var(--ochre-wash);
141
+
142
+ /* Feedback */
143
+ --feedback-info: var(--ai);
144
+ --feedback-success: #22c55e;
145
+ --feedback-warning: var(--ochre);
146
+ --feedback-error: var(--shu);
147
+
148
+ /* Status — info */
149
+ --info-default: var(--ai);
150
+ --info-subtle: var(--ai-wash);
151
+ --info-text: #85BFFF;
152
+
153
+ /* Status — success */
154
+ --success-default: #22c55e;
155
+ --success-subtle: #14532d;
156
+ --success-text: #4ade80;
157
+
158
+ /* Status — warning */
159
+ --warning-default: var(--ochre);
160
+ --warning-subtle: var(--ochre-wash);
161
+ --warning-text: #fbbf24;
162
+
163
+ /* Status — error */
164
+ --error-default: var(--shu);
165
+ --error-subtle: var(--shu-wash);
166
+ --error-text: #fca5a5;
167
+
168
+ /* Space scale */
169
+ --space-2xs: 0.25rem;
170
+ --space-xs: 0.5rem;
171
+ --space-sm: 0.75rem;
172
+ --space-md: 1rem;
173
+ --space-lg: 1.5rem;
174
+ --space-xl: 2rem;
175
+
176
+ /* Radius alias */
177
+ --radius-sm: var(--r-sm);
178
+ --radius-md: var(--r-md);
179
+ --radius-lg: var(--r-lg);
180
+ --radius-xl: 12px;
181
+ --radius-full: 9999px;
182
+
183
+ /* Typography */
184
+ --font-primary: var(--font-sans);
185
+ --font-size-base: 1rem;
186
+ --line-height-normal: 1.5;
187
+ --font-weight-medium: 500;
188
+
189
+ /* Z-index layers */
190
+ --z-sticky: 1020;
191
+ --z-dropdown: 1030;
192
+ --z-backdrop: 1040;
193
+ --z-modal: 1050;
194
+ --z-popover: 1060;
195
+ --z-tooltip: 1070;
196
+
197
+ /* Spacing rhythm — THE knob for how dense or airy this theme feels.
198
+ The numbered scale is the source of truth: every component reads
199
+ var(--space-N), and the t-shirt aliases (--space-md, --space-lg …)
200
+ are emitted by the library as references to these, so they follow
201
+ automatically. Change a value here and the whole page re-proportions. */
202
+ --space-0: 0;
203
+ --space-1: 0.5rem;
204
+ --space-2: 0.75rem;
205
+ --space-3: 0.875rem;
206
+ --space-4: 1rem;
207
+ --space-5: 1.5rem;
208
+ --space-6: 2rem;
209
+ --space-7: 3rem;
210
+ --space-8: 4rem;
211
+ --space-9: 6rem;
212
+ }