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