@oxyhq/bloom 0.7.6 → 0.8.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 (111) hide show
  1. package/lib/commonjs/normalize-colors.d.js +2 -0
  2. package/lib/commonjs/normalize-colors.d.js.map +1 -0
  3. package/lib/commonjs/theme/apply-dark-class.js +15 -13
  4. package/lib/commonjs/theme/apply-dark-class.js.map +1 -1
  5. package/lib/commonjs/theme/build-theme.js +39 -61
  6. package/lib/commonjs/theme/build-theme.js.map +1 -1
  7. package/lib/commonjs/theme/color-presets.js +11 -5
  8. package/lib/commonjs/theme/color-presets.js.map +1 -1
  9. package/lib/commonjs/theme/color-scope/index.web.js +13 -3
  10. package/lib/commonjs/theme/color-scope/index.web.js.map +1 -1
  11. package/lib/commonjs/theme/color-scope/style-builder.js +7 -6
  12. package/lib/commonjs/theme/color-scope/style-builder.js.map +1 -1
  13. package/lib/commonjs/theme/color-space.js +76 -0
  14. package/lib/commonjs/theme/color-space.js.map +1 -0
  15. package/lib/commonjs/theme/index.js.map +1 -1
  16. package/lib/commonjs/theme/native-root-vars.native.js +28 -18
  17. package/lib/commonjs/theme/native-root-vars.native.js.map +1 -1
  18. package/lib/commonjs/theme/preset-vars.js +20 -99
  19. package/lib/commonjs/theme/preset-vars.js.map +1 -1
  20. package/lib/commonjs/theme/token-registry.js +123 -0
  21. package/lib/commonjs/theme/token-registry.js.map +1 -0
  22. package/lib/module/normalize-colors.d.js +2 -0
  23. package/lib/module/normalize-colors.d.js.map +1 -0
  24. package/lib/module/theme/apply-dark-class.js +15 -13
  25. package/lib/module/theme/apply-dark-class.js.map +1 -1
  26. package/lib/module/theme/build-theme.js +39 -61
  27. package/lib/module/theme/build-theme.js.map +1 -1
  28. package/lib/module/theme/color-presets.js +11 -5
  29. package/lib/module/theme/color-presets.js.map +1 -1
  30. package/lib/module/theme/color-scope/index.web.js +16 -4
  31. package/lib/module/theme/color-scope/index.web.js.map +1 -1
  32. package/lib/module/theme/color-scope/style-builder.js +7 -6
  33. package/lib/module/theme/color-scope/style-builder.js.map +1 -1
  34. package/lib/module/theme/color-space.js +69 -0
  35. package/lib/module/theme/color-space.js.map +1 -0
  36. package/lib/module/theme/index.js.map +1 -1
  37. package/lib/module/theme/native-root-vars.native.js +29 -18
  38. package/lib/module/theme/native-root-vars.native.js.map +1 -1
  39. package/lib/module/theme/preset-vars.js +19 -98
  40. package/lib/module/theme/preset-vars.js.map +1 -1
  41. package/lib/module/theme/token-registry.js +113 -0
  42. package/lib/module/theme/token-registry.js.map +1 -0
  43. package/lib/typescript/commonjs/theme/apply-dark-class.d.ts +13 -9
  44. package/lib/typescript/commonjs/theme/apply-dark-class.d.ts.map +1 -1
  45. package/lib/typescript/commonjs/theme/build-theme.d.ts +1 -1
  46. package/lib/typescript/commonjs/theme/build-theme.d.ts.map +1 -1
  47. package/lib/typescript/commonjs/theme/color-presets.d.ts +11 -5
  48. package/lib/typescript/commonjs/theme/color-presets.d.ts.map +1 -1
  49. package/lib/typescript/commonjs/theme/color-scope/index.web.d.ts.map +1 -1
  50. package/lib/typescript/commonjs/theme/color-scope/style-builder.d.ts +5 -2
  51. package/lib/typescript/commonjs/theme/color-scope/style-builder.d.ts.map +1 -1
  52. package/lib/typescript/commonjs/theme/color-space.d.ts +28 -0
  53. package/lib/typescript/commonjs/theme/color-space.d.ts.map +1 -0
  54. package/lib/typescript/commonjs/theme/index.d.ts +1 -2
  55. package/lib/typescript/commonjs/theme/index.d.ts.map +1 -1
  56. package/lib/typescript/commonjs/theme/native-root-vars.native.d.ts +25 -15
  57. package/lib/typescript/commonjs/theme/native-root-vars.native.d.ts.map +1 -1
  58. package/lib/typescript/commonjs/theme/preset-vars.d.ts +12 -45
  59. package/lib/typescript/commonjs/theme/preset-vars.d.ts.map +1 -1
  60. package/lib/typescript/commonjs/theme/token-registry.d.ts +53 -0
  61. package/lib/typescript/commonjs/theme/token-registry.d.ts.map +1 -0
  62. package/lib/typescript/commonjs/theme/types.d.ts +3 -0
  63. package/lib/typescript/commonjs/theme/types.d.ts.map +1 -1
  64. package/lib/typescript/module/theme/apply-dark-class.d.ts +13 -9
  65. package/lib/typescript/module/theme/apply-dark-class.d.ts.map +1 -1
  66. package/lib/typescript/module/theme/build-theme.d.ts +1 -1
  67. package/lib/typescript/module/theme/build-theme.d.ts.map +1 -1
  68. package/lib/typescript/module/theme/color-presets.d.ts +11 -5
  69. package/lib/typescript/module/theme/color-presets.d.ts.map +1 -1
  70. package/lib/typescript/module/theme/color-scope/index.web.d.ts.map +1 -1
  71. package/lib/typescript/module/theme/color-scope/style-builder.d.ts +5 -2
  72. package/lib/typescript/module/theme/color-scope/style-builder.d.ts.map +1 -1
  73. package/lib/typescript/module/theme/color-space.d.ts +28 -0
  74. package/lib/typescript/module/theme/color-space.d.ts.map +1 -0
  75. package/lib/typescript/module/theme/index.d.ts +1 -2
  76. package/lib/typescript/module/theme/index.d.ts.map +1 -1
  77. package/lib/typescript/module/theme/native-root-vars.native.d.ts +25 -15
  78. package/lib/typescript/module/theme/native-root-vars.native.d.ts.map +1 -1
  79. package/lib/typescript/module/theme/preset-vars.d.ts +12 -45
  80. package/lib/typescript/module/theme/preset-vars.d.ts.map +1 -1
  81. package/lib/typescript/module/theme/token-registry.d.ts +53 -0
  82. package/lib/typescript/module/theme/token-registry.d.ts.map +1 -0
  83. package/lib/typescript/module/theme/types.d.ts +3 -0
  84. package/lib/typescript/module/theme/types.d.ts.map +1 -1
  85. package/package.json +1 -1
  86. package/src/__tests__/BloomColorScope.test.tsx +14 -0
  87. package/src/__tests__/BloomThemeProvider.test.tsx +4 -3
  88. package/src/__tests__/apply-dark-class.test.ts +70 -0
  89. package/src/__tests__/native-root-vars.test.ts +8 -7
  90. package/src/__tests__/preset-vars.test.ts +42 -42
  91. package/src/__tests__/theme.test.ts +6 -6
  92. package/src/normalize-colors.d.ts +22 -0
  93. package/src/react-native-css.d.ts +3 -3
  94. package/src/theme/__tests__/__fixtures__/golden-resolved-tokens.json +574 -0
  95. package/src/theme/__tests__/__snapshots__/visual-gallery.test.tsx.snap +838 -0
  96. package/src/theme/__tests__/color-space.test.ts +28 -0
  97. package/src/theme/__tests__/golden-tokens.test.ts +33 -0
  98. package/src/theme/__tests__/runtime-contract.test.ts +49 -0
  99. package/src/theme/__tests__/token-registry.test.ts +30 -0
  100. package/src/theme/__tests__/visual-gallery.test.tsx +10 -0
  101. package/src/theme/apply-dark-class.ts +15 -11
  102. package/src/theme/build-theme.ts +39 -67
  103. package/src/theme/color-presets.ts +11 -5
  104. package/src/theme/color-scope/index.web.tsx +17 -3
  105. package/src/theme/color-scope/style-builder.ts +7 -4
  106. package/src/theme/color-space.ts +56 -0
  107. package/src/theme/index.ts +1 -5
  108. package/src/theme/native-root-vars.native.ts +28 -18
  109. package/src/theme/preset-vars.ts +17 -126
  110. package/src/theme/token-registry.ts +159 -0
  111. package/src/theme/types.ts +3 -0
@@ -20,9 +20,9 @@
20
20
  declare module 'react-native-css/native-internal' {
21
21
  /**
22
22
  * A leaf style value. Mirrors react-native-css's `compiler.types`
23
- * `StyleDescriptor`. Bloom only ever writes string color values (raw HSL
24
- * triples for the `--*` vars, sRGB `rgb(...)` for the resolved `--color-*`
25
- * vars), but the family is typed against the full descriptor union.
23
+ * `StyleDescriptor`. Bloom only ever writes string color values (sRGB
24
+ * `rgb(...)` strings from the single canonical token pipeline), but the family
25
+ * is typed against the full descriptor union.
26
26
  */
27
27
  type StyleDescriptor =
28
28
  | string
@@ -0,0 +1,574 @@
1
+ {
2
+ "teal/light": {
3
+ "--background": "rgb(239 249 250)",
4
+ "--foreground": "rgb(31 31 31)",
5
+ "--primary": "rgb(0 94 102)",
6
+ "--primary-foreground": "rgb(255 255 255)",
7
+ "--secondary": "rgb(223 244 246)",
8
+ "--secondary-foreground": "rgb(31 31 31)",
9
+ "--muted": "rgb(223 244 246)",
10
+ "--muted-foreground": "rgb(102 112 112)",
11
+ "--accent": "rgb(223 244 246)",
12
+ "--accent-foreground": "rgb(31 31 31)",
13
+ "--destructive": "rgb(239 67 67)",
14
+ "--border": "rgb(209 233 235)",
15
+ "--input": "rgb(209 233 235)",
16
+ "--ring": "rgb(0 94 102)",
17
+ "--popover": "rgb(243 251 252)",
18
+ "--popover-foreground": "rgb(31 31 31)",
19
+ "--surface": "rgb(231 247 249)",
20
+ "--surface-foreground": "rgb(31 31 31)",
21
+ "--card": "rgb(243 251 252)",
22
+ "--card-foreground": "rgb(31 31 31)"
23
+ },
24
+ "teal/dark": {
25
+ "--background": "rgb(6 18 19)",
26
+ "--foreground": "rgb(237 237 237)",
27
+ "--primary": "rgb(0 94 102)",
28
+ "--primary-foreground": "rgb(255 255 255)",
29
+ "--secondary": "rgb(37 54 55)",
30
+ "--secondary-foreground": "rgb(237 237 237)",
31
+ "--muted": "rgb(42 59 60)",
32
+ "--muted-foreground": "rgb(179 179 179)",
33
+ "--accent": "rgb(42 59 60)",
34
+ "--accent-foreground": "rgb(237 237 237)",
35
+ "--destructive": "rgb(239 67 67)",
36
+ "--border": "rgb(45 56 57)",
37
+ "--input": "rgb(53 64 65)",
38
+ "--ring": "rgb(0 94 102)",
39
+ "--popover": "rgb(37 54 55)",
40
+ "--popover-foreground": "rgb(237 237 237)",
41
+ "--surface": "rgb(37 54 55)",
42
+ "--surface-foreground": "rgb(237 237 237)",
43
+ "--card": "rgb(18 32 33)",
44
+ "--card-foreground": "rgb(237 237 237)"
45
+ },
46
+ "blue/light": {
47
+ "--background": "rgb(239 246 250)",
48
+ "--foreground": "rgb(31 31 31)",
49
+ "--primary": "rgb(31 153 239)",
50
+ "--primary-foreground": "rgb(255 255 255)",
51
+ "--secondary": "rgb(223 236 246)",
52
+ "--secondary-foreground": "rgb(31 31 31)",
53
+ "--muted": "rgb(223 236 246)",
54
+ "--muted-foreground": "rgb(102 108 112)",
55
+ "--accent": "rgb(223 236 246)",
56
+ "--accent-foreground": "rgb(31 31 31)",
57
+ "--destructive": "rgb(239 67 67)",
58
+ "--border": "rgb(209 224 235)",
59
+ "--input": "rgb(209 224 235)",
60
+ "--ring": "rgb(31 153 239)",
61
+ "--popover": "rgb(243 248 252)",
62
+ "--popover-foreground": "rgb(31 31 31)",
63
+ "--surface": "rgb(231 241 249)",
64
+ "--surface-foreground": "rgb(31 31 31)",
65
+ "--card": "rgb(243 248 252)",
66
+ "--card-foreground": "rgb(31 31 31)"
67
+ },
68
+ "blue/dark": {
69
+ "--background": "rgb(6 14 19)",
70
+ "--foreground": "rgb(237 237 237)",
71
+ "--primary": "rgb(31 153 239)",
72
+ "--primary-foreground": "rgb(255 255 255)",
73
+ "--secondary": "rgb(37 47 55)",
74
+ "--secondary-foreground": "rgb(237 237 237)",
75
+ "--muted": "rgb(42 53 60)",
76
+ "--muted-foreground": "rgb(179 179 179)",
77
+ "--accent": "rgb(42 53 60)",
78
+ "--accent-foreground": "rgb(237 237 237)",
79
+ "--destructive": "rgb(239 67 67)",
80
+ "--border": "rgb(45 52 57)",
81
+ "--input": "rgb(53 60 65)",
82
+ "--ring": "rgb(31 153 239)",
83
+ "--popover": "rgb(37 47 55)",
84
+ "--popover-foreground": "rgb(237 237 237)",
85
+ "--surface": "rgb(37 47 55)",
86
+ "--surface-foreground": "rgb(237 237 237)",
87
+ "--card": "rgb(18 27 33)",
88
+ "--card-foreground": "rgb(237 237 237)"
89
+ },
90
+ "green/light": {
91
+ "--background": "rgb(239 250 247)",
92
+ "--foreground": "rgb(31 31 31)",
93
+ "--primary": "rgb(16 183 127)",
94
+ "--primary-foreground": "rgb(255 255 255)",
95
+ "--secondary": "rgb(223 246 238)",
96
+ "--secondary-foreground": "rgb(31 31 31)",
97
+ "--muted": "rgb(223 246 238)",
98
+ "--muted-foreground": "rgb(102 112 109)",
99
+ "--accent": "rgb(223 246 238)",
100
+ "--accent-foreground": "rgb(31 31 31)",
101
+ "--destructive": "rgb(239 67 67)",
102
+ "--border": "rgb(209 235 226)",
103
+ "--input": "rgb(209 235 226)",
104
+ "--ring": "rgb(16 183 127)",
105
+ "--popover": "rgb(243 252 249)",
106
+ "--popover-foreground": "rgb(31 31 31)",
107
+ "--surface": "rgb(231 249 243)",
108
+ "--surface-foreground": "rgb(31 31 31)",
109
+ "--card": "rgb(243 252 249)",
110
+ "--card-foreground": "rgb(31 31 31)"
111
+ },
112
+ "green/dark": {
113
+ "--background": "rgb(6 19 15)",
114
+ "--foreground": "rgb(237 237 237)",
115
+ "--primary": "rgb(16 183 127)",
116
+ "--primary-foreground": "rgb(255 255 255)",
117
+ "--secondary": "rgb(37 55 49)",
118
+ "--secondary-foreground": "rgb(237 237 237)",
119
+ "--muted": "rgb(42 60 54)",
120
+ "--muted-foreground": "rgb(179 179 179)",
121
+ "--accent": "rgb(42 60 54)",
122
+ "--accent-foreground": "rgb(237 237 237)",
123
+ "--destructive": "rgb(239 67 67)",
124
+ "--border": "rgb(45 57 53)",
125
+ "--input": "rgb(53 65 61)",
126
+ "--ring": "rgb(16 183 127)",
127
+ "--popover": "rgb(37 55 49)",
128
+ "--popover-foreground": "rgb(237 237 237)",
129
+ "--surface": "rgb(37 55 49)",
130
+ "--surface-foreground": "rgb(237 237 237)",
131
+ "--card": "rgb(18 33 28)",
132
+ "--card-foreground": "rgb(237 237 237)"
133
+ },
134
+ "amber/light": {
135
+ "--background": "rgb(250 246 239)",
136
+ "--foreground": "rgb(31 31 31)",
137
+ "--primary": "rgb(245 159 10)",
138
+ "--primary-foreground": "rgb(0 0 0)",
139
+ "--secondary": "rgb(246 238 223)",
140
+ "--secondary-foreground": "rgb(31 31 31)",
141
+ "--muted": "rgb(246 238 223)",
142
+ "--muted-foreground": "rgb(112 109 102)",
143
+ "--accent": "rgb(246 238 223)",
144
+ "--accent-foreground": "rgb(31 31 31)",
145
+ "--destructive": "rgb(239 67 67)",
146
+ "--border": "rgb(235 225 209)",
147
+ "--input": "rgb(235 225 209)",
148
+ "--ring": "rgb(245 159 10)",
149
+ "--popover": "rgb(252 248 243)",
150
+ "--popover-foreground": "rgb(31 31 31)",
151
+ "--surface": "rgb(249 242 231)",
152
+ "--surface-foreground": "rgb(31 31 31)",
153
+ "--card": "rgb(252 248 243)",
154
+ "--card-foreground": "rgb(31 31 31)"
155
+ },
156
+ "amber/dark": {
157
+ "--background": "rgb(19 14 6)",
158
+ "--foreground": "rgb(237 237 237)",
159
+ "--primary": "rgb(245 159 10)",
160
+ "--primary-foreground": "rgb(0 0 0)",
161
+ "--secondary": "rgb(55 48 37)",
162
+ "--secondary-foreground": "rgb(237 237 237)",
163
+ "--muted": "rgb(60 53 42)",
164
+ "--muted-foreground": "rgb(179 179 179)",
165
+ "--accent": "rgb(60 53 42)",
166
+ "--accent-foreground": "rgb(237 237 237)",
167
+ "--destructive": "rgb(239 67 67)",
168
+ "--border": "rgb(57 53 45)",
169
+ "--input": "rgb(65 60 53)",
170
+ "--ring": "rgb(245 159 10)",
171
+ "--popover": "rgb(55 48 37)",
172
+ "--popover-foreground": "rgb(237 237 237)",
173
+ "--surface": "rgb(55 48 37)",
174
+ "--surface-foreground": "rgb(237 237 237)",
175
+ "--card": "rgb(33 28 18)",
176
+ "--card-foreground": "rgb(237 237 237)"
177
+ },
178
+ "yellow/light": {
179
+ "--background": "rgb(250 248 239)",
180
+ "--foreground": "rgb(31 31 31)",
181
+ "--primary": "rgb(255 196 0)",
182
+ "--primary-foreground": "rgb(0 0 0)",
183
+ "--secondary": "rgb(246 241 223)",
184
+ "--secondary-foreground": "rgb(31 31 31)",
185
+ "--muted": "rgb(246 241 223)",
186
+ "--muted-foreground": "rgb(112 110 102)",
187
+ "--accent": "rgb(246 241 223)",
188
+ "--accent-foreground": "rgb(31 31 31)",
189
+ "--destructive": "rgb(239 67 67)",
190
+ "--border": "rgb(235 229 209)",
191
+ "--input": "rgb(235 229 209)",
192
+ "--ring": "rgb(255 196 0)",
193
+ "--popover": "rgb(252 250 243)",
194
+ "--popover-foreground": "rgb(31 31 31)",
195
+ "--surface": "rgb(249 244 231)",
196
+ "--surface-foreground": "rgb(31 31 31)",
197
+ "--card": "rgb(252 250 243)",
198
+ "--card-foreground": "rgb(31 31 31)"
199
+ },
200
+ "yellow/dark": {
201
+ "--background": "rgb(19 16 6)",
202
+ "--foreground": "rgb(237 237 237)",
203
+ "--primary": "rgb(255 196 0)",
204
+ "--primary-foreground": "rgb(0 0 0)",
205
+ "--secondary": "rgb(55 51 37)",
206
+ "--secondary-foreground": "rgb(237 237 237)",
207
+ "--muted": "rgb(60 56 42)",
208
+ "--muted-foreground": "rgb(179 179 179)",
209
+ "--accent": "rgb(60 56 42)",
210
+ "--accent-foreground": "rgb(237 237 237)",
211
+ "--destructive": "rgb(239 67 67)",
212
+ "--border": "rgb(57 54 45)",
213
+ "--input": "rgb(65 62 53)",
214
+ "--ring": "rgb(255 196 0)",
215
+ "--popover": "rgb(55 51 37)",
216
+ "--popover-foreground": "rgb(237 237 237)",
217
+ "--surface": "rgb(55 51 37)",
218
+ "--surface-foreground": "rgb(237 237 237)",
219
+ "--card": "rgb(33 30 18)",
220
+ "--card-foreground": "rgb(237 237 237)"
221
+ },
222
+ "red/light": {
223
+ "--background": "rgb(250 239 239)",
224
+ "--foreground": "rgb(31 31 31)",
225
+ "--primary": "rgb(239 67 67)",
226
+ "--primary-foreground": "rgb(255 255 255)",
227
+ "--secondary": "rgb(246 223 223)",
228
+ "--secondary-foreground": "rgb(31 31 31)",
229
+ "--muted": "rgb(246 223 223)",
230
+ "--muted-foreground": "rgb(112 102 102)",
231
+ "--accent": "rgb(246 223 223)",
232
+ "--accent-foreground": "rgb(31 31 31)",
233
+ "--destructive": "rgb(239 67 67)",
234
+ "--border": "rgb(235 209 209)",
235
+ "--input": "rgb(235 209 209)",
236
+ "--ring": "rgb(239 67 67)",
237
+ "--popover": "rgb(252 243 243)",
238
+ "--popover-foreground": "rgb(31 31 31)",
239
+ "--surface": "rgb(249 231 231)",
240
+ "--surface-foreground": "rgb(31 31 31)",
241
+ "--card": "rgb(252 243 243)",
242
+ "--card-foreground": "rgb(31 31 31)"
243
+ },
244
+ "red/dark": {
245
+ "--background": "rgb(19 6 6)",
246
+ "--foreground": "rgb(237 237 237)",
247
+ "--primary": "rgb(239 67 67)",
248
+ "--primary-foreground": "rgb(255 255 255)",
249
+ "--secondary": "rgb(55 37 37)",
250
+ "--secondary-foreground": "rgb(237 237 237)",
251
+ "--muted": "rgb(60 42 42)",
252
+ "--muted-foreground": "rgb(179 179 179)",
253
+ "--accent": "rgb(60 42 42)",
254
+ "--accent-foreground": "rgb(237 237 237)",
255
+ "--destructive": "rgb(239 67 67)",
256
+ "--border": "rgb(57 45 45)",
257
+ "--input": "rgb(65 53 53)",
258
+ "--ring": "rgb(239 67 67)",
259
+ "--popover": "rgb(55 37 37)",
260
+ "--popover-foreground": "rgb(237 237 237)",
261
+ "--surface": "rgb(55 37 37)",
262
+ "--surface-foreground": "rgb(237 237 237)",
263
+ "--card": "rgb(33 18 18)",
264
+ "--card-foreground": "rgb(237 237 237)"
265
+ },
266
+ "purple/light": {
267
+ "--background": "rgb(243 239 250)",
268
+ "--foreground": "rgb(31 31 31)",
269
+ "--primary": "rgb(137 90 246)",
270
+ "--primary-foreground": "rgb(255 255 255)",
271
+ "--secondary": "rgb(230 223 246)",
272
+ "--secondary-foreground": "rgb(31 31 31)",
273
+ "--muted": "rgb(230 223 246)",
274
+ "--muted-foreground": "rgb(105 102 112)",
275
+ "--accent": "rgb(230 223 246)",
276
+ "--accent-foreground": "rgb(31 31 31)",
277
+ "--destructive": "rgb(239 67 67)",
278
+ "--border": "rgb(217 209 235)",
279
+ "--input": "rgb(217 209 235)",
280
+ "--ring": "rgb(137 90 246)",
281
+ "--popover": "rgb(246 243 252)",
282
+ "--popover-foreground": "rgb(31 31 31)",
283
+ "--surface": "rgb(236 231 249)",
284
+ "--surface-foreground": "rgb(31 31 31)",
285
+ "--card": "rgb(246 243 252)",
286
+ "--card-foreground": "rgb(31 31 31)"
287
+ },
288
+ "purple/dark": {
289
+ "--background": "rgb(10 6 19)",
290
+ "--foreground": "rgb(237 237 237)",
291
+ "--primary": "rgb(137 90 246)",
292
+ "--primary-foreground": "rgb(255 255 255)",
293
+ "--secondary": "rgb(42 37 55)",
294
+ "--secondary-foreground": "rgb(237 237 237)",
295
+ "--muted": "rgb(47 42 60)",
296
+ "--muted-foreground": "rgb(179 179 179)",
297
+ "--accent": "rgb(47 42 60)",
298
+ "--accent-foreground": "rgb(237 237 237)",
299
+ "--destructive": "rgb(239 67 67)",
300
+ "--border": "rgb(49 45 57)",
301
+ "--input": "rgb(56 53 65)",
302
+ "--ring": "rgb(137 90 246)",
303
+ "--popover": "rgb(42 37 55)",
304
+ "--popover-foreground": "rgb(237 237 237)",
305
+ "--surface": "rgb(42 37 55)",
306
+ "--surface-foreground": "rgb(237 237 237)",
307
+ "--card": "rgb(22 18 33)",
308
+ "--card-foreground": "rgb(237 237 237)"
309
+ },
310
+ "pink/light": {
311
+ "--background": "rgb(250 239 245)",
312
+ "--foreground": "rgb(31 31 31)",
313
+ "--primary": "rgb(236 70 153)",
314
+ "--primary-foreground": "rgb(255 255 255)",
315
+ "--secondary": "rgb(246 223 235)",
316
+ "--secondary-foreground": "rgb(31 31 31)",
317
+ "--muted": "rgb(246 223 235)",
318
+ "--muted-foreground": "rgb(112 102 107)",
319
+ "--accent": "rgb(246 223 235)",
320
+ "--accent-foreground": "rgb(31 31 31)",
321
+ "--destructive": "rgb(239 67 67)",
322
+ "--border": "rgb(235 209 222)",
323
+ "--input": "rgb(235 209 222)",
324
+ "--ring": "rgb(236 70 153)",
325
+ "--popover": "rgb(252 243 247)",
326
+ "--popover-foreground": "rgb(31 31 31)",
327
+ "--surface": "rgb(249 231 240)",
328
+ "--surface-foreground": "rgb(31 31 31)",
329
+ "--card": "rgb(252 243 247)",
330
+ "--card-foreground": "rgb(31 31 31)"
331
+ },
332
+ "pink/dark": {
333
+ "--background": "rgb(19 6 13)",
334
+ "--foreground": "rgb(237 237 237)",
335
+ "--primary": "rgb(236 70 153)",
336
+ "--primary-foreground": "rgb(255 255 255)",
337
+ "--secondary": "rgb(55 37 46)",
338
+ "--secondary-foreground": "rgb(237 237 237)",
339
+ "--muted": "rgb(60 42 51)",
340
+ "--muted-foreground": "rgb(179 179 179)",
341
+ "--accent": "rgb(60 42 51)",
342
+ "--accent-foreground": "rgb(237 237 237)",
343
+ "--destructive": "rgb(239 67 67)",
344
+ "--border": "rgb(57 45 51)",
345
+ "--input": "rgb(65 53 59)",
346
+ "--ring": "rgb(236 70 153)",
347
+ "--popover": "rgb(55 37 46)",
348
+ "--popover-foreground": "rgb(237 237 237)",
349
+ "--surface": "rgb(55 37 46)",
350
+ "--surface-foreground": "rgb(237 237 237)",
351
+ "--card": "rgb(33 18 26)",
352
+ "--card-foreground": "rgb(237 237 237)"
353
+ },
354
+ "sky/light": {
355
+ "--background": "rgb(239 247 250)",
356
+ "--foreground": "rgb(31 31 31)",
357
+ "--primary": "rgb(13 162 231)",
358
+ "--primary-foreground": "rgb(255 255 255)",
359
+ "--secondary": "rgb(223 239 246)",
360
+ "--secondary-foreground": "rgb(31 31 31)",
361
+ "--muted": "rgb(223 239 246)",
362
+ "--muted-foreground": "rgb(102 109 112)",
363
+ "--accent": "rgb(223 239 246)",
364
+ "--accent-foreground": "rgb(31 31 31)",
365
+ "--destructive": "rgb(239 67 67)",
366
+ "--border": "rgb(209 227 235)",
367
+ "--input": "rgb(209 227 235)",
368
+ "--ring": "rgb(13 162 231)",
369
+ "--popover": "rgb(243 249 252)",
370
+ "--popover-foreground": "rgb(31 31 31)",
371
+ "--surface": "rgb(231 243 249)",
372
+ "--surface-foreground": "rgb(31 31 31)",
373
+ "--card": "rgb(243 249 252)",
374
+ "--card-foreground": "rgb(31 31 31)"
375
+ },
376
+ "sky/dark": {
377
+ "--background": "rgb(6 15 19)",
378
+ "--foreground": "rgb(237 237 237)",
379
+ "--primary": "rgb(13 162 231)",
380
+ "--primary-foreground": "rgb(255 255 255)",
381
+ "--secondary": "rgb(37 49 55)",
382
+ "--secondary-foreground": "rgb(237 237 237)",
383
+ "--muted": "rgb(42 54 60)",
384
+ "--muted-foreground": "rgb(179 179 179)",
385
+ "--accent": "rgb(42 54 60)",
386
+ "--accent-foreground": "rgb(237 237 237)",
387
+ "--destructive": "rgb(239 67 67)",
388
+ "--border": "rgb(45 53 57)",
389
+ "--input": "rgb(53 61 65)",
390
+ "--ring": "rgb(13 162 231)",
391
+ "--popover": "rgb(37 49 55)",
392
+ "--popover-foreground": "rgb(237 237 237)",
393
+ "--surface": "rgb(37 49 55)",
394
+ "--surface-foreground": "rgb(237 237 237)",
395
+ "--card": "rgb(18 28 33)",
396
+ "--card-foreground": "rgb(237 237 237)"
397
+ },
398
+ "orange/light": {
399
+ "--background": "rgb(250 244 239)",
400
+ "--foreground": "rgb(31 31 31)",
401
+ "--primary": "rgb(249 116 21)",
402
+ "--primary-foreground": "rgb(255 255 255)",
403
+ "--secondary": "rgb(246 233 223)",
404
+ "--secondary-foreground": "rgb(31 31 31)",
405
+ "--muted": "rgb(246 233 223)",
406
+ "--muted-foreground": "rgb(112 106 102)",
407
+ "--accent": "rgb(246 233 223)",
408
+ "--accent-foreground": "rgb(31 31 31)",
409
+ "--destructive": "rgb(239 67 67)",
410
+ "--border": "rgb(235 220 209)",
411
+ "--input": "rgb(235 220 209)",
412
+ "--ring": "rgb(249 116 21)",
413
+ "--popover": "rgb(252 247 243)",
414
+ "--popover-foreground": "rgb(31 31 31)",
415
+ "--surface": "rgb(249 238 231)",
416
+ "--surface-foreground": "rgb(31 31 31)",
417
+ "--card": "rgb(252 247 243)",
418
+ "--card-foreground": "rgb(31 31 31)"
419
+ },
420
+ "orange/dark": {
421
+ "--background": "rgb(19 12 6)",
422
+ "--foreground": "rgb(237 237 237)",
423
+ "--primary": "rgb(249 116 21)",
424
+ "--primary-foreground": "rgb(255 255 255)",
425
+ "--secondary": "rgb(55 44 37)",
426
+ "--secondary-foreground": "rgb(237 237 237)",
427
+ "--muted": "rgb(60 49 42)",
428
+ "--muted-foreground": "rgb(179 179 179)",
429
+ "--accent": "rgb(60 49 42)",
430
+ "--accent-foreground": "rgb(237 237 237)",
431
+ "--destructive": "rgb(239 67 67)",
432
+ "--border": "rgb(57 50 45)",
433
+ "--input": "rgb(65 58 53)",
434
+ "--ring": "rgb(249 116 21)",
435
+ "--popover": "rgb(55 44 37)",
436
+ "--popover-foreground": "rgb(237 237 237)",
437
+ "--surface": "rgb(55 44 37)",
438
+ "--surface-foreground": "rgb(237 237 237)",
439
+ "--card": "rgb(33 24 18)",
440
+ "--card-foreground": "rgb(237 237 237)"
441
+ },
442
+ "mint/light": {
443
+ "--background": "rgb(239 250 249)",
444
+ "--foreground": "rgb(31 31 31)",
445
+ "--primary": "rgb(20 184 165)",
446
+ "--primary-foreground": "rgb(255 255 255)",
447
+ "--secondary": "rgb(223 246 243)",
448
+ "--secondary-foreground": "rgb(31 31 31)",
449
+ "--muted": "rgb(223 246 243)",
450
+ "--muted-foreground": "rgb(102 112 111)",
451
+ "--accent": "rgb(223 246 243)",
452
+ "--accent-foreground": "rgb(31 31 31)",
453
+ "--destructive": "rgb(239 67 67)",
454
+ "--border": "rgb(209 235 232)",
455
+ "--input": "rgb(209 235 232)",
456
+ "--ring": "rgb(20 184 165)",
457
+ "--popover": "rgb(243 252 251)",
458
+ "--popover-foreground": "rgb(31 31 31)",
459
+ "--surface": "rgb(231 249 247)",
460
+ "--surface-foreground": "rgb(31 31 31)",
461
+ "--card": "rgb(243 252 251)",
462
+ "--card-foreground": "rgb(31 31 31)"
463
+ },
464
+ "mint/dark": {
465
+ "--background": "rgb(6 19 18)",
466
+ "--foreground": "rgb(237 237 237)",
467
+ "--primary": "rgb(20 184 165)",
468
+ "--primary-foreground": "rgb(255 255 255)",
469
+ "--secondary": "rgb(37 55 53)",
470
+ "--secondary-foreground": "rgb(237 237 237)",
471
+ "--muted": "rgb(42 60 58)",
472
+ "--muted-foreground": "rgb(179 179 179)",
473
+ "--accent": "rgb(42 60 58)",
474
+ "--accent-foreground": "rgb(237 237 237)",
475
+ "--destructive": "rgb(239 67 67)",
476
+ "--border": "rgb(45 57 56)",
477
+ "--input": "rgb(53 65 63)",
478
+ "--ring": "rgb(20 184 165)",
479
+ "--popover": "rgb(37 55 53)",
480
+ "--popover-foreground": "rgb(237 237 237)",
481
+ "--surface": "rgb(37 55 53)",
482
+ "--surface-foreground": "rgb(237 237 237)",
483
+ "--card": "rgb(18 33 31)",
484
+ "--card-foreground": "rgb(237 237 237)"
485
+ },
486
+ "oxy/light": {
487
+ "--background": "rgb(246 239 250)",
488
+ "--foreground": "rgb(31 31 31)",
489
+ "--primary": "rgb(160 69 217)",
490
+ "--primary-foreground": "rgb(255 255 255)",
491
+ "--secondary": "rgb(237 223 246)",
492
+ "--secondary-foreground": "rgb(31 31 31)",
493
+ "--muted": "rgb(237 223 246)",
494
+ "--muted-foreground": "rgb(108 102 112)",
495
+ "--accent": "rgb(237 223 246)",
496
+ "--accent-foreground": "rgb(31 31 31)",
497
+ "--destructive": "rgb(239 67 67)",
498
+ "--border": "rgb(225 209 235)",
499
+ "--input": "rgb(225 209 235)",
500
+ "--ring": "rgb(160 69 217)",
501
+ "--popover": "rgb(248 243 252)",
502
+ "--popover-foreground": "rgb(31 31 31)",
503
+ "--surface": "rgb(242 231 249)",
504
+ "--surface-foreground": "rgb(31 31 31)",
505
+ "--card": "rgb(248 243 252)",
506
+ "--card-foreground": "rgb(31 31 31)"
507
+ },
508
+ "oxy/dark": {
509
+ "--background": "rgb(14 6 19)",
510
+ "--foreground": "rgb(237 237 237)",
511
+ "--primary": "rgb(160 69 217)",
512
+ "--primary-foreground": "rgb(255 255 255)",
513
+ "--secondary": "rgb(48 37 55)",
514
+ "--secondary-foreground": "rgb(237 237 237)",
515
+ "--muted": "rgb(53 42 60)",
516
+ "--muted-foreground": "rgb(179 179 179)",
517
+ "--accent": "rgb(53 42 60)",
518
+ "--accent-foreground": "rgb(237 237 237)",
519
+ "--destructive": "rgb(239 67 67)",
520
+ "--border": "rgb(52 45 57)",
521
+ "--input": "rgb(60 53 65)",
522
+ "--ring": "rgb(160 69 217)",
523
+ "--popover": "rgb(48 37 55)",
524
+ "--popover-foreground": "rgb(237 237 237)",
525
+ "--surface": "rgb(48 37 55)",
526
+ "--surface-foreground": "rgb(237 237 237)",
527
+ "--card": "rgb(27 18 33)",
528
+ "--card-foreground": "rgb(237 237 237)"
529
+ },
530
+ "faircoin/light": {
531
+ "--background": "rgb(244 250 239)",
532
+ "--foreground": "rgb(31 31 31)",
533
+ "--primary": "rgb(60 121 6)",
534
+ "--primary-foreground": "rgb(255 255 255)",
535
+ "--secondary": "rgb(234 246 223)",
536
+ "--secondary-foreground": "rgb(31 31 31)",
537
+ "--muted": "rgb(234 246 223)",
538
+ "--muted-foreground": "rgb(102 107 97)",
539
+ "--accent": "rgb(234 246 223)",
540
+ "--accent-foreground": "rgb(31 31 31)",
541
+ "--destructive": "rgb(239 67 67)",
542
+ "--border": "rgb(221 235 209)",
543
+ "--input": "rgb(221 235 209)",
544
+ "--ring": "rgb(60 121 6)",
545
+ "--popover": "rgb(247 252 243)",
546
+ "--popover-foreground": "rgb(31 31 31)",
547
+ "--surface": "rgb(239 249 231)",
548
+ "--surface-foreground": "rgb(31 31 31)",
549
+ "--card": "rgb(247 252 243)",
550
+ "--card-foreground": "rgb(31 31 31)"
551
+ },
552
+ "faircoin/dark": {
553
+ "--background": "rgb(28 31 9)",
554
+ "--foreground": "rgb(237 237 237)",
555
+ "--primary": "rgb(160 251 80)",
556
+ "--primary-foreground": "rgb(0 0 0)",
557
+ "--secondary": "rgb(44 46 31)",
558
+ "--secondary-foreground": "rgb(237 237 237)",
559
+ "--muted": "rgb(46 48 33)",
560
+ "--muted-foreground": "rgb(117 117 117)",
561
+ "--accent": "rgb(46 48 33)",
562
+ "--accent-foreground": "rgb(237 237 237)",
563
+ "--destructive": "rgb(239 67 67)",
564
+ "--border": "rgb(52 55 37)",
565
+ "--input": "rgb(56 59 43)",
566
+ "--ring": "rgb(160 251 80)",
567
+ "--popover": "rgb(40 43 23)",
568
+ "--popover-foreground": "rgb(237 237 237)",
569
+ "--surface": "rgb(40 43 23)",
570
+ "--surface-foreground": "rgb(237 237 237)",
571
+ "--card": "rgb(25 33 18)",
572
+ "--card-foreground": "rgb(237 237 237)"
573
+ }
574
+ }