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