@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,57 @@
1
+ $primary-50: hsl(313.333333, 100%, 98.235294%);
2
+ $primary-100: hsl(321.176471, 100%, 96.666667%);
3
+ $primary-150: hsl(320, 92.307692%, 94.901961%);
4
+ $primary-200: hsl(321.290323, 88.571429%, 93.137255%);
5
+ $primary-250: hsl(318.461538, 82.978723%, 90.784314%);
6
+ $primary-300: hsl(317.5, 80%, 88.235294%);
7
+ $primary-350: hsl(315, 77.777778%, 85.882353%);
8
+ $primary-400: hsl(313.333333, 74.117647%, 83.333333%);
9
+ $primary-450: hsl(314.157303, 73.553719%, 76.27451%);
10
+ $primary-500: hsl(315, 72.5%, 68.627451%);
11
+ $primary-550: hsl(314.482759, 70.731707%, 59.803922%);
12
+ $primary-600: hsl(312.964824, 84.680851%, 46.078431%);
13
+ $primary-650: hsl(313.371429, 87.939698%, 39.019608%);
14
+ $primary-700: hsl(313.509934, 92.638037%, 31.960784%);
15
+ $primary-750: hsl(313.700787, 96.946565%, 25.686275%);
16
+ $primary-800: hsl(314.257426, 100%, 19.803922%);
17
+ $primary-850: hsl(314.805195, 100%, 15.098039%);
18
+ $primary-900: hsl(316.363636, 100%, 10.784314%);
19
+ $primary-950: hsl(319.411765, 100%, 6.666667%);
20
+ $accent-50: hsl(196, 100%, 97.058824%);
21
+ $accent-100: hsl(200, 100%, 94.705882%);
22
+ $accent-150: hsl(198.461538, 95.121951%, 91.960784%);
23
+ $accent-200: hsl(199.2, 92.592593%, 89.411765%);
24
+ $accent-250: hsl(198.181818, 97.058824%, 86.666667%);
25
+ $accent-300: hsl(197.560976, 100%, 83.921569%);
26
+ $accent-350: hsl(197.142857, 100%, 80.784314%);
27
+ $accent-400: hsl(196.173913, 100%, 77.45098%);
28
+ $accent-450: hsl(199.636364, 100%, 67.647059%);
29
+ $accent-500: hsl(202.396313, 100%, 57.45098%);
30
+ $accent-550: hsl(206.352941, 100%, 50%);
31
+ $accent-600: hsl(217.339056, 98.312236%, 53.529412%);
32
+ $accent-650: hsl(216.6, 89.285714%, 43.921569%);
33
+ $accent-700: hsl(216.071429, 94.382022%, 34.901961%);
34
+ $accent-750: hsl(216.716418, 97.101449%, 27.058824%);
35
+ $accent-800: hsl(217.2, 100%, 19.607843%);
36
+ $accent-850: hsl(219.74026, 100%, 15.098039%);
37
+ $accent-900: hsl(222.545455, 100%, 10.784314%);
38
+ $accent-950: hsl(229.411765, 100%, 6.666667%);
39
+ $grey-50: hsl(0, 0%, 98.039216%);
40
+ $grey-100: hsl(0, 0%, 96.078431%);
41
+ $grey-150: hsl(0, 0%, 94.117647%);
42
+ $grey-200: hsl(0, 0%, 92.156863%);
43
+ $grey-250: hsl(200, 5.660377%, 89.607843%);
44
+ $grey-300: hsl(195, 6.060606%, 87.058824%);
45
+ $grey-350: hsl(197.142857, 8.860759%, 84.509804%);
46
+ $grey-400: hsl(200, 9.89011%, 82.156863%);
47
+ $grey-450: hsl(204, 6.25%, 68.627451%);
48
+ $grey-500: hsl(198, 4.385965%, 55.294118%);
49
+ $grey-550: hsl(198, 4.587156%, 42.745098%);
50
+ $grey-600: hsl(201.818182, 7.006369%, 30.784314%);
51
+ $grey-650: hsl(204, 7.352941%, 26.666667%);
52
+ $grey-700: hsl(204, 8.62069%, 22.745098%);
53
+ $grey-750: hsl(204, 10.416667%, 18.823529%);
54
+ $grey-800: hsl(206.666667, 11.688312%, 15.098039%);
55
+ $grey-850: hsl(205.714286, 12.727273%, 10.784314%);
56
+ $grey-900: hsl(204, 15.151515%, 6.470588%);
57
+ $grey-950: hsl(210, 28.571429%, 2.745098%);
@@ -0,0 +1,57 @@
1
+ $primary-50: oklch(0.982084 0.013244 333.034319);
2
+ $primary-100: oklch(0.965669 0.023247 338.610142);
3
+ $primary-150: oklch(0.948854 0.03339 337.959274);
4
+ $primary-200: oklch(0.93185 0.042831 339.134147);
5
+ $primary-250: oklch(0.910705 0.055741 337.314857);
6
+ $primary-300: oklch(0.887629 0.069703 336.916306);
7
+ $primary-350: oklch(0.86725 0.08373 335.420133);
8
+ $primary-400: oklch(0.84582 0.096185 334.510766);
9
+ $primary-450: oklch(0.784752 0.136018 335.952916);
10
+ $primary-500: oklch(0.723334 0.175513 337.649945);
11
+ $primary-550: oklch(0.661983 0.214363 338.632544);
12
+ $primary-600: oklch(0.601253 0.254233 340.252307);
13
+ $primary-650: oklch(0.536642 0.227232 340.78992);
14
+ $primary-700: oklch(0.470462 0.200119 341.098388);
15
+ $primary-750: oklch(0.406687 0.174181 341.335872);
16
+ $primary-800: oklch(0.340576 0.146851 341.706145);
17
+ $primary-850: oklch(0.282424 0.121774 341.71207);
18
+ $primary-900: oklch(0.22599 0.097183 342.322886);
19
+ $primary-950: oklch(0.168705 0.072287 343.166627);
20
+ $accent-50: oklch(0.981046 0.012805 221.42319);
21
+ $accent-100: oklch(0.962528 0.022535 229.073806);
22
+ $accent-150: oklch(0.945178 0.032646 226.304274);
23
+ $accent-200: oklch(0.926674 0.041663 227.890787);
24
+ $accent-250: oklch(0.911263 0.054737 226.223779);
25
+ $accent-300: oklch(0.896395 0.067447 225.364647);
26
+ $accent-350: oklch(0.87908 0.079726 224.961348);
27
+ $accent-400: oklch(0.864091 0.092143 223.595164);
28
+ $accent-450: oklch(0.793049 0.126377 232.671182);
29
+ $accent-500: oklch(0.719588 0.160232 241.934243);
30
+ $accent-550: oklch(0.647121 0.194114 252.085254);
31
+ $accent-600: oklch(0.575113 0.229834 260.756335);
32
+ $accent-650: oklch(0.504429 0.200565 260.409998);
33
+ $accent-700: oklch(0.433012 0.172764 260.164397);
34
+ $accent-750: oklch(0.360675 0.146274 260.290439);
35
+ $accent-800: oklch(0.289999 0.117296 259.841938);
36
+ $accent-850: oklch(0.238584 0.100105 260.505764);
37
+ $accent-900: oklch(0.190403 0.080719 260.682766);
38
+ $accent-950: oklch(0.138623 0.062732 261.699127);
39
+ $grey-50: oklch(0.985104 0 0);
40
+ $grey-100: oklch(0.970151 0 0);
41
+ $grey-150: oklch(0.95514 0 0);
42
+ $grey-200: oklch(0.94007 0 0);
43
+ $grey-250: oklch(0.920652 0.002558 228.786818);
44
+ $grey-300: oklch(0.901624 0.003538 219.535738);
45
+ $grey-350: oklch(0.882025 0.006111 223.464254);
46
+ $grey-400: oklch(0.863097 0.007776 228.868893);
47
+ $grey-450: oklch(0.753634 0.008885 236.605307);
48
+ $grey-500: oklch(0.645222 0.009348 225.150438);
49
+ $grey-550: oklch(0.536704 0.009767 225.197358);
50
+ $grey-600: oklch(0.426427 0.011202 232.617199);
51
+ $grey-650: oklch(0.386365 0.01045 236.835687);
52
+ $grey-700: oklch(0.348204 0.010712 236.894097);
53
+ $grey-750: oklch(0.308978 0.011017 236.97265);
54
+ $grey-800: oklch(0.269413 0.01036 242.083865);
55
+ $grey-850: oklch(0.223572 0.008405 240.274391);
56
+ $grey-900: oklch(0.175228 0.006346 236.981786);
57
+ $grey-950: oklch(0.126543 0.006953 243.792325);
@@ -0,0 +1,57 @@
1
+ $primary-50: rgb(255, 246, 253);
2
+ $primary-100: rgb(255, 238, 249);
3
+ $primary-150: rgb(254, 230, 246);
4
+ $primary-200: rgb(253, 222, 242);
5
+ $primary-250: rgb(251, 212, 239);
6
+ $primary-300: rgb(249, 201, 235);
7
+ $primary-350: rgb(247, 191, 233);
8
+ $primary-400: rgb(244, 181, 230);
9
+ $primary-450: rgb(239, 150, 218);
10
+ $primary-500: rgb(233, 117, 204);
11
+ $primary-550: rgb(225, 80, 190);
12
+ $primary-600: rgb(217, 18, 174);
13
+ $primary-650: rgb(187, 12, 148);
14
+ $primary-700: rgb(157, 6, 123);
15
+ $primary-750: rgb(129, 2, 100);
16
+ $primary-800: rgb(101, 0, 77);
17
+ $primary-850: rgb(77, 0, 58);
18
+ $primary-900: rgb(55, 0, 40);
19
+ $primary-950: rgb(34, 0, 23);
20
+ $accent-50: rgb(240, 251, 255);
21
+ $accent-100: rgb(228, 246, 255);
22
+ $accent-150: rgb(215, 242, 254);
23
+ $accent-200: rgb(203, 237, 253);
24
+ $accent-250: rgb(188, 234, 254);
25
+ $accent-300: rgb(173, 231, 255);
26
+ $accent-350: rgb(157, 227, 255);
27
+ $accent-400: rgb(140, 224, 255);
28
+ $accent-450: rgb(90, 201, 255);
29
+ $accent-500: rgb(38, 174, 255);
30
+ $accent-550: rgb(0, 143, 255);
31
+ $accent-600: rgb(20, 108, 253);
32
+ $accent-650: rgb(12, 90, 212);
33
+ $accent-700: rgb(5, 72, 173);
34
+ $accent-750: rgb(2, 54, 136);
35
+ $accent-800: rgb(0, 38, 100);
36
+ $accent-850: rgb(0, 26, 77);
37
+ $accent-900: rgb(0, 16, 55);
38
+ $accent-950: rgb(0, 6, 34);
39
+ $grey-50: rgb(250, 250, 250);
40
+ $grey-100: rgb(245, 245, 245);
41
+ $grey-150: rgb(240, 240, 240);
42
+ $grey-200: rgb(235, 235, 235);
43
+ $grey-250: rgb(227, 229, 230);
44
+ $grey-300: rgb(220, 223, 224);
45
+ $grey-350: rgb(212, 217, 219);
46
+ $grey-400: rgb(205, 211, 214);
47
+ $grey-450: rgb(170, 176, 180);
48
+ $grey-500: rgb(136, 143, 146);
49
+ $grey-550: rgb(104, 111, 114);
50
+ $grey-600: rgb(73, 80, 84);
51
+ $grey-650: rgb(63, 69, 73);
52
+ $grey-700: rgb(53, 59, 63);
53
+ $grey-750: rgb(43, 49, 53);
54
+ $grey-800: rgb(34, 39, 43);
55
+ $grey-850: rgb(24, 28, 31);
56
+ $grey-900: rgb(14, 17, 19);
57
+ $grey-950: rgb(5, 7, 9);
@@ -0,0 +1,57 @@
1
+ $primary-50: #fff6fd;
2
+ $primary-100: #ffeef9;
3
+ $primary-150: #fee6f6;
4
+ $primary-200: #fddef2;
5
+ $primary-250: #fbd4ef;
6
+ $primary-300: #f9c9eb;
7
+ $primary-350: #f7bfe9;
8
+ $primary-400: #f4b5e6;
9
+ $primary-450: #ef96da;
10
+ $primary-500: #e975cc;
11
+ $primary-550: #e150be;
12
+ $primary-600: #d912ae;
13
+ $primary-650: #bb0c94;
14
+ $primary-700: #9d067b;
15
+ $primary-750: #810264;
16
+ $primary-800: #65004d;
17
+ $primary-850: #4d003a;
18
+ $primary-900: #370028;
19
+ $primary-950: #220017;
20
+ $accent-50: #fffaf6;
21
+ $accent-100: #fff6ee;
22
+ $accent-150: #fef1e7;
23
+ $accent-200: #fdeddf;
24
+ $accent-250: #fee5ce;
25
+ $accent-300: #ffddbd;
26
+ $accent-350: #ffd6ab;
27
+ $accent-400: #ffce99;
28
+ $accent-450: #fdb678;
29
+ $accent-500: #fb9d58;
30
+ $accent-550: #f78139;
31
+ $accent-600: #f3631b;
32
+ $accent-650: #db5115;
33
+ $accent-700: #c33f0e;
34
+ $accent-750: #ab2e06;
35
+ $accent-800: #941b00;
36
+ $accent-850: #730f00;
37
+ $accent-900: #530400;
38
+ $accent-950: #350000;
39
+ $grey-50: #fafafa;
40
+ $grey-100: #f5f5f5;
41
+ $grey-150: #f0f0f0;
42
+ $grey-200: #ebebeb;
43
+ $grey-250: #e3e5e6;
44
+ $grey-300: #dcdfe0;
45
+ $grey-350: #d4d9db;
46
+ $grey-400: #cdd3d6;
47
+ $grey-450: #aab0b4;
48
+ $grey-500: #888f92;
49
+ $grey-550: #686f72;
50
+ $grey-600: #495054;
51
+ $grey-650: #3f4549;
52
+ $grey-700: #353b3f;
53
+ $grey-750: #2b3135;
54
+ $grey-800: #22272b;
55
+ $grey-850: #181c1f;
56
+ $grey-900: #0e1113;
57
+ $grey-950: #050709;
@@ -0,0 +1,57 @@
1
+ $primary-50: hsl(313.333333, 100%, 98.235294%);
2
+ $primary-100: hsl(321.176471, 100%, 96.666667%);
3
+ $primary-150: hsl(320, 92.307692%, 94.901961%);
4
+ $primary-200: hsl(321.290323, 88.571429%, 93.137255%);
5
+ $primary-250: hsl(318.461538, 82.978723%, 90.784314%);
6
+ $primary-300: hsl(317.5, 80%, 88.235294%);
7
+ $primary-350: hsl(315, 77.777778%, 85.882353%);
8
+ $primary-400: hsl(313.333333, 74.117647%, 83.333333%);
9
+ $primary-450: hsl(314.157303, 73.553719%, 76.27451%);
10
+ $primary-500: hsl(315, 72.5%, 68.627451%);
11
+ $primary-550: hsl(314.482759, 70.731707%, 59.803922%);
12
+ $primary-600: hsl(312.964824, 84.680851%, 46.078431%);
13
+ $primary-650: hsl(313.371429, 87.939698%, 39.019608%);
14
+ $primary-700: hsl(313.509934, 92.638037%, 31.960784%);
15
+ $primary-750: hsl(313.700787, 96.946565%, 25.686275%);
16
+ $primary-800: hsl(314.257426, 100%, 19.803922%);
17
+ $primary-850: hsl(314.805195, 100%, 15.098039%);
18
+ $primary-900: hsl(316.363636, 100%, 10.784314%);
19
+ $primary-950: hsl(319.411765, 100%, 6.666667%);
20
+ $accent-50: hsl(26.666667, 100%, 98.235294%);
21
+ $accent-100: hsl(28.235294, 100%, 96.666667%);
22
+ $accent-150: hsl(26.086957, 92%, 95.098039%);
23
+ $accent-200: hsl(28, 88.235294%, 93.333333%);
24
+ $accent-250: hsl(28.75, 96%, 90.196078%);
25
+ $accent-300: hsl(29.090909, 100%, 87.058824%);
26
+ $accent-350: hsl(30.714286, 100%, 83.529412%);
27
+ $accent-400: hsl(31.176471, 100%, 80%);
28
+ $accent-450: hsl(27.969925, 97.080292%, 73.137255%);
29
+ $accent-500: hsl(25.398773, 95.321637%, 66.470588%);
30
+ $accent-550: hsl(22.736842, 92.23301%, 59.607843%);
31
+ $accent-600: hsl(20, 90%, 52.941176%);
32
+ $accent-650: hsl(18.181818, 82.5%, 47.058824%);
33
+ $accent-700: hsl(16.243094, 86.602871%, 40.980392%);
34
+ $accent-750: hsl(14.545455, 93.220339%, 34.705882%);
35
+ $accent-800: hsl(10.945946, 100%, 29.019608%);
36
+ $accent-850: hsl(7.826087, 100%, 22.54902%);
37
+ $accent-900: hsl(2.891566, 100%, 16.27451%);
38
+ $accent-950: hsl(0, 100%, 10.392157%);
39
+ $grey-50: hsl(0, 0%, 98.039216%);
40
+ $grey-100: hsl(0, 0%, 96.078431%);
41
+ $grey-150: hsl(0, 0%, 94.117647%);
42
+ $grey-200: hsl(0, 0%, 92.156863%);
43
+ $grey-250: hsl(200, 5.660377%, 89.607843%);
44
+ $grey-300: hsl(195, 6.060606%, 87.058824%);
45
+ $grey-350: hsl(197.142857, 8.860759%, 84.509804%);
46
+ $grey-400: hsl(200, 9.89011%, 82.156863%);
47
+ $grey-450: hsl(204, 6.25%, 68.627451%);
48
+ $grey-500: hsl(198, 4.385965%, 55.294118%);
49
+ $grey-550: hsl(198, 4.587156%, 42.745098%);
50
+ $grey-600: hsl(201.818182, 7.006369%, 30.784314%);
51
+ $grey-650: hsl(204, 7.352941%, 26.666667%);
52
+ $grey-700: hsl(204, 8.62069%, 22.745098%);
53
+ $grey-750: hsl(204, 10.416667%, 18.823529%);
54
+ $grey-800: hsl(206.666667, 11.688312%, 15.098039%);
55
+ $grey-850: hsl(205.714286, 12.727273%, 10.784314%);
56
+ $grey-900: hsl(204, 15.151515%, 6.470588%);
57
+ $grey-950: hsl(210, 28.571429%, 2.745098%);
@@ -0,0 +1,57 @@
1
+ $primary-50: oklch(0.982084 0.013244 333.034319);
2
+ $primary-100: oklch(0.965669 0.023247 338.610142);
3
+ $primary-150: oklch(0.948854 0.03339 337.959274);
4
+ $primary-200: oklch(0.93185 0.042831 339.134147);
5
+ $primary-250: oklch(0.910705 0.055741 337.314857);
6
+ $primary-300: oklch(0.887629 0.069703 336.916306);
7
+ $primary-350: oklch(0.86725 0.08373 335.420133);
8
+ $primary-400: oklch(0.84582 0.096185 334.510766);
9
+ $primary-450: oklch(0.784752 0.136018 335.952916);
10
+ $primary-500: oklch(0.723334 0.175513 337.649945);
11
+ $primary-550: oklch(0.661983 0.214363 338.632544);
12
+ $primary-600: oklch(0.601253 0.254233 340.252307);
13
+ $primary-650: oklch(0.536642 0.227232 340.78992);
14
+ $primary-700: oklch(0.470462 0.200119 341.098388);
15
+ $primary-750: oklch(0.406687 0.174181 341.335872);
16
+ $primary-800: oklch(0.340576 0.146851 341.706145);
17
+ $primary-850: oklch(0.282424 0.121774 341.71207);
18
+ $primary-900: oklch(0.22599 0.097183 342.322886);
19
+ $primary-950: oklch(0.168705 0.072287 343.166627);
20
+ $accent-50: oklch(0.987839 0.007543 61.45578);
21
+ $accent-100: oklch(0.977951 0.014375 64.347922);
22
+ $accent-150: oklch(0.965645 0.019381 60.174704);
23
+ $accent-200: oklch(0.955039 0.025491 63.743337);
24
+ $accent-250: oklch(0.936249 0.041053 64.929124);
25
+ $accent-300: oklch(0.917859 0.056636 65.300646);
26
+ $accent-350: oklch(0.900675 0.072472 68.034989);
27
+ $accent-400: oklch(0.882019 0.087884 68.490482);
28
+ $accent-450: oklch(0.829842 0.113933 61.388359);
29
+ $accent-500: oklch(0.778954 0.140471 55.166517);
30
+ $accent-550: oklch(0.72492 0.166374 48.688783);
31
+ $accent-600: oklch(0.674414 0.192429 42.148083);
32
+ $accent-650: oklch(0.613962 0.184358 39.794614);
33
+ $accent-700: oklch(0.55289 0.176309 37.423321);
34
+ $accent-750: oklch(0.492464 0.16713 35.422254);
35
+ $accent-800: oklch(0.432199 0.159379 33.02244);
36
+ $accent-850: oklch(0.357475 0.135212 32.07107);
37
+ $accent-900: oklch(0.281222 0.110671 30.651366);
38
+ $accent-950: oklch(0.206578 0.08477 29.23388);
39
+ $grey-50: oklch(0.985104 0 0);
40
+ $grey-100: oklch(0.970151 0 0);
41
+ $grey-150: oklch(0.95514 0 0);
42
+ $grey-200: oklch(0.94007 0 0);
43
+ $grey-250: oklch(0.920652 0.002558 228.786818);
44
+ $grey-300: oklch(0.901624 0.003538 219.535738);
45
+ $grey-350: oklch(0.882025 0.006111 223.464254);
46
+ $grey-400: oklch(0.863097 0.007776 228.868893);
47
+ $grey-450: oklch(0.753634 0.008885 236.605307);
48
+ $grey-500: oklch(0.645222 0.009348 225.150438);
49
+ $grey-550: oklch(0.536704 0.009767 225.197358);
50
+ $grey-600: oklch(0.426427 0.011202 232.617199);
51
+ $grey-650: oklch(0.386365 0.01045 236.835687);
52
+ $grey-700: oklch(0.348204 0.010712 236.894097);
53
+ $grey-750: oklch(0.308978 0.011017 236.97265);
54
+ $grey-800: oklch(0.269413 0.01036 242.083865);
55
+ $grey-850: oklch(0.223572 0.008405 240.274391);
56
+ $grey-900: oklch(0.175228 0.006346 236.981786);
57
+ $grey-950: oklch(0.126543 0.006953 243.792325);
@@ -0,0 +1,57 @@
1
+ $primary-50: rgb(255, 246, 253);
2
+ $primary-100: rgb(255, 238, 249);
3
+ $primary-150: rgb(254, 230, 246);
4
+ $primary-200: rgb(253, 222, 242);
5
+ $primary-250: rgb(251, 212, 239);
6
+ $primary-300: rgb(249, 201, 235);
7
+ $primary-350: rgb(247, 191, 233);
8
+ $primary-400: rgb(244, 181, 230);
9
+ $primary-450: rgb(239, 150, 218);
10
+ $primary-500: rgb(233, 117, 204);
11
+ $primary-550: rgb(225, 80, 190);
12
+ $primary-600: rgb(217, 18, 174);
13
+ $primary-650: rgb(187, 12, 148);
14
+ $primary-700: rgb(157, 6, 123);
15
+ $primary-750: rgb(129, 2, 100);
16
+ $primary-800: rgb(101, 0, 77);
17
+ $primary-850: rgb(77, 0, 58);
18
+ $primary-900: rgb(55, 0, 40);
19
+ $primary-950: rgb(34, 0, 23);
20
+ $accent-50: rgb(255, 250, 246);
21
+ $accent-100: rgb(255, 246, 238);
22
+ $accent-150: rgb(254, 241, 231);
23
+ $accent-200: rgb(253, 237, 223);
24
+ $accent-250: rgb(254, 229, 206);
25
+ $accent-300: rgb(255, 221, 189);
26
+ $accent-350: rgb(255, 214, 171);
27
+ $accent-400: rgb(255, 206, 153);
28
+ $accent-450: rgb(253, 182, 120);
29
+ $accent-500: rgb(251, 157, 88);
30
+ $accent-550: rgb(247, 129, 57);
31
+ $accent-600: rgb(243, 99, 27);
32
+ $accent-650: rgb(219, 81, 21);
33
+ $accent-700: rgb(195, 63, 14);
34
+ $accent-750: rgb(171, 46, 6);
35
+ $accent-800: rgb(148, 27, 0);
36
+ $accent-850: rgb(115, 15, 0);
37
+ $accent-900: rgb(83, 4, 0);
38
+ $accent-950: rgb(53, 0, 0);
39
+ $grey-50: rgb(250, 250, 250);
40
+ $grey-100: rgb(245, 245, 245);
41
+ $grey-150: rgb(240, 240, 240);
42
+ $grey-200: rgb(235, 235, 235);
43
+ $grey-250: rgb(227, 229, 230);
44
+ $grey-300: rgb(220, 223, 224);
45
+ $grey-350: rgb(212, 217, 219);
46
+ $grey-400: rgb(205, 211, 214);
47
+ $grey-450: rgb(170, 176, 180);
48
+ $grey-500: rgb(136, 143, 146);
49
+ $grey-550: rgb(104, 111, 114);
50
+ $grey-600: rgb(73, 80, 84);
51
+ $grey-650: rgb(63, 69, 73);
52
+ $grey-700: rgb(53, 59, 63);
53
+ $grey-750: rgb(43, 49, 53);
54
+ $grey-800: rgb(34, 39, 43);
55
+ $grey-850: rgb(24, 28, 31);
56
+ $grey-900: rgb(14, 17, 19);
57
+ $grey-950: rgb(5, 7, 9);
@@ -1,57 +1,57 @@
1
- $primary-50: hsl(199.45, 100%, 97.34%);
2
- $primary-100: hsl(199.38, 100%, 94.73%);
3
- $primary-150: hsl(199.3, 95.85%, 92.09%);
4
- $primary-200: hsl(199.2, 92.59%, 89.41%);
5
- $primary-250: hsl(198.5, 96.87%, 86.75%);
6
- $primary-300: hsl(197.76, 98.99%, 83.89%);
7
- $primary-350: hsl(197, 99.87%, 80.82%);
8
- $primary-400: hsl(196.17, 100%, 77.45%);
9
- $primary-450: hsl(199.74, 99.83%, 67.57%);
10
- $primary-500: hsl(202.52, 100%, 57.55%);
11
- $primary-550: hsl(204.76, 100%, 46.97%);
12
- $primary-600: hsl(217.34, 98.31%, 53.53%);
13
- $primary-650: hsl(216.77, 89.43%, 43.98%);
14
- $primary-700: hsl(216.29, 94.14%, 35%);
15
- $primary-750: hsl(216.37, 97.67%, 26.93%);
16
- $primary-800: hsl(217.2, 100%, 19.61%);
17
- $primary-850: hsl(218.95, 100%, 14.93%);
18
- $primary-900: hsl(222.31, 100%, 10.59%);
19
- $primary-950: hsl(228.65, 100%, 6.6%);
20
- $accent-50: hsl(350.85, 100%, 98.97%);
21
- $accent-100: hsl(350.7, 100%, 97.7%);
22
- $accent-150: hsl(350.55, 100%, 96.41%);
23
- $accent-200: hsl(350.4, 100%, 95.1%);
24
- $accent-250: hsl(350.92, 100%, 92.94%);
25
- $accent-300: hsl(351.43, 100%, 90.72%);
26
- $accent-350: hsl(351.92, 100%, 88.44%);
27
- $accent-400: hsl(352.39, 100%, 86.08%);
28
- $accent-450: hsl(353.39, 86.96%, 78.18%);
29
- $accent-500: hsl(353.95, 78.84%, 69.69%);
30
- $accent-550: hsl(353.52, 73.17%, 60.13%);
31
- $accent-600: hsl(348.56, 82.2%, 46.27%);
32
- $accent-650: hsl(347.26, 85.91%, 38.92%);
33
- $accent-700: hsl(345.89, 91%, 31.81%);
34
- $accent-750: hsl(345, 95.87%, 25.31%);
35
- $accent-800: hsl(344.85, 100%, 19.41%);
36
- $accent-850: hsl(346.11, 100%, 14.46%);
37
- $accent-900: hsl(349.15, 100%, 10.03%);
38
- $accent-950: hsl(352.16, 100%, 6.06%);
39
- $grey-50: hsl(223.81, 0%, 98.03%);
40
- $grey-100: hsl(223.81, 0%, 96.06%);
41
- $grey-150: hsl(223.81, 0%, 94.11%);
42
- $grey-200: hsl(223.81, 0%, 92.16%);
43
- $grey-250: hsl(200.05, 4.31%, 89.64%);
44
- $grey-300: hsl(200.03, 6.92%, 87.13%);
45
- $grey-350: hsl(200.02, 8.65%, 84.64%);
46
- $grey-400: hsl(200, 9.89%, 82.16%);
47
- $grey-450: hsl(200.47, 6.03%, 68.52%);
48
- $grey-500: hsl(200.94, 4.51%, 55.36%);
49
- $grey-550: hsl(201.39, 4.91%, 42.76%);
50
- $grey-600: hsl(201.82, 7.01%, 30.78%);
51
- $grey-650: hsl(203.03, 7.74%, 26.71%);
52
- $grey-700: hsl(204.24, 8.68%, 22.73%);
53
- $grey-750: hsl(205.45, 9.93%, 18.85%);
54
- $grey-800: hsl(206.67, 11.69%, 15.1%);
55
- $grey-850: hsl(206.66, 13.37%, 10.7%);
56
- $grey-900: hsl(206.64, 17.01%, 6.52%);
57
- $grey-950: hsl(208.68, 23.47%, 2.8%);
1
+ $primary-50: hsl(196, 100%, 97.058824%);
2
+ $primary-100: hsl(200, 100%, 94.705882%);
3
+ $primary-150: hsl(198.461538, 95.121951%, 91.960784%);
4
+ $primary-200: hsl(199.2, 92.592593%, 89.411765%);
5
+ $primary-250: hsl(198.181818, 97.058824%, 86.666667%);
6
+ $primary-300: hsl(197.560976, 100%, 83.921569%);
7
+ $primary-350: hsl(197.142857, 100%, 80.784314%);
8
+ $primary-400: hsl(196.173913, 100%, 77.45098%);
9
+ $primary-450: hsl(199.636364, 100%, 67.647059%);
10
+ $primary-500: hsl(202.396313, 100%, 57.45098%);
11
+ $primary-550: hsl(206.352941, 100%, 50%);
12
+ $primary-600: hsl(217.339056, 98.312236%, 53.529412%);
13
+ $primary-650: hsl(216.6, 89.285714%, 43.921569%);
14
+ $primary-700: hsl(216.071429, 94.382022%, 34.901961%);
15
+ $primary-750: hsl(216.716418, 97.101449%, 27.058824%);
16
+ $primary-800: hsl(217.2, 100%, 19.607843%);
17
+ $primary-850: hsl(219.74026, 100%, 15.098039%);
18
+ $primary-900: hsl(222.545455, 100%, 10.784314%);
19
+ $primary-950: hsl(229.411765, 100%, 6.666667%);
20
+ $accent-50: hsl(351.428571, 100%, 98.627451%);
21
+ $accent-100: hsl(350.769231, 100%, 97.45098%);
22
+ $accent-150: hsl(350.526316, 100%, 96.27451%);
23
+ $accent-200: hsl(350.4, 100%, 95.098039%);
24
+ $accent-250: hsl(351.666667, 100%, 92.941176%);
25
+ $accent-300: hsl(351.25, 100%, 90.588235%);
26
+ $accent-350: hsl(351.864407, 100%, 88.431373%);
27
+ $accent-400: hsl(352.394366, 100%, 86.078431%);
28
+ $accent-450: hsl(353.195876, 87.387387%, 78.235294%);
29
+ $accent-500: hsl(354.098361, 79.220779%, 69.803922%);
30
+ $accent-550: hsl(353.557047, 73.399015%, 60.196078%);
31
+ $accent-600: hsl(348.556701, 82.20339%, 46.27451%);
32
+ $accent-650: hsl(347.368421, 85.929648%, 39.019608%);
33
+ $accent-700: hsl(345.810811, 91.358025%, 31.764706%);
34
+ $accent-750: hsl(344.878049, 95.348837%, 25.294118%);
35
+ $accent-800: hsl(344.848485, 100%, 19.411765%);
36
+ $accent-850: hsl(347.368421, 100%, 14.901961%);
37
+ $accent-900: hsl(351.111111, 100%, 10.588235%);
38
+ $accent-950: hsl(354.545455, 100%, 6.470588%);
39
+ $grey-50: hsl(0, 0%, 98.039216%);
40
+ $grey-100: hsl(0, 0%, 96.078431%);
41
+ $grey-150: hsl(0, 0%, 94.117647%);
42
+ $grey-200: hsl(0, 0%, 92.156863%);
43
+ $grey-250: hsl(200, 5.660377%, 89.607843%);
44
+ $grey-300: hsl(195, 6.060606%, 87.058824%);
45
+ $grey-350: hsl(197.142857, 8.860759%, 84.509804%);
46
+ $grey-400: hsl(200, 9.89011%, 82.156863%);
47
+ $grey-450: hsl(204, 6.25%, 68.627451%);
48
+ $grey-500: hsl(198, 4.385965%, 55.294118%);
49
+ $grey-550: hsl(198, 4.587156%, 42.745098%);
50
+ $grey-600: hsl(201.818182, 7.006369%, 30.784314%);
51
+ $grey-650: hsl(204, 7.352941%, 26.666667%);
52
+ $grey-700: hsl(204, 8.62069%, 22.745098%);
53
+ $grey-750: hsl(204, 10.416667%, 18.823529%);
54
+ $grey-800: hsl(206.666667, 11.688312%, 15.098039%);
55
+ $grey-850: hsl(205.714286, 12.727273%, 10.784314%);
56
+ $grey-900: hsl(204, 15.151515%, 6.470588%);
57
+ $grey-950: hsl(210, 28.571429%, 2.745098%);
@@ -1,57 +1,57 @@
1
- $primary-50: oklch(0.9816683948128555 0.013540580086234762 227.890755564881);
2
- $primary-100: oklch(0.9633367896257109 0.022914827838243446 227.890755564881);
3
- $primary-150: oklch(0.9450051844385663 0.032289075590252125 227.890755564881);
4
- $primary-200: oklch(0.9266735792514218 0.04166332334226081 227.890755564881);
5
- $primary-250: oklch(0.9110280326138016 0.05428316129852959 226.81685418252806);
6
- $primary-300: oklch(0.8953824859761815 0.06690299925479838 225.74295280017512);
7
- $primary-350: oklch(0.8797369393385615 0.07952283721106716 224.66905141782217);
8
- $primary-400: oklch(0.8640913927009413 0.09214267516733594 223.59515003546923);
9
- $primary-450: oklch(0.7918467078448571 0.12656541375136143 232.8854457721009);
10
- $primary-500: oklch(0.719602022988773 0.1609881523353869 242.17574150873253);
11
- $primary-550: oklch(0.6473573381326887 0.19541089091941238 251.4660372453642);
12
- $primary-600: oklch(0.5751126532766045 0.2298336295034379 260.75633298199585);
13
- $primary-650: oklch(0.5038341615701663 0.20169915825513662 260.52773388396713);
14
- $primary-700: oklch(0.43255566986372795 0.17356468700683536 260.29913478593846);
15
- $primary-750: oklch(0.3612771781572896 0.1454302157585341 260.07053568790974);
16
- $primary-800: oklch(0.2899986864508513 0.11729574451023282 259.841936589881);
17
- $primary-850: oklch(0.23924891632195233 0.0997013828336979 259.841936589881);
18
- $primary-900: oklch(0.18849914619305336 0.08210702115716298 259.841936589881);
19
- $primary-950: oklch(0.13774937606415438 0.06451265948062805 259.841936589881);
20
- $accent-50: oklch(0.9865629857873716 0.009043874600495525 6.653158456152784);
21
- $accent-100: oklch(0.9731259715747431 0.015305018554684736 6.653158456152784);
22
- $accent-150: oklch(0.9596889573621147 0.021566162508873946 6.653158456152784);
23
- $accent-200: oklch(0.9462519431494862 0.027827306463063157 6.653158456152784);
24
- $accent-250: oklch(0.9224097820035976 0.041627996281084 7.632544925274676);
25
- $accent-300: oklch(0.8985676208577089 0.05542868609910484 8.611931394396567);
26
- $accent-350: oklch(0.8747254597118204 0.06922937591712569 9.59131786351846);
27
- $accent-400: oklch(0.8508832985659317 0.08303006573514653 10.570704332640352);
28
- $accent-450: oklch(0.7786513285230947 0.11664880226231811 13.011419492803782);
29
- $accent-500: oklch(0.7064193584802577 0.15026753878948967 15.45213465296721);
30
- $accent-550: oklch(0.6341873884374207 0.18388627531666124 17.892849813130642);
31
- $accent-600: oklch(0.5619554183945837 0.2175050118438328 20.33356497329407);
32
- $accent-650: oklch(0.5007084126233001 0.1948505033631296 19.53345435711309);
33
- $accent-700: oklch(0.4394614068520166 0.17219599488242637 18.733343740932114);
34
- $accent-750: oklch(0.3782144010807331 0.14954148640172313 17.933233124751133);
35
- $accent-800: oklch(0.31696739530944956 0.1268869779210199 17.133122508570153);
36
- $accent-850: oklch(0.2614981011302959 0.10785393123286692 17.133122508570153);
37
- $accent-900: oklch(0.20602880695114223 0.08882088454471393 17.133122508570153);
38
- $accent-950: oklch(0.15055951277198854 0.06978783785656095 17.133122508570153);
39
- $grey-50: oklch(0.9850175274112574 0 0);
40
- $grey-100: oklch(0.9700350548225147 0 0);
41
- $grey-150: oklch(0.9550525822337722 0 0);
42
- $grey-200: oklch(0.9400701096450296 0 0);
43
- $grey-250: oklch(0.9208267112856119 0.0019440594503795112 228.8687380011113);
44
- $grey-300: oklch(0.9015833129261941 0.0038881189007590215 228.8687380011113);
45
- $grey-350: oklch(0.8823399145667763 0.005832178351138532 228.8687380011113);
46
- $grey-400: oklch(0.8630965162073586 0.007776237801518043 228.8687380011113);
47
- $grey-450: oklch(0.7539290831519737 0.008632737257709678 229.8058410593526);
48
- $grey-500: oklch(0.6447616500965888 0.009489236713901311 230.74294411759388);
49
- $grey-550: oklch(0.5355942170412039 0.010345736170092946 231.68004717583517);
50
- $grey-600: oklch(0.426426783985819 0.011202235626284581 232.61715023407646);
51
- $grey-650: oklch(0.3871732148397997 0.010991669591883444 234.98382249287215);
52
- $grey-700: oklch(0.3479196456937804 0.010781103557482309 237.35049475166784);
53
- $grey-750: oklch(0.3086660765477611 0.010570537523081174 239.71716701046353);
54
- $grey-800: oklch(0.26941250740174183 0.010359971488680036 242.08383926925922);
55
- $grey-850: oklch(0.222265318606437 0.00880597576537803 242.08383926925922);
56
- $grey-900: oklch(0.17511812981113217 0.007251980042076026 242.08383926925922);
57
- $grey-950: oklch(0.12797094101582737 0.005697984318774021 242.08383926925922);
1
+ $primary-50: oklch(0.981046 0.012805 221.42319);
2
+ $primary-100: oklch(0.962528 0.022535 229.073806);
3
+ $primary-150: oklch(0.945178 0.032646 226.304274);
4
+ $primary-200: oklch(0.926674 0.041663 227.890787);
5
+ $primary-250: oklch(0.911263 0.054737 226.223779);
6
+ $primary-300: oklch(0.896395 0.067447 225.364647);
7
+ $primary-350: oklch(0.87908 0.079726 224.961348);
8
+ $primary-400: oklch(0.864091 0.092143 223.595164);
9
+ $primary-450: oklch(0.793049 0.126377 232.671182);
10
+ $primary-500: oklch(0.719588 0.160232 241.934243);
11
+ $primary-550: oklch(0.647121 0.194114 252.085254);
12
+ $primary-600: oklch(0.575113 0.229834 260.756335);
13
+ $primary-650: oklch(0.504429 0.200565 260.409998);
14
+ $primary-700: oklch(0.433012 0.172764 260.164397);
15
+ $primary-750: oklch(0.360675 0.146274 260.290439);
16
+ $primary-800: oklch(0.289999 0.117296 259.841938);
17
+ $primary-850: oklch(0.238584 0.100105 260.505764);
18
+ $primary-900: oklch(0.190403 0.080719 260.682766);
19
+ $primary-950: oklch(0.138623 0.062732 261.699127);
20
+ $accent-50: oklch(0.984801 0.007587 7.280361);
21
+ $accent-100: oklch(0.97188 0.014232 6.700043);
22
+ $accent-150: oklch(0.959029 0.020979 6.606185);
23
+ $accent-200: oklch(0.946252 0.027827 6.653086);
24
+ $accent-250: oklch(0.922815 0.040479 8.438397);
25
+ $accent-300: oklch(0.897868 0.054828 8.39461);
26
+ $accent-350: oklch(0.875166 0.068164 9.494436);
27
+ $accent-400: oklch(0.850883 0.08303 10.570683);
28
+ $accent-450: oklch(0.779076 0.116944 12.810782);
29
+ $accent-500: oklch(0.707215 0.150378 15.602977);
30
+ $accent-550: oklch(0.634722 0.184087 17.935378);
31
+ $accent-600: oklch(0.561955 0.217505 20.33356);
32
+ $accent-650: oklch(0.501611 0.19526 19.649998);
33
+ $accent-700: oklch(0.439441 0.172351 18.724983);
34
+ $accent-750: oklch(0.377602 0.149006 17.706488);
35
+ $accent-800: oklch(0.316967 0.126887 17.133117);
36
+ $accent-850: oklch(0.26401 0.105766 17.967115);
37
+ $accent-900: oklch(0.210832 0.084535 18.772606);
38
+ $accent-950: oklch(0.156795 0.062933 19.607624);
39
+ $grey-50: oklch(0.985104 0 0);
40
+ $grey-100: oklch(0.970151 0 0);
41
+ $grey-150: oklch(0.95514 0 0);
42
+ $grey-200: oklch(0.94007 0 0);
43
+ $grey-250: oklch(0.920652 0.002558 228.786818);
44
+ $grey-300: oklch(0.901624 0.003538 219.535738);
45
+ $grey-350: oklch(0.882025 0.006111 223.464254);
46
+ $grey-400: oklch(0.863097 0.007776 228.868893);
47
+ $grey-450: oklch(0.753634 0.008885 236.605307);
48
+ $grey-500: oklch(0.645222 0.009348 225.150438);
49
+ $grey-550: oklch(0.536704 0.009767 225.197358);
50
+ $grey-600: oklch(0.426427 0.011202 232.617199);
51
+ $grey-650: oklch(0.386365 0.01045 236.835687);
52
+ $grey-700: oklch(0.348204 0.010712 236.894097);
53
+ $grey-750: oklch(0.308978 0.011017 236.97265);
54
+ $grey-800: oklch(0.269413 0.01036 242.083865);
55
+ $grey-850: oklch(0.223572 0.008405 240.274391);
56
+ $grey-900: oklch(0.175228 0.006346 236.981786);
57
+ $grey-950: oklch(0.126543 0.006953 243.792325);