@nswds/tokens 0.0.2 → 2.0.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 (72) hide show
  1. package/dist/css/colors/global/hex.css +192 -0
  2. package/dist/css/colors/global/hsl.css +192 -0
  3. package/dist/css/colors/global/oklch.css +192 -0
  4. package/dist/css/colors/global/rgb.css +192 -0
  5. package/dist/css/colors/themes/masterbrand/hex.css +3 -0
  6. package/dist/css/colors/themes/masterbrand/hsl.css +3 -0
  7. package/dist/css/colors/themes/masterbrand/oklch.css +3 -0
  8. package/dist/css/colors/themes/masterbrand/rgb.css +3 -0
  9. package/dist/js/colors/global/hex.js +210 -0
  10. package/dist/js/colors/global/hsl.js +210 -0
  11. package/dist/js/colors/global/oklch.js +210 -0
  12. package/dist/js/colors/global/rgb.js +210 -0
  13. package/dist/js/colors/themes/masterbrand/hex.js +72 -0
  14. package/dist/js/colors/themes/masterbrand/hsl.js +72 -0
  15. package/dist/js/colors/themes/masterbrand/oklch.js +72 -0
  16. package/dist/js/colors/themes/masterbrand/rgb.js +72 -0
  17. package/dist/json/colors/global/hex.json +0 -0
  18. package/dist/json/colors/global/hsl.json +0 -0
  19. package/dist/json/colors/global/oklch.json +0 -0
  20. package/dist/json/colors/global/rgb.json +0 -0
  21. package/dist/json/colors/themes/masterbrand/hex.json +0 -0
  22. package/dist/json/colors/themes/masterbrand/hsl.json +0 -0
  23. package/dist/json/colors/themes/masterbrand/oklch.json +0 -0
  24. package/dist/json/colors/themes/masterbrand/rgb.json +0 -0
  25. package/dist/less/colors/global/hex.less +0 -0
  26. package/dist/less/colors/global/hsl.less +0 -0
  27. package/dist/less/colors/global/oklch.less +0 -0
  28. package/dist/less/colors/global/rgb.less +0 -0
  29. package/dist/less/colors/themes/masterbrand/hex.less +0 -0
  30. package/dist/less/colors/themes/masterbrand/hsl.less +0 -0
  31. package/dist/less/colors/themes/masterbrand/oklch.less +0 -0
  32. package/dist/less/colors/themes/masterbrand/rgb.less +0 -0
  33. package/dist/scss/colors/global/hex.scss +190 -0
  34. package/dist/scss/colors/global/hsl.scss +190 -0
  35. package/dist/scss/colors/global/oklch.scss +190 -0
  36. package/dist/scss/colors/global/rgb.scss +190 -0
  37. package/dist/scss/colors/themes/masterbrand/hex.scss +56 -0
  38. package/dist/scss/colors/themes/masterbrand/hsl.scss +56 -0
  39. package/dist/scss/colors/themes/masterbrand/oklch.scss +56 -0
  40. package/dist/scss/colors/themes/masterbrand/rgb.scss +56 -0
  41. package/dist/tailwind/colors/global/hex.css +192 -0
  42. package/dist/tailwind/colors/global/hsl.css +192 -0
  43. package/dist/tailwind/colors/global/oklch.css +192 -0
  44. package/dist/tailwind/colors/global/rgb.css +192 -0
  45. package/dist/tailwind/colors/themes/masterbrand/hex.css +58 -0
  46. package/dist/tailwind/colors/themes/masterbrand/hsl.css +58 -0
  47. package/dist/tailwind/colors/themes/masterbrand/oklch.css +58 -0
  48. package/dist/tailwind/colors/themes/masterbrand/rgb.css +58 -0
  49. package/dist/ts/colors/global/hex.ts +210 -0
  50. package/dist/ts/colors/global/hsl.ts +210 -0
  51. package/dist/ts/colors/global/oklch.ts +210 -0
  52. package/dist/ts/colors/global/rgb.ts +210 -0
  53. package/dist/ts/colors/themes/masterbrand/hex.ts +72 -0
  54. package/dist/ts/colors/themes/masterbrand/hsl.ts +72 -0
  55. package/dist/ts/colors/themes/masterbrand/oklch.ts +72 -0
  56. package/dist/ts/colors/themes/masterbrand/rgb.ts +72 -0
  57. package/package.json +1 -1
  58. package/tokens/global/color/hsl.json +2302 -0
  59. package/tokens/global/color/rgb.json +2302 -0
  60. package/tokens/themes/masterbrand/color/hex.json +242 -0
  61. package/tokens/themes/masterbrand/color/hsl.json +690 -0
  62. package/tokens/themes/masterbrand/color/oklch.json +690 -0
  63. package/tokens/themes/masterbrand/color/rgb.json +690 -0
  64. package/dist/css/colors/oklch/theme.css +0 -274
  65. package/dist/ts/colors/hex/theme.ts +0 -284
  66. package/dist/ts/colors/hsl/theme.ts +0 -284
  67. package/dist/ts/colors/oklch/theme.ts +0 -284
  68. package/dist/ts/colors/rgb/theme.ts +0 -284
  69. package/tokens/theme/masterbrand/color/hex/hex.json +0 -226
  70. package/tokens/theme/masterbrand/color/oklch/oklch.json +0 -674
  71. /package/tokens/{globals/color/masterbrand/hex/color.json → global/color/hex.json} +0 -0
  72. /package/tokens/{globals/color/masterbrand/oklch/color.json → global/color/oklch.json} +0 -0
@@ -1,284 +0,0 @@
1
- export const colors = {
2
- primary: {
3
- lightest: 'rgb(12, 90, 212)',
4
- lighter: 'rgb(5, 72, 173)',
5
- light: 'rgb(2, 54, 136)',
6
- DEFAULT: 'rgb(0, 38, 100)',
7
- dark: 'rgb(0, 26, 77)',
8
- darker: 'rgb(0, 16, 55)',
9
- darkest: 'rgb(0, 6, 34)',
10
- },
11
- secondary: {
12
- lightest: 'rgb(240, 251, 255)',
13
- lighter: 'rgb(228, 246, 255)',
14
- light: 'rgb(215, 242, 254)',
15
- DEFAULT: 'rgb(203, 237, 253)',
16
- dark: 'rgb(188, 234, 254)',
17
- darker: 'rgb(173, 231, 255)',
18
- darkest: 'rgb(157, 227, 255)',
19
- },
20
- tertiary: {
21
- lightest: 'rgb(90, 201, 255)',
22
- lighter: 'rgb(38, 174, 255)',
23
- light: 'rgb(0, 143, 255)',
24
- DEFAULT: 'rgb(20, 108, 253)',
25
- dark: 'rgb(12, 90, 212)',
26
- darker: 'rgb(5, 72, 173)',
27
- darkest: 'rgb(2, 54, 136)',
28
- },
29
- accent: {
30
- lightest: 'rgb(248, 151, 162)',
31
- lighter: 'rgb(239, 117, 129)',
32
- light: 'rgb(228, 79, 95)',
33
- DEFAULT: 'rgb(215, 21, 58)',
34
- dark: 'rgb(185, 14, 50)',
35
- darker: 'rgb(155, 7, 42)',
36
- darkest: 'rgb(126, 3, 34)',
37
- },
38
- success: {
39
- lightest: 'rgb(196, 229, 192)',
40
- lighter: 'rgb(143, 199, 139)',
41
- light: 'rgb(88, 168, 84)',
42
- DEFAULT: 'rgb(0, 138, 7)',
43
- dark: 'rgb(0, 106, 0)',
44
- darker: 'rgb(0, 76, 0)',
45
- darkest: 'rgb(0, 47, 0)',
46
- },
47
- warning: {
48
- lightest: 'rgb(253, 210, 192)',
49
- lighter: 'rgb(238, 168, 138)',
50
- light: 'rgb(221, 125, 83)',
51
- DEFAULT: 'rgb(201, 80, 0)',
52
- dark: 'rgb(157, 58, 0)',
53
- darker: 'rgb(114, 38, 0)',
54
- darkest: 'rgb(75, 18, 0)',
55
- },
56
- error: {
57
- lightest: 'rgb(253, 198, 198)',
58
- lighter: 'rgb(234, 146, 149)',
59
- light: 'rgb(211, 93, 101)',
60
- DEFAULT: 'rgb(184, 18, 55)',
61
- dark: 'rgb(143, 3, 39)',
62
- darker: 'rgb(105, 0, 24)',
63
- darkest: 'rgb(68, 0, 10)',
64
- },
65
- info: {
66
- lightest: 'rgb(172, 187, 213)',
67
- lighter: 'rgb(129, 152, 194)',
68
- light: 'rgb(87, 117, 174)',
69
- DEFAULT: 'rgb(46, 82, 153)',
70
- dark: 'rgb(32, 61, 119)',
71
- darker: 'rgb(19, 41, 86)',
72
- darkest: 'rgb(7, 23, 56)',
73
- },
74
- 'nsw-grey': {
75
- 50: 'rgb(250, 250, 250)',
76
- 100: 'rgb(245, 245, 245)',
77
- 150: 'rgb(240, 240, 240)',
78
- 200: 'rgb(235, 235, 235)',
79
- 250: 'rgb(229, 228, 229)',
80
- 300: 'rgb(222, 222, 225)',
81
- 350: 'rgb(214, 216, 220)',
82
- 400: 'rgb(205, 211, 214)',
83
- 450: 'rgb(170, 176, 180)',
84
- 500: 'rgb(136, 143, 146)',
85
- 550: 'rgb(104, 111, 114)',
86
- 600: 'rgb(73, 80, 84)',
87
- 650: 'rgb(63, 69, 73)',
88
- 700: 'rgb(53, 59, 63)',
89
- 750: 'rgb(43, 49, 53)',
90
- 800: 'rgb(34, 39, 43)',
91
- 850: 'rgb(24, 28, 31)',
92
- 900: 'rgb(14, 17, 19)',
93
- 950: 'rgb(5, 7, 9)',
94
- },
95
- 'nsw-green': {
96
- 50: 'rgb(245, 255, 246)',
97
- 100: 'rgb(236, 253, 238)',
98
- 150: 'rgb(228, 252, 231)',
99
- 200: 'rgb(219, 250, 223)',
100
- 250: 'rgb(207, 247, 212)',
101
- 300: 'rgb(194, 244, 201)',
102
- 350: 'rgb(181, 240, 190)',
103
- 400: 'rgb(168, 237, 179)',
104
- 450: 'rgb(138, 220, 152)',
105
- 500: 'rgb(106, 204, 125)',
106
- 550: 'rgb(69, 187, 98)',
107
- 600: 'rgb(0, 170, 69)',
108
- 650: 'rgb(7, 142, 50)',
109
- 700: 'rgb(7, 115, 32)',
110
- 750: 'rgb(3, 89, 15)',
111
- 800: 'rgb(0, 64, 0)',
112
- 850: 'rgb(0, 48, 0)',
113
- 900: 'rgb(0, 32, 0)',
114
- 950: 'rgb(0, 17, 0)',
115
- },
116
- 'nsw-teal': {
117
- 50: 'rgb(242, 251, 250)',
118
- 100: 'rgb(231, 247, 245)',
119
- 150: 'rgb(220, 242, 239)',
120
- 200: 'rgb(209, 238, 234)',
121
- 250: 'rgb(193, 234, 231)',
122
- 300: 'rgb(176, 229, 229)',
123
- 350: 'rgb(158, 224, 229)',
124
- 400: 'rgb(140, 219, 229)',
125
- 450: 'rgb(117, 196, 207)',
126
- 500: 'rgb(94, 172, 185)',
127
- 550: 'rgb(70, 150, 163)',
128
- 600: 'rgb(46, 128, 142)',
129
- 650: 'rgb(37, 111, 123)',
130
- 700: 'rgb(28, 95, 105)',
131
- 750: 'rgb(20, 78, 88)',
132
- 800: 'rgb(11, 63, 71)',
133
- 850: 'rgb(4, 47, 53)',
134
- 900: 'rgb(1, 31, 36)',
135
- 950: 'rgb(0, 17, 20)',
136
- },
137
- 'nsw-blue': {
138
- 50: 'rgb(240, 251, 255)',
139
- 100: 'rgb(228, 246, 255)',
140
- 150: 'rgb(215, 242, 254)',
141
- 200: 'rgb(203, 237, 253)',
142
- 250: 'rgb(188, 234, 254)',
143
- 300: 'rgb(173, 231, 255)',
144
- 350: 'rgb(157, 227, 255)',
145
- 400: 'rgb(140, 224, 255)',
146
- 450: 'rgb(90, 201, 255)',
147
- 500: 'rgb(38, 174, 255)',
148
- 550: 'rgb(0, 143, 255)',
149
- 600: 'rgb(20, 108, 253)',
150
- 650: 'rgb(12, 90, 212)',
151
- 700: 'rgb(5, 72, 173)',
152
- 750: 'rgb(2, 54, 136)',
153
- 800: 'rgb(0, 38, 100)',
154
- 850: 'rgb(0, 26, 77)',
155
- 900: 'rgb(0, 16, 55)',
156
- 950: 'rgb(0, 6, 34)',
157
- },
158
- 'nsw-purple': {
159
- 50: 'rgb(249, 247, 255)',
160
- 100: 'rgb(242, 240, 255)',
161
- 150: 'rgb(236, 232, 254)',
162
- 200: 'rgb(230, 225, 253)',
163
- 250: 'rgb(224, 217, 254)',
164
- 300: 'rgb(218, 208, 254)',
165
- 350: 'rgb(212, 200, 255)',
166
- 400: 'rgb(206, 191, 255)',
167
- 450: 'rgb(186, 166, 252)',
168
- 500: 'rgb(166, 141, 249)',
169
- 550: 'rgb(147, 114, 245)',
170
- 600: 'rgb(128, 85, 241)',
171
- 650: 'rgb(114, 67, 207)',
172
- 700: 'rgb(100, 50, 174)',
173
- 750: 'rgb(84, 33, 142)',
174
- 800: 'rgb(68, 17, 112)',
175
- 850: 'rgb(51, 8, 86)',
176
- 900: 'rgb(35, 2, 62)',
177
- 950: 'rgb(19, 0, 39)',
178
- },
179
- 'nsw-fuchsia': {
180
- 50: 'rgb(255, 246, 253)',
181
- 100: 'rgb(255, 238, 249)',
182
- 150: 'rgb(254, 230, 245)',
183
- 200: 'rgb(253, 222, 242)',
184
- 250: 'rgb(251, 212, 239)',
185
- 300: 'rgb(249, 201, 235)',
186
- 350: 'rgb(247, 191, 233)',
187
- 400: 'rgb(244, 181, 230)',
188
- 450: 'rgb(239, 150, 218)',
189
- 500: 'rgb(233, 117, 204)',
190
- 550: 'rgb(225, 80, 190)',
191
- 600: 'rgb(217, 18, 174)',
192
- 650: 'rgb(187, 12, 148)',
193
- 700: 'rgb(157, 6, 123)',
194
- 750: 'rgb(129, 2, 100)',
195
- 800: 'rgb(101, 0, 77)',
196
- 850: 'rgb(77, 0, 58)',
197
- 900: 'rgb(55, 0, 40)',
198
- 950: 'rgb(34, 0, 23)',
199
- },
200
- 'nsw-red': {
201
- 50: 'rgb(255, 248, 249)',
202
- 100: 'rgb(255, 242, 244)',
203
- 150: 'rgb(255, 236, 239)',
204
- 200: 'rgb(255, 230, 234)',
205
- 250: 'rgb(255, 219, 224)',
206
- 300: 'rgb(255, 207, 214)',
207
- 350: 'rgb(255, 196, 204)',
208
- 400: 'rgb(255, 184, 193)',
209
- 450: 'rgb(248, 151, 162)',
210
- 500: 'rgb(239, 117, 129)',
211
- 550: 'rgb(228, 79, 95)',
212
- 600: 'rgb(215, 21, 58)',
213
- 650: 'rgb(185, 14, 50)',
214
- 700: 'rgb(155, 7, 42)',
215
- 750: 'rgb(126, 3, 34)',
216
- 800: 'rgb(99, 0, 25)',
217
- 850: 'rgb(76, 0, 16)',
218
- 900: 'rgb(54, 0, 8)',
219
- 950: 'rgb(33, 0, 3)',
220
- },
221
- 'nsw-orange': {
222
- 50: 'rgb(255, 250, 246)',
223
- 100: 'rgb(255, 246, 238)',
224
- 150: 'rgb(254, 241, 231)',
225
- 200: 'rgb(253, 237, 223)',
226
- 250: 'rgb(254, 229, 206)',
227
- 300: 'rgb(255, 221, 189)',
228
- 350: 'rgb(255, 214, 171)',
229
- 400: 'rgb(255, 206, 153)',
230
- 450: 'rgb(253, 182, 120)',
231
- 500: 'rgb(251, 157, 88)',
232
- 550: 'rgb(247, 129, 57)',
233
- 600: 'rgb(243, 99, 27)',
234
- 650: 'rgb(219, 81, 21)',
235
- 700: 'rgb(195, 63, 14)',
236
- 750: 'rgb(171, 46, 6)',
237
- 800: 'rgb(148, 27, 0)',
238
- 850: 'rgb(115, 15, 0)',
239
- 900: 'rgb(83, 4, 0)',
240
- 950: 'rgb(53, 0, 0)',
241
- },
242
- 'nsw-yellow': {
243
- 50: 'rgb(255, 252, 240)',
244
- 100: 'rgb(255, 250, 229)',
245
- 150: 'rgb(255, 247, 218)',
246
- 200: 'rgb(255, 244, 207)',
247
- 250: 'rgb(255, 241, 194)',
248
- 300: 'rgb(254, 238, 181)',
249
- 350: 'rgb(254, 234, 168)',
250
- 400: 'rgb(253, 231, 154)',
251
- 450: 'rgb(251, 218, 128)',
252
- 500: 'rgb(250, 205, 99)',
253
- 550: 'rgb(250, 190, 66)',
254
- 600: 'rgb(250, 175, 5)',
255
- 650: 'rgb(212, 148, 2)',
256
- 700: 'rgb(175, 122, 1)',
257
- 750: 'rgb(139, 96, 0)',
258
- 800: 'rgb(105, 72, 0)',
259
- 850: 'rgb(80, 53, 0)',
260
- 900: 'rgb(57, 36, 0)',
261
- 950: 'rgb(34, 19, 0)',
262
- },
263
- 'nsw-brown': {
264
- 50: 'rgb(251, 248, 244)',
265
- 100: 'rgb(246, 241, 234)',
266
- 150: 'rgb(242, 234, 225)',
267
- 200: 'rgb(237, 227, 215)',
268
- 250: 'rgb(236, 222, 206)',
269
- 300: 'rgb(234, 218, 198)',
270
- 350: 'rgb(233, 213, 189)',
271
- 400: 'rgb(232, 208, 181)',
272
- 450: 'rgb(219, 191, 159)',
273
- 500: 'rgb(207, 174, 137)',
274
- 550: 'rgb(194, 157, 115)',
275
- 600: 'rgb(182, 141, 93)',
276
- 650: 'rgb(156, 118, 75)',
277
- 700: 'rgb(130, 96, 58)',
278
- 750: 'rgb(106, 75, 41)',
279
- 800: 'rgb(82, 55, 25)',
280
- 850: 'rgb(62, 40, 15)',
281
- 900: 'rgb(43, 26, 7)',
282
- 950: 'rgb(25, 13, 2)',
283
- },
284
- };
@@ -1,226 +0,0 @@
1
- {
2
- "primary-lightest": {
3
- "$type": "color",
4
- "$value": "#0c5ad4"
5
- },
6
- "primary-lighter": {
7
- "$type": "color",
8
- "$value": "#0548ad"
9
- },
10
- "primary-light": {
11
- "$type": "color",
12
- "$value": "#023688"
13
- },
14
- "primary": {
15
- "$type": "color",
16
- "$value": "#002664"
17
- },
18
- "primary-dark": {
19
- "$type": "color",
20
- "$value": "#001a4d"
21
- },
22
- "primary-darker": {
23
- "$type": "color",
24
- "$value": "#001037"
25
- },
26
- "primary-darkest": {
27
- "$type": "color",
28
- "$value": "#000622"
29
- },
30
- "secondary-lightest": {
31
- "$type": "color",
32
- "$value": "#f0fbff"
33
- },
34
- "secondary-lighter": {
35
- "$type": "color",
36
- "$value": "#e4f6ff"
37
- },
38
- "secondary-light": {
39
- "$type": "color",
40
- "$value": "#d7f2fe"
41
- },
42
- "secondary": {
43
- "$type": "color",
44
- "$value": "#cbedfd"
45
- },
46
- "secondary-dark": {
47
- "$type": "color",
48
- "$value": "#bceafe"
49
- },
50
- "secondary-darker": {
51
- "$type": "color",
52
- "$value": "#ade7ff"
53
- },
54
- "secondary-darkest": {
55
- "$type": "color",
56
- "$value": "#9de3ff"
57
- },
58
- "tertiary-lightest": {
59
- "$type": "color",
60
- "$value": "#5ac9ff"
61
- },
62
- "tertiary-lighter": {
63
- "$type": "color",
64
- "$value": "#26aeff"
65
- },
66
- "tertiary-light": {
67
- "$type": "color",
68
- "$value": "#008fff"
69
- },
70
- "tertiary": {
71
- "$type": "color",
72
- "$value": "#146cfd"
73
- },
74
- "tertiary-dark": {
75
- "$type": "color",
76
- "$value": "#0c5ad4"
77
- },
78
- "tertiary-darker": {
79
- "$type": "color",
80
- "$value": "#0548ad"
81
- },
82
- "tertiary-darkest": {
83
- "$type": "color",
84
- "$value": "#023688"
85
- },
86
- "accent-lightest": {
87
- "$type": "color",
88
- "$value": "#f897a2"
89
- },
90
- "accent-lighter": {
91
- "$type": "color",
92
- "$value": "#ef7581"
93
- },
94
- "accent-light": {
95
- "$type": "color",
96
- "$value": "#e44f5f"
97
- },
98
- "accent": {
99
- "$type": "color",
100
- "$value": "#d7153a"
101
- },
102
- "accent-dark": {
103
- "$type": "color",
104
- "$value": "#b90e32"
105
- },
106
- "accent-darker": {
107
- "$type": "color",
108
- "$value": "#9b072a"
109
- },
110
- "accent-darkest": {
111
- "$type": "color",
112
- "$value": "#7e0322"
113
- },
114
- "success-lightest": {
115
- "$type": "color",
116
- "$value": "#c4e5c0"
117
- },
118
- "success-lighter": {
119
- "$type": "color",
120
- "$value": "#8fc78b"
121
- },
122
- "success-light": {
123
- "$type": "color",
124
- "$value": "#58a854"
125
- },
126
- "success": {
127
- "$type": "color",
128
- "$value": "#008a07"
129
- },
130
- "success-dark": {
131
- "$type": "color",
132
- "$value": "#006a00"
133
- },
134
- "success-darker": {
135
- "$type": "color",
136
- "$value": "#004c00"
137
- },
138
- "success-darkest": {
139
- "$type": "color",
140
- "$value": "#002f00"
141
- },
142
- "warning-lightest": {
143
- "$type": "color",
144
- "$value": "#fdd2c0"
145
- },
146
- "warning-lighter": {
147
- "$type": "color",
148
- "$value": "#eea88a"
149
- },
150
- "warning-light": {
151
- "$type": "color",
152
- "$value": "#dd7d53"
153
- },
154
- "warning": {
155
- "$type": "color",
156
- "$value": "#c95000"
157
- },
158
- "warning-dark": {
159
- "$type": "color",
160
- "$value": "#9d3a00"
161
- },
162
- "warning-darker": {
163
- "$type": "color",
164
- "$value": "#722600"
165
- },
166
- "warning-darkest": {
167
- "$type": "color",
168
- "$value": "#4b1200"
169
- },
170
- "error-lightest": {
171
- "$type": "color",
172
- "$value": "#fdc6c6"
173
- },
174
- "error-lighter": {
175
- "$type": "color",
176
- "$value": "#ea9295"
177
- },
178
- "error-light": {
179
- "$type": "color",
180
- "$value": "#d35d65"
181
- },
182
- "error": {
183
- "$type": "color",
184
- "$value": "#b81237"
185
- },
186
- "error-dark": {
187
- "$type": "color",
188
- "$value": "#8f0327"
189
- },
190
- "error-darker": {
191
- "$type": "color",
192
- "$value": "#690018"
193
- },
194
- "error-darkest": {
195
- "$type": "color",
196
- "$value": "#44000a"
197
- },
198
- "info-lightest": {
199
- "$type": "color",
200
- "$value": "#acbbd5"
201
- },
202
- "info-lighter": {
203
- "$type": "color",
204
- "$value": "#8198c2"
205
- },
206
- "info-light": {
207
- "$type": "color",
208
- "$value": "#5775ae"
209
- },
210
- "info": {
211
- "$type": "color",
212
- "$value": "#2e5299"
213
- },
214
- "info-dark": {
215
- "$type": "color",
216
- "$value": "#203d77"
217
- },
218
- "info-darker": {
219
- "$type": "color",
220
- "$value": "#132956"
221
- },
222
- "info-darkest": {
223
- "$type": "color",
224
- "$value": "#071738"
225
- }
226
- }