@nswds/tokens 2.32.2 → 2.33.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 (192) hide show
  1. package/README.md +23 -0
  2. package/dist/css/colors/global/hsl.css +342 -342
  3. package/dist/css/colors/global/oklch.css +342 -342
  4. package/dist/css/colors/semantic/hsl.css +76 -76
  5. package/dist/css/colors/semantic/oklch.css +76 -76
  6. package/dist/css/colors/themes/data-visualisation/hex.css +208 -0
  7. package/dist/css/colors/themes/data-visualisation/hsl.css +208 -0
  8. package/dist/css/colors/themes/data-visualisation/oklch.css +208 -0
  9. package/dist/css/colors/themes/data-visualisation/rgb.css +208 -0
  10. package/dist/css/colors/themes/fuchsia-blue/hex.css +59 -0
  11. package/dist/css/colors/themes/fuchsia-blue/hsl.css +59 -0
  12. package/dist/css/colors/themes/fuchsia-blue/oklch.css +59 -0
  13. package/dist/css/colors/themes/fuchsia-blue/rgb.css +59 -0
  14. package/dist/css/colors/themes/fuchsia-orange/hex.css +59 -0
  15. package/dist/css/colors/themes/fuchsia-orange/hsl.css +59 -0
  16. package/dist/css/colors/themes/fuchsia-orange/oklch.css +59 -0
  17. package/dist/css/colors/themes/fuchsia-orange/rgb.css +59 -0
  18. package/dist/css/colors/themes/masterbrand/hsl.css +57 -57
  19. package/dist/css/colors/themes/masterbrand/oklch.css +57 -57
  20. package/dist/figma/color/global/hex.json +1 -1
  21. package/dist/figma/color/global/hsl.json +1027 -2053
  22. package/dist/figma/color/global/oklch.json +1027 -2053
  23. package/dist/figma/color/global/rgb.json +1369 -2395
  24. package/dist/figma/color/semantic/hsl.json +228 -152
  25. package/dist/figma/color/semantic/oklch.json +228 -152
  26. package/dist/figma/color/semantic/rgb.json +304 -228
  27. package/dist/figma/color/themes/data-visualisation/hex.json +846 -0
  28. package/dist/figma/color/themes/data-visualisation/hsl.json +1876 -0
  29. package/dist/figma/color/themes/data-visualisation/oklch.json +1876 -0
  30. package/dist/figma/color/themes/data-visualisation/rgb.json +1876 -0
  31. package/dist/figma/color/themes/fuchsia-blue/hex.json +236 -0
  32. package/dist/figma/color/themes/fuchsia-blue/hsl.json +521 -0
  33. package/dist/figma/color/themes/fuchsia-blue/oklch.json +521 -0
  34. package/dist/figma/color/themes/fuchsia-blue/rgb.json +521 -0
  35. package/dist/figma/color/themes/fuchsia-orange/hex.json +236 -0
  36. package/dist/figma/color/themes/fuchsia-orange/hsl.json +521 -0
  37. package/dist/figma/color/themes/fuchsia-orange/oklch.json +521 -0
  38. package/dist/figma/color/themes/fuchsia-orange/rgb.json +521 -0
  39. package/dist/figma/color/themes/masterbrand/color/hsl.json +171 -114
  40. package/dist/figma/color/themes/masterbrand/color/oklch.json +171 -114
  41. package/dist/figma/color/themes/masterbrand/color/rgb.json +228 -171
  42. package/dist/index.cjs +33786 -11365
  43. package/dist/index.cjs.map +1 -1
  44. package/dist/index.d.cts +3878 -482
  45. package/dist/index.d.ts +3878 -482
  46. package/dist/index.js +33786 -11365
  47. package/dist/index.js.map +1 -1
  48. package/dist/js/colors/global/hsl.js +342 -342
  49. package/dist/js/colors/global/oklch.js +342 -342
  50. package/dist/js/colors/semantic/hex.js +0 -3
  51. package/dist/js/colors/semantic/hsl.js +76 -79
  52. package/dist/js/colors/semantic/oklch.js +76 -79
  53. package/dist/js/colors/semantic/rgb.js +0 -3
  54. package/dist/js/colors/themes/data-visualisation/hex.js +226 -0
  55. package/dist/js/colors/themes/data-visualisation/hsl.js +226 -0
  56. package/dist/js/colors/themes/data-visualisation/oklch.js +226 -0
  57. package/dist/js/colors/themes/data-visualisation/rgb.js +226 -0
  58. package/dist/js/colors/themes/fuchsia-blue/hex.js +63 -0
  59. package/dist/js/colors/themes/fuchsia-blue/hsl.js +63 -0
  60. package/dist/js/colors/themes/fuchsia-blue/oklch.js +63 -0
  61. package/dist/js/colors/themes/fuchsia-blue/rgb.js +63 -0
  62. package/dist/js/colors/themes/fuchsia-orange/hex.js +63 -0
  63. package/dist/js/colors/themes/fuchsia-orange/hsl.js +63 -0
  64. package/dist/js/colors/themes/fuchsia-orange/oklch.js +63 -0
  65. package/dist/js/colors/themes/fuchsia-orange/rgb.js +63 -0
  66. package/dist/js/colors/themes/masterbrand/hsl.js +57 -57
  67. package/dist/js/colors/themes/masterbrand/oklch.js +57 -57
  68. package/dist/json/colors/global/hex.json +1 -1
  69. package/dist/json/colors/global/hsl.json +343 -343
  70. package/dist/json/colors/global/oklch.json +343 -343
  71. package/dist/json/colors/global/rgb.json +1 -1
  72. package/dist/json/colors/semantic/hsl.json +76 -76
  73. package/dist/json/colors/semantic/oklch.json +76 -76
  74. package/dist/json/colors/themes/data-visualisation/hex.json +228 -0
  75. package/dist/json/colors/themes/data-visualisation/hsl.json +228 -0
  76. package/dist/json/colors/themes/data-visualisation/oklch.json +228 -0
  77. package/dist/json/colors/themes/data-visualisation/rgb.json +228 -0
  78. package/dist/json/colors/themes/fuchsia-blue/hex.json +65 -0
  79. package/dist/json/colors/themes/fuchsia-blue/hsl.json +65 -0
  80. package/dist/json/colors/themes/fuchsia-blue/oklch.json +65 -0
  81. package/dist/json/colors/themes/fuchsia-blue/rgb.json +65 -0
  82. package/dist/json/colors/themes/fuchsia-orange/hex.json +65 -0
  83. package/dist/json/colors/themes/fuchsia-orange/hsl.json +65 -0
  84. package/dist/json/colors/themes/fuchsia-orange/oklch.json +65 -0
  85. package/dist/json/colors/themes/fuchsia-orange/rgb.json +65 -0
  86. package/dist/json/colors/themes/masterbrand/hsl.json +57 -57
  87. package/dist/json/colors/themes/masterbrand/oklch.json +57 -57
  88. package/dist/less/colors/global/hsl.less +342 -342
  89. package/dist/less/colors/global/oklch.less +342 -342
  90. package/dist/less/colors/semantic/hsl.less +76 -76
  91. package/dist/less/colors/semantic/oklch.less +76 -76
  92. package/dist/less/colors/themes/data-visualisation/hex.less +206 -0
  93. package/dist/less/colors/themes/data-visualisation/hsl.less +206 -0
  94. package/dist/less/colors/themes/data-visualisation/oklch.less +206 -0
  95. package/dist/less/colors/themes/data-visualisation/rgb.less +206 -0
  96. package/dist/less/colors/themes/fuchsia-blue/hex.less +57 -0
  97. package/dist/less/colors/themes/fuchsia-blue/hsl.less +57 -0
  98. package/dist/less/colors/themes/fuchsia-blue/oklch.less +57 -0
  99. package/dist/less/colors/themes/fuchsia-blue/rgb.less +57 -0
  100. package/dist/less/colors/themes/fuchsia-orange/hex.less +57 -0
  101. package/dist/less/colors/themes/fuchsia-orange/hsl.less +57 -0
  102. package/dist/less/colors/themes/fuchsia-orange/oklch.less +57 -0
  103. package/dist/less/colors/themes/fuchsia-orange/rgb.less +57 -0
  104. package/dist/less/colors/themes/masterbrand/hsl.less +57 -57
  105. package/dist/less/colors/themes/masterbrand/oklch.less +57 -57
  106. package/dist/scss/colors/global/hsl.scss +342 -342
  107. package/dist/scss/colors/global/oklch.scss +342 -342
  108. package/dist/scss/colors/semantic/hsl.scss +76 -76
  109. package/dist/scss/colors/semantic/oklch.scss +76 -76
  110. package/dist/scss/colors/themes/data-visualisation/hex.scss +206 -0
  111. package/dist/scss/colors/themes/data-visualisation/hsl.scss +206 -0
  112. package/dist/scss/colors/themes/data-visualisation/oklch.scss +206 -0
  113. package/dist/scss/colors/themes/data-visualisation/rgb.scss +206 -0
  114. package/dist/scss/colors/themes/fuchsia-blue/hex.scss +57 -0
  115. package/dist/scss/colors/themes/fuchsia-blue/hsl.scss +57 -0
  116. package/dist/scss/colors/themes/fuchsia-blue/oklch.scss +57 -0
  117. package/dist/scss/colors/themes/fuchsia-blue/rgb.scss +57 -0
  118. package/dist/scss/colors/themes/fuchsia-orange/hex.scss +57 -0
  119. package/dist/scss/colors/themes/fuchsia-orange/hsl.scss +57 -0
  120. package/dist/scss/colors/themes/fuchsia-orange/oklch.scss +57 -0
  121. package/dist/scss/colors/themes/fuchsia-orange/rgb.scss +57 -0
  122. package/dist/scss/colors/themes/masterbrand/hsl.scss +57 -57
  123. package/dist/scss/colors/themes/masterbrand/oklch.scss +57 -57
  124. package/dist/tailwind/colors/global/hsl.css +342 -342
  125. package/dist/tailwind/colors/global/oklch.css +342 -342
  126. package/dist/tailwind/colors/semantic/hsl.css +76 -76
  127. package/dist/tailwind/colors/semantic/oklch.css +76 -76
  128. package/dist/tailwind/colors/themes/data-visualisation/hsl.css +206 -206
  129. package/dist/tailwind/colors/themes/data-visualisation/oklch.css +206 -206
  130. package/dist/tailwind/colors/themes/fuchsia-blue/hex.css +1 -1
  131. package/dist/tailwind/colors/themes/fuchsia-blue/hsl.css +117 -57
  132. package/dist/tailwind/colors/themes/fuchsia-blue/oklch.css +117 -57
  133. package/dist/tailwind/colors/themes/fuchsia-blue/rgb.css +117 -57
  134. package/dist/tailwind/colors/themes/fuchsia-orange/hex.css +1 -1
  135. package/dist/tailwind/colors/themes/fuchsia-orange/hsl.css +117 -57
  136. package/dist/tailwind/colors/themes/fuchsia-orange/oklch.css +117 -57
  137. package/dist/tailwind/colors/themes/fuchsia-orange/rgb.css +117 -57
  138. package/dist/tailwind/colors/themes/masterbrand/hex.css +1 -1
  139. package/dist/tailwind/colors/themes/masterbrand/hsl.css +117 -57
  140. package/dist/tailwind/colors/themes/masterbrand/oklch.css +117 -57
  141. package/dist/tailwind/colors/themes/masterbrand/rgb.css +117 -57
  142. package/dist/tokens/global/color/canonical.json +4484 -0
  143. package/dist/tokens/global/color/hex.json +1 -1
  144. package/dist/tokens/global/color/hsl.json +1942 -1600
  145. package/dist/tokens/global/color/oklch.json +2041 -1699
  146. package/dist/tokens/global/color/rgb.json +2342 -2000
  147. package/dist/tokens/{Primitives /342/200/224 semantic.light.json" → primitives-semantic.light.json} +76 -76
  148. package/dist/tokens/semantic/color/canonical.json +998 -0
  149. package/dist/tokens/semantic/color/hsl.json +532 -152
  150. package/dist/tokens/semantic/color/oklch.json +532 -152
  151. package/dist/tokens/semantic/color/rgb.json +608 -228
  152. package/dist/tokens/themes/color/data-visualisation/canonical.json +2700 -0
  153. package/dist/tokens/themes/color/data-visualisation/hex.json +846 -0
  154. package/dist/tokens/themes/color/data-visualisation/hsl.json +2700 -0
  155. package/dist/tokens/themes/color/data-visualisation/oklch.json +2700 -0
  156. package/dist/tokens/themes/color/data-visualisation/rgb.json +2700 -0
  157. package/dist/tokens/themes/color/fuchsia-blue/canonical.json +236 -0
  158. package/dist/tokens/themes/color/fuchsia-blue/hex.json +236 -0
  159. package/dist/tokens/themes/color/fuchsia-blue/hsl.json +749 -0
  160. package/dist/tokens/themes/color/fuchsia-blue/oklch.json +749 -0
  161. package/dist/tokens/themes/color/fuchsia-blue/rgb.json +749 -0
  162. package/dist/tokens/themes/color/fuchsia-orange/canonical.json +236 -0
  163. package/dist/tokens/themes/color/fuchsia-orange/hex.json +236 -0
  164. package/dist/tokens/themes/color/fuchsia-orange/hsl.json +749 -0
  165. package/dist/tokens/themes/color/fuchsia-orange/oklch.json +749 -0
  166. package/dist/tokens/themes/color/fuchsia-orange/rgb.json +749 -0
  167. package/dist/tokens/themes/color/masterbrand/canonical.json +236 -0
  168. package/dist/tokens/themes/color/masterbrand/hex.json +1 -1
  169. package/dist/tokens/themes/color/masterbrand/hsl.json +313 -256
  170. package/dist/tokens/themes/color/masterbrand/oklch.json +338 -281
  171. package/dist/tokens/themes/color/masterbrand/rgb.json +390 -333
  172. package/dist/tokens/{Themes /342/200/224 masterbrand.light.json" → themes-masterbrand.light.json} +57 -57
  173. package/dist/ts/colors/global/hsl.ts +342 -342
  174. package/dist/ts/colors/global/oklch.ts +342 -342
  175. package/dist/ts/colors/semantic/hsl.ts +76 -76
  176. package/dist/ts/colors/semantic/oklch.ts +76 -76
  177. package/dist/ts/colors/themes/data-visualisation/hex.ts +226 -0
  178. package/dist/ts/colors/themes/data-visualisation/hsl.ts +226 -0
  179. package/dist/ts/colors/themes/data-visualisation/oklch.ts +226 -0
  180. package/dist/ts/colors/themes/data-visualisation/rgb.ts +226 -0
  181. package/dist/ts/colors/themes/fuchsia-blue/hex.ts +63 -0
  182. package/dist/ts/colors/themes/fuchsia-blue/hsl.ts +63 -0
  183. package/dist/ts/colors/themes/fuchsia-blue/oklch.ts +63 -0
  184. package/dist/ts/colors/themes/fuchsia-blue/rgb.ts +63 -0
  185. package/dist/ts/colors/themes/fuchsia-orange/hex.ts +63 -0
  186. package/dist/ts/colors/themes/fuchsia-orange/hsl.ts +63 -0
  187. package/dist/ts/colors/themes/fuchsia-orange/oklch.ts +63 -0
  188. package/dist/ts/colors/themes/fuchsia-orange/rgb.ts +63 -0
  189. package/dist/ts/colors/themes/masterbrand/hsl.ts +57 -57
  190. package/dist/ts/colors/themes/masterbrand/oklch.ts +57 -57
  191. package/package.json +15 -2
  192. /package/dist/tokens/{Primitives /342/200/224 global.light.json" → primitives-global.light.json} +0 -0
@@ -0,0 +1,226 @@
1
+ export const ember = {
2
+ '50': 'rgb(34, 39, 43)',
3
+ '100': 'rgb(28, 42, 59)',
4
+ '150': 'rgb(28, 42, 76)',
5
+ '200': 'rgb(37, 38, 92)',
6
+ '250': 'rgb(51, 31, 104)',
7
+ '300': 'rgb(68, 17, 112)',
8
+ '350': 'rgb(97, 17, 117)',
9
+ '400': 'rgb(128, 15, 115)',
10
+ '450': 'rgb(159, 9, 106)',
11
+ '500': 'rgb(188, 7, 88)',
12
+ '550': 'rgb(215, 21, 58)',
13
+ '600': 'rgb(222, 43, 52)',
14
+ '650': 'rgb(228, 59, 46)',
15
+ '700': 'rgb(233, 73, 39)',
16
+ '750': 'rgb(238, 86, 33)',
17
+ '800': 'rgb(243, 99, 27)',
18
+ '850': 'rgb(247, 115, 0)',
19
+ '900': 'rgb(249, 130, 0)',
20
+ '950': 'rgb(251, 145, 0)',
21
+ '1000': 'rgb(251, 160, 0)',
22
+ '1050': 'rgb(250, 175, 5)',
23
+ }
24
+ export const earthfire = {
25
+ '50': 'rgb(82, 55, 25)',
26
+ '100': 'rgb(95, 54, 13)',
27
+ '150': 'rgb(108, 51, 0)',
28
+ '200': 'rgb(122, 46, 0)',
29
+ '250': 'rgb(135, 38, 0)',
30
+ '300': 'rgb(148, 27, 0)',
31
+ '350': 'rgb(167, 42, 5)',
32
+ '400': 'rgb(185, 56, 11)',
33
+ '450': 'rgb(204, 70, 17)',
34
+ '500': 'rgb(224, 85, 22)',
35
+ '550': 'rgb(243, 99, 27)',
36
+ '600': 'rgb(247, 115, 0)',
37
+ '650': 'rgb(249, 130, 0)',
38
+ '700': 'rgb(251, 145, 0)',
39
+ '750': 'rgb(251, 160, 0)',
40
+ '800': 'rgb(250, 175, 5)',
41
+ '850': 'rgb(250, 187, 59)',
42
+ '900': 'rgb(250, 199, 87)',
43
+ '950': 'rgb(251, 210, 111)',
44
+ '1000': 'rgb(252, 221, 133)',
45
+ '1050': 'rgb(253, 231, 154)',
46
+ }
47
+ export const fuchsiaHeat = {
48
+ '50': 'rgb(101, 0, 77)',
49
+ '100': 'rgb(123, 2, 95)',
50
+ '150': 'rgb(146, 4, 114)',
51
+ '200': 'rgb(169, 8, 133)',
52
+ '250': 'rgb(193, 13, 153)',
53
+ '300': 'rgb(217, 18, 174)',
54
+ '350': 'rgb(230, 30, 146)',
55
+ '400': 'rgb(240, 45, 119)',
56
+ '450': 'rgb(245, 62, 91)',
57
+ '500': 'rgb(246, 80, 62)',
58
+ '550': 'rgb(243, 99, 27)',
59
+ '600': 'rgb(247, 115, 0)',
60
+ '650': 'rgb(249, 130, 0)',
61
+ '700': 'rgb(251, 145, 0)',
62
+ '750': 'rgb(251, 160, 0)',
63
+ '800': 'rgb(250, 175, 5)',
64
+ '850': 'rgb(250, 187, 59)',
65
+ '900': 'rgb(250, 199, 87)',
66
+ '950': 'rgb(251, 210, 111)',
67
+ '1000': 'rgb(252, 221, 133)',
68
+ '1050': 'rgb(253, 231, 154)',
69
+ }
70
+ export const polarGlow = {
71
+ '50': 'rgb(0, 38, 100)',
72
+ '100': 'rgb(1, 51, 128)',
73
+ '150': 'rgb(3, 65, 158)',
74
+ '200': 'rgb(7, 79, 189)',
75
+ '250': 'rgb(13, 93, 220)',
76
+ '300': 'rgb(20, 108, 253)',
77
+ '350': 'rgb(0, 119, 231)',
78
+ '400': 'rgb(0, 126, 208)',
79
+ '450': 'rgb(0, 130, 184)',
80
+ '500': 'rgb(0, 130, 162)',
81
+ '550': 'rgb(46, 128, 142)',
82
+ '600': 'rgb(66, 146, 159)',
83
+ '650': 'rgb(84, 163, 176)',
84
+ '700': 'rgb(103, 182, 193)',
85
+ '750': 'rgb(121, 200, 211)',
86
+ '800': 'rgb(140, 219, 229)',
87
+ '850': 'rgb(154, 223, 229)',
88
+ '900': 'rgb(169, 227, 229)',
89
+ '950': 'rgb(182, 231, 230)',
90
+ '1000': 'rgb(196, 235, 231)',
91
+ '1050': 'rgb(209, 238, 234)',
92
+ }
93
+ export const glacierPool = {
94
+ '50': 'rgb(68, 17, 112)',
95
+ '100': 'rgb(81, 30, 136)',
96
+ '150': 'rgb(93, 43, 161)',
97
+ '200': 'rgb(106, 57, 187)',
98
+ '250': 'rgb(117, 70, 214)',
99
+ '300': 'rgb(128, 85, 241)',
100
+ '350': 'rgb(115, 89, 246)',
101
+ '400': 'rgb(100, 94, 250)',
102
+ '450': 'rgb(83, 98, 252)',
103
+ '500': 'rgb(60, 103, 253)',
104
+ '550': 'rgb(20, 108, 253)',
105
+ '600': 'rgb(0, 137, 255)',
106
+ '650': 'rgb(12, 162, 255)',
107
+ '700': 'rgb(59, 185, 255)',
108
+ '750': 'rgb(100, 205, 255)',
109
+ '800': 'rgb(140, 224, 255)',
110
+ '850': 'rgb(154, 227, 255)',
111
+ '900': 'rgb(167, 229, 255)',
112
+ '950': 'rgb(179, 232, 254)',
113
+ '1000': 'rgb(191, 234, 254)',
114
+ '1050': 'rgb(203, 237, 253)',
115
+ }
116
+ export const deepCurrent = {
117
+ '50': 'rgb(11, 63, 71)',
118
+ '100': 'rgb(18, 75, 84)',
119
+ '150': 'rgb(25, 88, 98)',
120
+ '200': 'rgb(32, 101, 113)',
121
+ '250': 'rgb(39, 114, 127)',
122
+ '300': 'rgb(46, 128, 142)',
123
+ '350': 'rgb(0, 130, 162)',
124
+ '400': 'rgb(0, 130, 184)',
125
+ '450': 'rgb(0, 126, 208)',
126
+ '500': 'rgb(0, 119, 231)',
127
+ '550': 'rgb(20, 108, 253)',
128
+ '600': 'rgb(0, 137, 255)',
129
+ '650': 'rgb(12, 162, 255)',
130
+ '700': 'rgb(59, 185, 255)',
131
+ '750': 'rgb(100, 205, 255)',
132
+ '800': 'rgb(140, 224, 255)',
133
+ '850': 'rgb(154, 227, 255)',
134
+ '900': 'rgb(167, 229, 255)',
135
+ '950': 'rgb(179, 232, 254)',
136
+ '1000': 'rgb(191, 234, 254)',
137
+ '1050': 'rgb(203, 237, 253)',
138
+ }
139
+ export const blueRed = {
140
+ '50': 'rgb(0, 38, 100)',
141
+ '100': 'rgb(1, 51, 128)',
142
+ '150': 'rgb(3, 65, 158)',
143
+ '200': 'rgb(7, 79, 189)',
144
+ '250': 'rgb(13, 93, 220)',
145
+ '300': 'rgb(20, 108, 253)',
146
+ '350': 'rgb(76, 142, 255)',
147
+ '400': 'rgb(121, 172, 255)',
148
+ '450': 'rgb(165, 200, 255)',
149
+ '500': 'rgb(210, 228, 255)',
150
+ '550': 'rgb(254, 215, 214)',
151
+ '600': 'rgb(249, 175, 174)',
152
+ '650': 'rgb(241, 134, 135)',
153
+ '700': 'rgb(229, 89, 97)',
154
+ '750': 'rgb(215, 21, 58)',
155
+ '800': 'rgb(191, 15, 52)',
156
+ '850': 'rgb(167, 10, 45)',
157
+ '900': 'rgb(143, 5, 39)',
158
+ '950': 'rgb(121, 2, 32)',
159
+ '1000': 'rgb(99, 0, 25)',
160
+ }
161
+ export const blueOrange = {
162
+ '50': 'rgb(0, 38, 100)',
163
+ '100': 'rgb(1, 51, 128)',
164
+ '150': 'rgb(3, 65, 158)',
165
+ '200': 'rgb(7, 79, 189)',
166
+ '250': 'rgb(13, 93, 220)',
167
+ '300': 'rgb(20, 108, 253)',
168
+ '350': 'rgb(76, 142, 255)',
169
+ '400': 'rgb(121, 172, 255)',
170
+ '450': 'rgb(165, 200, 255)',
171
+ '500': 'rgb(210, 228, 255)',
172
+ '550': 'rgb(255, 226, 214)',
173
+ '600': 'rgb(255, 196, 173)',
174
+ '650': 'rgb(254, 166, 131)',
175
+ '700': 'rgb(250, 134, 87)',
176
+ '750': 'rgb(243, 99, 27)',
177
+ '800': 'rgb(224, 85, 22)',
178
+ '850': 'rgb(204, 70, 17)',
179
+ '900': 'rgb(185, 56, 11)',
180
+ '950': 'rgb(167, 42, 5)',
181
+ '1000': 'rgb(148, 27, 0)',
182
+ }
183
+ export const purpleYellow = {
184
+ '50': 'rgb(68, 17, 112)',
185
+ '100': 'rgb(81, 30, 136)',
186
+ '150': 'rgb(93, 43, 161)',
187
+ '200': 'rgb(106, 57, 187)',
188
+ '250': 'rgb(117, 70, 214)',
189
+ '300': 'rgb(128, 85, 241)',
190
+ '350': 'rgb(150, 123, 247)',
191
+ '400': 'rgb(174, 158, 251)',
192
+ '450': 'rgb(199, 191, 254)',
193
+ '500': 'rgb(227, 223, 255)',
194
+ '550': 'rgb(255, 240, 218)',
195
+ '600': 'rgb(255, 224, 180)',
196
+ '650': 'rgb(254, 208, 139)',
197
+ '700': 'rgb(252, 192, 93)',
198
+ '750': 'rgb(250, 175, 5)',
199
+ '800': 'rgb(219, 153, 3)',
200
+ '850': 'rgb(189, 132, 2)',
201
+ '900': 'rgb(160, 111, 1)',
202
+ '950': 'rgb(132, 91, 0)',
203
+ '1000': 'rgb(105, 72, 0)',
204
+ }
205
+ export const fuchsiaTeal = {
206
+ '50': 'rgb(101, 0, 77)',
207
+ '100': 'rgb(123, 2, 95)',
208
+ '150': 'rgb(146, 4, 114)',
209
+ '200': 'rgb(169, 8, 133)',
210
+ '250': 'rgb(193, 13, 153)',
211
+ '300': 'rgb(217, 18, 174)',
212
+ '350': 'rgb(230, 91, 191)',
213
+ '400': 'rgb(240, 136, 207)',
214
+ '450': 'rgb(248, 177, 223)',
215
+ '500': 'rgb(253, 216, 239)',
216
+ '550': 'rgb(214, 229, 232)',
217
+ '600': 'rgb(174, 203, 209)',
218
+ '650': 'rgb(134, 178, 186)',
219
+ '700': 'rgb(93, 153, 164)',
220
+ '750': 'rgb(46, 128, 142)',
221
+ '800': 'rgb(39, 114, 127)',
222
+ '850': 'rgb(32, 101, 113)',
223
+ '900': 'rgb(25, 88, 98)',
224
+ '950': 'rgb(18, 75, 84)',
225
+ '1000': 'rgb(11, 63, 71)',
226
+ }
@@ -0,0 +1,63 @@
1
+ export const primary = {
2
+ '50': '#fff6fd',
3
+ '100': '#ffeef9',
4
+ '150': '#fee6f6',
5
+ '200': '#fddef2',
6
+ '250': '#fbd4ef',
7
+ '300': '#f9c9eb',
8
+ '350': '#f7bfe9',
9
+ '400': '#f4b5e6',
10
+ '450': '#ef96da',
11
+ '500': '#e975cc',
12
+ '550': '#e150be',
13
+ '600': '#d912ae',
14
+ '650': '#bb0c94',
15
+ '700': '#9d067b',
16
+ '750': '#810264',
17
+ '800': '#65004d',
18
+ '850': '#4d003a',
19
+ '900': '#370028',
20
+ '950': '#220017',
21
+ }
22
+ export const accent = {
23
+ '50': '#f0fbff',
24
+ '100': '#e4f6ff',
25
+ '150': '#d7f2fe',
26
+ '200': '#cbedfd',
27
+ '250': '#bceafe',
28
+ '300': '#ade7ff',
29
+ '350': '#9de3ff',
30
+ '400': '#8ce0ff',
31
+ '450': '#5ac9ff',
32
+ '500': '#26aeff',
33
+ '550': '#008fff',
34
+ '600': '#146cfd',
35
+ '650': '#0c5ad4',
36
+ '700': '#0548ad',
37
+ '750': '#023688',
38
+ '800': '#002664',
39
+ '850': '#001a4d',
40
+ '900': '#001037',
41
+ '950': '#000622',
42
+ }
43
+ export const grey = {
44
+ '50': '#fafafa',
45
+ '100': '#f5f5f5',
46
+ '150': '#f0f0f0',
47
+ '200': '#ebebeb',
48
+ '250': '#e3e5e6',
49
+ '300': '#dcdfe0',
50
+ '350': '#d4d9db',
51
+ '400': '#cdd3d6',
52
+ '450': '#aab0b4',
53
+ '500': '#888f92',
54
+ '550': '#686f72',
55
+ '600': '#495054',
56
+ '650': '#3f4549',
57
+ '700': '#353b3f',
58
+ '750': '#2b3135',
59
+ '800': '#22272b',
60
+ '850': '#181c1f',
61
+ '900': '#0e1113',
62
+ '950': '#050709',
63
+ }
@@ -0,0 +1,63 @@
1
+ export const primary = {
2
+ '50': 'hsl(313.333333, 100%, 98.235294%)',
3
+ '100': 'hsl(321.176471, 100%, 96.666667%)',
4
+ '150': 'hsl(320, 92.307692%, 94.901961%)',
5
+ '200': 'hsl(321.290323, 88.571429%, 93.137255%)',
6
+ '250': 'hsl(318.461538, 82.978723%, 90.784314%)',
7
+ '300': 'hsl(317.5, 80%, 88.235294%)',
8
+ '350': 'hsl(315, 77.777778%, 85.882353%)',
9
+ '400': 'hsl(313.333333, 74.117647%, 83.333333%)',
10
+ '450': 'hsl(314.157303, 73.553719%, 76.27451%)',
11
+ '500': 'hsl(315, 72.5%, 68.627451%)',
12
+ '550': 'hsl(314.482759, 70.731707%, 59.803922%)',
13
+ '600': 'hsl(312.964824, 84.680851%, 46.078431%)',
14
+ '650': 'hsl(313.371429, 87.939698%, 39.019608%)',
15
+ '700': 'hsl(313.509934, 92.638037%, 31.960784%)',
16
+ '750': 'hsl(313.700787, 96.946565%, 25.686275%)',
17
+ '800': 'hsl(314.257426, 100%, 19.803922%)',
18
+ '850': 'hsl(314.805195, 100%, 15.098039%)',
19
+ '900': 'hsl(316.363636, 100%, 10.784314%)',
20
+ '950': 'hsl(319.411765, 100%, 6.666667%)',
21
+ }
22
+ export const accent = {
23
+ '50': 'hsl(196, 100%, 97.058824%)',
24
+ '100': 'hsl(200, 100%, 94.705882%)',
25
+ '150': 'hsl(198.461538, 95.121951%, 91.960784%)',
26
+ '200': 'hsl(199.2, 92.592593%, 89.411765%)',
27
+ '250': 'hsl(198.181818, 97.058824%, 86.666667%)',
28
+ '300': 'hsl(197.560976, 100%, 83.921569%)',
29
+ '350': 'hsl(197.142857, 100%, 80.784314%)',
30
+ '400': 'hsl(196.173913, 100%, 77.45098%)',
31
+ '450': 'hsl(199.636364, 100%, 67.647059%)',
32
+ '500': 'hsl(202.396313, 100%, 57.45098%)',
33
+ '550': 'hsl(206.352941, 100%, 50%)',
34
+ '600': 'hsl(217.339056, 98.312236%, 53.529412%)',
35
+ '650': 'hsl(216.6, 89.285714%, 43.921569%)',
36
+ '700': 'hsl(216.071429, 94.382022%, 34.901961%)',
37
+ '750': 'hsl(216.716418, 97.101449%, 27.058824%)',
38
+ '800': 'hsl(217.2, 100%, 19.607843%)',
39
+ '850': 'hsl(219.74026, 100%, 15.098039%)',
40
+ '900': 'hsl(222.545455, 100%, 10.784314%)',
41
+ '950': 'hsl(229.411765, 100%, 6.666667%)',
42
+ }
43
+ export const grey = {
44
+ '50': 'hsl(0, 0%, 98.039216%)',
45
+ '100': 'hsl(0, 0%, 96.078431%)',
46
+ '150': 'hsl(0, 0%, 94.117647%)',
47
+ '200': 'hsl(0, 0%, 92.156863%)',
48
+ '250': 'hsl(200, 5.660377%, 89.607843%)',
49
+ '300': 'hsl(195, 6.060606%, 87.058824%)',
50
+ '350': 'hsl(197.142857, 8.860759%, 84.509804%)',
51
+ '400': 'hsl(200, 9.89011%, 82.156863%)',
52
+ '450': 'hsl(204, 6.25%, 68.627451%)',
53
+ '500': 'hsl(198, 4.385965%, 55.294118%)',
54
+ '550': 'hsl(198, 4.587156%, 42.745098%)',
55
+ '600': 'hsl(201.818182, 7.006369%, 30.784314%)',
56
+ '650': 'hsl(204, 7.352941%, 26.666667%)',
57
+ '700': 'hsl(204, 8.62069%, 22.745098%)',
58
+ '750': 'hsl(204, 10.416667%, 18.823529%)',
59
+ '800': 'hsl(206.666667, 11.688312%, 15.098039%)',
60
+ '850': 'hsl(205.714286, 12.727273%, 10.784314%)',
61
+ '900': 'hsl(204, 15.151515%, 6.470588%)',
62
+ '950': 'hsl(210, 28.571429%, 2.745098%)',
63
+ }
@@ -0,0 +1,63 @@
1
+ export const primary = {
2
+ '50': 'oklch(0.982084 0.013244 333.034319)',
3
+ '100': 'oklch(0.965669 0.023247 338.610142)',
4
+ '150': 'oklch(0.948854 0.03339 337.959274)',
5
+ '200': 'oklch(0.93185 0.042831 339.134147)',
6
+ '250': 'oklch(0.910705 0.055741 337.314857)',
7
+ '300': 'oklch(0.887629 0.069703 336.916306)',
8
+ '350': 'oklch(0.86725 0.08373 335.420133)',
9
+ '400': 'oklch(0.84582 0.096185 334.510766)',
10
+ '450': 'oklch(0.784752 0.136018 335.952916)',
11
+ '500': 'oklch(0.723334 0.175513 337.649945)',
12
+ '550': 'oklch(0.661983 0.214363 338.632544)',
13
+ '600': 'oklch(0.601253 0.254233 340.252307)',
14
+ '650': 'oklch(0.536642 0.227232 340.78992)',
15
+ '700': 'oklch(0.470462 0.200119 341.098388)',
16
+ '750': 'oklch(0.406687 0.174181 341.335872)',
17
+ '800': 'oklch(0.340576 0.146851 341.706145)',
18
+ '850': 'oklch(0.282424 0.121774 341.71207)',
19
+ '900': 'oklch(0.22599 0.097183 342.322886)',
20
+ '950': 'oklch(0.168705 0.072287 343.166627)',
21
+ }
22
+ export const accent = {
23
+ '50': 'oklch(0.981046 0.012805 221.42319)',
24
+ '100': 'oklch(0.962528 0.022535 229.073806)',
25
+ '150': 'oklch(0.945178 0.032646 226.304274)',
26
+ '200': 'oklch(0.926674 0.041663 227.890787)',
27
+ '250': 'oklch(0.911263 0.054737 226.223779)',
28
+ '300': 'oklch(0.896395 0.067447 225.364647)',
29
+ '350': 'oklch(0.87908 0.079726 224.961348)',
30
+ '400': 'oklch(0.864091 0.092143 223.595164)',
31
+ '450': 'oklch(0.793049 0.126377 232.671182)',
32
+ '500': 'oklch(0.719588 0.160232 241.934243)',
33
+ '550': 'oklch(0.647121 0.194114 252.085254)',
34
+ '600': 'oklch(0.575113 0.229834 260.756335)',
35
+ '650': 'oklch(0.504429 0.200565 260.409998)',
36
+ '700': 'oklch(0.433012 0.172764 260.164397)',
37
+ '750': 'oklch(0.360675 0.146274 260.290439)',
38
+ '800': 'oklch(0.289999 0.117296 259.841938)',
39
+ '850': 'oklch(0.238584 0.100105 260.505764)',
40
+ '900': 'oklch(0.190403 0.080719 260.682766)',
41
+ '950': 'oklch(0.138623 0.062732 261.699127)',
42
+ }
43
+ export const grey = {
44
+ '50': 'oklch(0.985104 0 0)',
45
+ '100': 'oklch(0.970151 0 0)',
46
+ '150': 'oklch(0.95514 0 0)',
47
+ '200': 'oklch(0.94007 0 0)',
48
+ '250': 'oklch(0.920652 0.002558 228.786818)',
49
+ '300': 'oklch(0.901624 0.003538 219.535738)',
50
+ '350': 'oklch(0.882025 0.006111 223.464254)',
51
+ '400': 'oklch(0.863097 0.007776 228.868893)',
52
+ '450': 'oklch(0.753634 0.008885 236.605307)',
53
+ '500': 'oklch(0.645222 0.009348 225.150438)',
54
+ '550': 'oklch(0.536704 0.009767 225.197358)',
55
+ '600': 'oklch(0.426427 0.011202 232.617199)',
56
+ '650': 'oklch(0.386365 0.01045 236.835687)',
57
+ '700': 'oklch(0.348204 0.010712 236.894097)',
58
+ '750': 'oklch(0.308978 0.011017 236.97265)',
59
+ '800': 'oklch(0.269413 0.01036 242.083865)',
60
+ '850': 'oklch(0.223572 0.008405 240.274391)',
61
+ '900': 'oklch(0.175228 0.006346 236.981786)',
62
+ '950': 'oklch(0.126543 0.006953 243.792325)',
63
+ }
@@ -0,0 +1,63 @@
1
+ export const primary = {
2
+ '50': 'rgb(255, 246, 253)',
3
+ '100': 'rgb(255, 238, 249)',
4
+ '150': 'rgb(254, 230, 246)',
5
+ '200': 'rgb(253, 222, 242)',
6
+ '250': 'rgb(251, 212, 239)',
7
+ '300': 'rgb(249, 201, 235)',
8
+ '350': 'rgb(247, 191, 233)',
9
+ '400': 'rgb(244, 181, 230)',
10
+ '450': 'rgb(239, 150, 218)',
11
+ '500': 'rgb(233, 117, 204)',
12
+ '550': 'rgb(225, 80, 190)',
13
+ '600': 'rgb(217, 18, 174)',
14
+ '650': 'rgb(187, 12, 148)',
15
+ '700': 'rgb(157, 6, 123)',
16
+ '750': 'rgb(129, 2, 100)',
17
+ '800': 'rgb(101, 0, 77)',
18
+ '850': 'rgb(77, 0, 58)',
19
+ '900': 'rgb(55, 0, 40)',
20
+ '950': 'rgb(34, 0, 23)',
21
+ }
22
+ export const accent = {
23
+ '50': 'rgb(240, 251, 255)',
24
+ '100': 'rgb(228, 246, 255)',
25
+ '150': 'rgb(215, 242, 254)',
26
+ '200': 'rgb(203, 237, 253)',
27
+ '250': 'rgb(188, 234, 254)',
28
+ '300': 'rgb(173, 231, 255)',
29
+ '350': 'rgb(157, 227, 255)',
30
+ '400': 'rgb(140, 224, 255)',
31
+ '450': 'rgb(90, 201, 255)',
32
+ '500': 'rgb(38, 174, 255)',
33
+ '550': 'rgb(0, 143, 255)',
34
+ '600': 'rgb(20, 108, 253)',
35
+ '650': 'rgb(12, 90, 212)',
36
+ '700': 'rgb(5, 72, 173)',
37
+ '750': 'rgb(2, 54, 136)',
38
+ '800': 'rgb(0, 38, 100)',
39
+ '850': 'rgb(0, 26, 77)',
40
+ '900': 'rgb(0, 16, 55)',
41
+ '950': 'rgb(0, 6, 34)',
42
+ }
43
+ export const grey = {
44
+ '50': 'rgb(250, 250, 250)',
45
+ '100': 'rgb(245, 245, 245)',
46
+ '150': 'rgb(240, 240, 240)',
47
+ '200': 'rgb(235, 235, 235)',
48
+ '250': 'rgb(227, 229, 230)',
49
+ '300': 'rgb(220, 223, 224)',
50
+ '350': 'rgb(212, 217, 219)',
51
+ '400': 'rgb(205, 211, 214)',
52
+ '450': 'rgb(170, 176, 180)',
53
+ '500': 'rgb(136, 143, 146)',
54
+ '550': 'rgb(104, 111, 114)',
55
+ '600': 'rgb(73, 80, 84)',
56
+ '650': 'rgb(63, 69, 73)',
57
+ '700': 'rgb(53, 59, 63)',
58
+ '750': 'rgb(43, 49, 53)',
59
+ '800': 'rgb(34, 39, 43)',
60
+ '850': 'rgb(24, 28, 31)',
61
+ '900': 'rgb(14, 17, 19)',
62
+ '950': 'rgb(5, 7, 9)',
63
+ }
@@ -0,0 +1,63 @@
1
+ export const primary = {
2
+ '50': '#fff6fd',
3
+ '100': '#ffeef9',
4
+ '150': '#fee6f6',
5
+ '200': '#fddef2',
6
+ '250': '#fbd4ef',
7
+ '300': '#f9c9eb',
8
+ '350': '#f7bfe9',
9
+ '400': '#f4b5e6',
10
+ '450': '#ef96da',
11
+ '500': '#e975cc',
12
+ '550': '#e150be',
13
+ '600': '#d912ae',
14
+ '650': '#bb0c94',
15
+ '700': '#9d067b',
16
+ '750': '#810264',
17
+ '800': '#65004d',
18
+ '850': '#4d003a',
19
+ '900': '#370028',
20
+ '950': '#220017',
21
+ }
22
+ export const accent = {
23
+ '50': '#fffaf6',
24
+ '100': '#fff6ee',
25
+ '150': '#fef1e7',
26
+ '200': '#fdeddf',
27
+ '250': '#fee5ce',
28
+ '300': '#ffddbd',
29
+ '350': '#ffd6ab',
30
+ '400': '#ffce99',
31
+ '450': '#fdb678',
32
+ '500': '#fb9d58',
33
+ '550': '#f78139',
34
+ '600': '#f3631b',
35
+ '650': '#db5115',
36
+ '700': '#c33f0e',
37
+ '750': '#ab2e06',
38
+ '800': '#941b00',
39
+ '850': '#730f00',
40
+ '900': '#530400',
41
+ '950': '#350000',
42
+ }
43
+ export const grey = {
44
+ '50': '#fafafa',
45
+ '100': '#f5f5f5',
46
+ '150': '#f0f0f0',
47
+ '200': '#ebebeb',
48
+ '250': '#e3e5e6',
49
+ '300': '#dcdfe0',
50
+ '350': '#d4d9db',
51
+ '400': '#cdd3d6',
52
+ '450': '#aab0b4',
53
+ '500': '#888f92',
54
+ '550': '#686f72',
55
+ '600': '#495054',
56
+ '650': '#3f4549',
57
+ '700': '#353b3f',
58
+ '750': '#2b3135',
59
+ '800': '#22272b',
60
+ '850': '#181c1f',
61
+ '900': '#0e1113',
62
+ '950': '#050709',
63
+ }
@@ -0,0 +1,63 @@
1
+ export const primary = {
2
+ '50': 'hsl(313.333333, 100%, 98.235294%)',
3
+ '100': 'hsl(321.176471, 100%, 96.666667%)',
4
+ '150': 'hsl(320, 92.307692%, 94.901961%)',
5
+ '200': 'hsl(321.290323, 88.571429%, 93.137255%)',
6
+ '250': 'hsl(318.461538, 82.978723%, 90.784314%)',
7
+ '300': 'hsl(317.5, 80%, 88.235294%)',
8
+ '350': 'hsl(315, 77.777778%, 85.882353%)',
9
+ '400': 'hsl(313.333333, 74.117647%, 83.333333%)',
10
+ '450': 'hsl(314.157303, 73.553719%, 76.27451%)',
11
+ '500': 'hsl(315, 72.5%, 68.627451%)',
12
+ '550': 'hsl(314.482759, 70.731707%, 59.803922%)',
13
+ '600': 'hsl(312.964824, 84.680851%, 46.078431%)',
14
+ '650': 'hsl(313.371429, 87.939698%, 39.019608%)',
15
+ '700': 'hsl(313.509934, 92.638037%, 31.960784%)',
16
+ '750': 'hsl(313.700787, 96.946565%, 25.686275%)',
17
+ '800': 'hsl(314.257426, 100%, 19.803922%)',
18
+ '850': 'hsl(314.805195, 100%, 15.098039%)',
19
+ '900': 'hsl(316.363636, 100%, 10.784314%)',
20
+ '950': 'hsl(319.411765, 100%, 6.666667%)',
21
+ }
22
+ export const accent = {
23
+ '50': 'hsl(26.666667, 100%, 98.235294%)',
24
+ '100': 'hsl(28.235294, 100%, 96.666667%)',
25
+ '150': 'hsl(26.086957, 92%, 95.098039%)',
26
+ '200': 'hsl(28, 88.235294%, 93.333333%)',
27
+ '250': 'hsl(28.75, 96%, 90.196078%)',
28
+ '300': 'hsl(29.090909, 100%, 87.058824%)',
29
+ '350': 'hsl(30.714286, 100%, 83.529412%)',
30
+ '400': 'hsl(31.176471, 100%, 80%)',
31
+ '450': 'hsl(27.969925, 97.080292%, 73.137255%)',
32
+ '500': 'hsl(25.398773, 95.321637%, 66.470588%)',
33
+ '550': 'hsl(22.736842, 92.23301%, 59.607843%)',
34
+ '600': 'hsl(20, 90%, 52.941176%)',
35
+ '650': 'hsl(18.181818, 82.5%, 47.058824%)',
36
+ '700': 'hsl(16.243094, 86.602871%, 40.980392%)',
37
+ '750': 'hsl(14.545455, 93.220339%, 34.705882%)',
38
+ '800': 'hsl(10.945946, 100%, 29.019608%)',
39
+ '850': 'hsl(7.826087, 100%, 22.54902%)',
40
+ '900': 'hsl(2.891566, 100%, 16.27451%)',
41
+ '950': 'hsl(0, 100%, 10.392157%)',
42
+ }
43
+ export const grey = {
44
+ '50': 'hsl(0, 0%, 98.039216%)',
45
+ '100': 'hsl(0, 0%, 96.078431%)',
46
+ '150': 'hsl(0, 0%, 94.117647%)',
47
+ '200': 'hsl(0, 0%, 92.156863%)',
48
+ '250': 'hsl(200, 5.660377%, 89.607843%)',
49
+ '300': 'hsl(195, 6.060606%, 87.058824%)',
50
+ '350': 'hsl(197.142857, 8.860759%, 84.509804%)',
51
+ '400': 'hsl(200, 9.89011%, 82.156863%)',
52
+ '450': 'hsl(204, 6.25%, 68.627451%)',
53
+ '500': 'hsl(198, 4.385965%, 55.294118%)',
54
+ '550': 'hsl(198, 4.587156%, 42.745098%)',
55
+ '600': 'hsl(201.818182, 7.006369%, 30.784314%)',
56
+ '650': 'hsl(204, 7.352941%, 26.666667%)',
57
+ '700': 'hsl(204, 8.62069%, 22.745098%)',
58
+ '750': 'hsl(204, 10.416667%, 18.823529%)',
59
+ '800': 'hsl(206.666667, 11.688312%, 15.098039%)',
60
+ '850': 'hsl(205.714286, 12.727273%, 10.784314%)',
61
+ '900': 'hsl(204, 15.151515%, 6.470588%)',
62
+ '950': 'hsl(210, 28.571429%, 2.745098%)',
63
+ }
@@ -0,0 +1,63 @@
1
+ export const primary = {
2
+ '50': 'oklch(0.982084 0.013244 333.034319)',
3
+ '100': 'oklch(0.965669 0.023247 338.610142)',
4
+ '150': 'oklch(0.948854 0.03339 337.959274)',
5
+ '200': 'oklch(0.93185 0.042831 339.134147)',
6
+ '250': 'oklch(0.910705 0.055741 337.314857)',
7
+ '300': 'oklch(0.887629 0.069703 336.916306)',
8
+ '350': 'oklch(0.86725 0.08373 335.420133)',
9
+ '400': 'oklch(0.84582 0.096185 334.510766)',
10
+ '450': 'oklch(0.784752 0.136018 335.952916)',
11
+ '500': 'oklch(0.723334 0.175513 337.649945)',
12
+ '550': 'oklch(0.661983 0.214363 338.632544)',
13
+ '600': 'oklch(0.601253 0.254233 340.252307)',
14
+ '650': 'oklch(0.536642 0.227232 340.78992)',
15
+ '700': 'oklch(0.470462 0.200119 341.098388)',
16
+ '750': 'oklch(0.406687 0.174181 341.335872)',
17
+ '800': 'oklch(0.340576 0.146851 341.706145)',
18
+ '850': 'oklch(0.282424 0.121774 341.71207)',
19
+ '900': 'oklch(0.22599 0.097183 342.322886)',
20
+ '950': 'oklch(0.168705 0.072287 343.166627)',
21
+ }
22
+ export const accent = {
23
+ '50': 'oklch(0.987839 0.007543 61.45578)',
24
+ '100': 'oklch(0.977951 0.014375 64.347922)',
25
+ '150': 'oklch(0.965645 0.019381 60.174704)',
26
+ '200': 'oklch(0.955039 0.025491 63.743337)',
27
+ '250': 'oklch(0.936249 0.041053 64.929124)',
28
+ '300': 'oklch(0.917859 0.056636 65.300646)',
29
+ '350': 'oklch(0.900675 0.072472 68.034989)',
30
+ '400': 'oklch(0.882019 0.087884 68.490482)',
31
+ '450': 'oklch(0.829842 0.113933 61.388359)',
32
+ '500': 'oklch(0.778954 0.140471 55.166517)',
33
+ '550': 'oklch(0.72492 0.166374 48.688783)',
34
+ '600': 'oklch(0.674414 0.192429 42.148083)',
35
+ '650': 'oklch(0.613962 0.184358 39.794614)',
36
+ '700': 'oklch(0.55289 0.176309 37.423321)',
37
+ '750': 'oklch(0.492464 0.16713 35.422254)',
38
+ '800': 'oklch(0.432199 0.159379 33.02244)',
39
+ '850': 'oklch(0.357475 0.135212 32.07107)',
40
+ '900': 'oklch(0.281222 0.110671 30.651366)',
41
+ '950': 'oklch(0.206578 0.08477 29.23388)',
42
+ }
43
+ export const grey = {
44
+ '50': 'oklch(0.985104 0 0)',
45
+ '100': 'oklch(0.970151 0 0)',
46
+ '150': 'oklch(0.95514 0 0)',
47
+ '200': 'oklch(0.94007 0 0)',
48
+ '250': 'oklch(0.920652 0.002558 228.786818)',
49
+ '300': 'oklch(0.901624 0.003538 219.535738)',
50
+ '350': 'oklch(0.882025 0.006111 223.464254)',
51
+ '400': 'oklch(0.863097 0.007776 228.868893)',
52
+ '450': 'oklch(0.753634 0.008885 236.605307)',
53
+ '500': 'oklch(0.645222 0.009348 225.150438)',
54
+ '550': 'oklch(0.536704 0.009767 225.197358)',
55
+ '600': 'oklch(0.426427 0.011202 232.617199)',
56
+ '650': 'oklch(0.386365 0.01045 236.835687)',
57
+ '700': 'oklch(0.348204 0.010712 236.894097)',
58
+ '750': 'oklch(0.308978 0.011017 236.97265)',
59
+ '800': 'oklch(0.269413 0.01036 242.083865)',
60
+ '850': 'oklch(0.223572 0.008405 240.274391)',
61
+ '900': 'oklch(0.175228 0.006346 236.981786)',
62
+ '950': 'oklch(0.126543 0.006953 243.792325)',
63
+ }