@nswds/tokens 2.7.0 → 2.9.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.
- package/dist/css/colors/semantic/hex.css +78 -0
- package/dist/css/colors/semantic/hsl.css +78 -0
- package/dist/css/colors/semantic/oklch.css +78 -0
- package/dist/css/colors/semantic/rgb.css +78 -0
- package/dist/css/colors/themes/masterbrand/hex.css +57 -56
- package/dist/css/colors/themes/masterbrand/hsl.css +57 -56
- package/dist/css/colors/themes/masterbrand/oklch.css +57 -56
- package/dist/css/colors/themes/masterbrand/rgb.css +57 -56
- package/dist/figma/color/semantic/hex.json +314 -0
- package/dist/figma/color/semantic/hsl.json +618 -0
- package/dist/figma/color/semantic/oklch.json +618 -0
- package/dist/figma/color/semantic/rgb.json +618 -0
- package/dist/figma/color/themes/masterbrand/color/hex.json +236 -0
- package/dist/figma/color/themes/masterbrand/color/hsl.json +464 -0
- package/dist/figma/color/themes/masterbrand/color/oklch.json +464 -0
- package/dist/figma/color/themes/masterbrand/color/rgb.json +464 -0
- package/dist/index.cjs +2199 -2294
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +498 -770
- package/dist/index.d.ts +498 -770
- package/dist/index.js +2199 -2294
- package/dist/index.js.map +1 -1
- package/dist/js/colors/semantic/hex.js +87 -0
- package/dist/js/colors/semantic/hsl.js +87 -0
- package/dist/js/colors/semantic/oklch.js +87 -0
- package/dist/js/colors/semantic/rgb.js +87 -0
- package/dist/js/colors/themes/masterbrand/hex.js +59 -68
- package/dist/js/colors/themes/masterbrand/hsl.js +59 -68
- package/dist/js/colors/themes/masterbrand/oklch.js +59 -68
- package/dist/js/colors/themes/masterbrand/rgb.js +59 -68
- package/dist/json/colors/semantic/hex.json +86 -0
- package/dist/json/colors/semantic/hsl.json +86 -0
- package/dist/json/colors/semantic/oklch.json +86 -0
- package/dist/json/colors/semantic/rgb.json +86 -0
- package/dist/json/colors/themes/masterbrand/hex.json +58 -67
- package/dist/json/colors/themes/masterbrand/hsl.json +58 -67
- package/dist/json/colors/themes/masterbrand/oklch.json +58 -67
- package/dist/json/colors/themes/masterbrand/rgb.json +58 -67
- package/dist/less/colors/semantic/hex.less +76 -0
- package/dist/less/colors/semantic/hsl.less +76 -0
- package/dist/less/colors/semantic/oklch.less +76 -0
- package/dist/less/colors/semantic/rgb.less +76 -0
- package/dist/less/colors/themes/masterbrand/hex.less +57 -56
- package/dist/less/colors/themes/masterbrand/hsl.less +57 -56
- package/dist/less/colors/themes/masterbrand/oklch.less +57 -56
- package/dist/less/colors/themes/masterbrand/rgb.less +57 -56
- package/dist/scss/colors/semantic/hex.scss +76 -0
- package/dist/scss/colors/semantic/hsl.scss +76 -0
- package/dist/scss/colors/semantic/oklch.scss +76 -0
- package/dist/scss/colors/semantic/rgb.scss +76 -0
- package/dist/scss/colors/themes/masterbrand/hex.scss +57 -56
- package/dist/scss/colors/themes/masterbrand/hsl.scss +57 -56
- package/dist/scss/colors/themes/masterbrand/oklch.scss +57 -56
- package/dist/scss/colors/themes/masterbrand/rgb.scss +57 -56
- package/dist/tailwind/colors/semantic/hex.css +78 -0
- package/dist/tailwind/colors/semantic/hsl.css +78 -0
- package/dist/tailwind/colors/semantic/oklch.css +78 -0
- package/dist/tailwind/colors/semantic/rgb.css +78 -0
- package/dist/tailwind/colors/themes/masterbrand/hex.css +57 -56
- package/dist/tailwind/colors/themes/masterbrand/hsl.css +57 -56
- package/dist/tailwind/colors/themes/masterbrand/oklch.css +57 -56
- package/dist/tailwind/colors/themes/masterbrand/rgb.css +57 -56
- package/dist/ts/colors/semantic/hex.ts +84 -0
- package/dist/ts/colors/semantic/hsl.ts +84 -0
- package/dist/ts/colors/semantic/oklch.ts +84 -0
- package/dist/ts/colors/semantic/rgb.ts +84 -0
- package/dist/ts/colors/themes/masterbrand/hex.ts +59 -68
- package/dist/ts/colors/themes/masterbrand/hsl.ts +59 -68
- package/dist/ts/colors/themes/masterbrand/oklch.ts +59 -68
- package/dist/ts/colors/themes/masterbrand/rgb.ts +59 -68
- package/package.json +1 -1
- package/src/css/colors/semantic/hex.css +78 -0
- package/src/css/colors/semantic/hsl.css +78 -0
- package/src/css/colors/semantic/oklch.css +78 -0
- package/src/css/colors/semantic/rgb.css +78 -0
- package/src/css/colors/themes/masterbrand/hex.css +57 -56
- package/src/css/colors/themes/masterbrand/hsl.css +57 -56
- package/src/css/colors/themes/masterbrand/oklch.css +57 -56
- package/src/css/colors/themes/masterbrand/rgb.css +57 -56
- package/src/figma/color/semantic/hex.json +314 -0
- package/src/figma/color/semantic/hsl.json +618 -0
- package/src/figma/color/semantic/oklch.json +618 -0
- package/src/figma/color/semantic/rgb.json +618 -0
- package/src/figma/color/themes/masterbrand/color/hex.json +236 -0
- package/src/figma/color/themes/masterbrand/color/hsl.json +464 -0
- package/src/figma/color/themes/masterbrand/color/oklch.json +464 -0
- package/src/figma/color/themes/masterbrand/color/rgb.json +464 -0
- package/src/index.ts +4 -4
- package/src/js/colors/semantic/hex.js +87 -0
- package/src/js/colors/semantic/hsl.js +87 -0
- package/src/js/colors/semantic/oklch.js +87 -0
- package/src/js/colors/semantic/rgb.js +87 -0
- package/src/js/colors/themes/masterbrand/hex.js +59 -68
- package/src/js/colors/themes/masterbrand/hsl.js +59 -68
- package/src/js/colors/themes/masterbrand/oklch.js +59 -68
- package/src/js/colors/themes/masterbrand/rgb.js +59 -68
- package/src/json/colors/semantic/hex.json +86 -0
- package/src/json/colors/semantic/hsl.json +86 -0
- package/src/json/colors/semantic/oklch.json +86 -0
- package/src/json/colors/semantic/rgb.json +86 -0
- package/src/json/colors/themes/masterbrand/hex.json +58 -67
- package/src/json/colors/themes/masterbrand/hsl.json +58 -67
- package/src/json/colors/themes/masterbrand/oklch.json +58 -67
- package/src/json/colors/themes/masterbrand/rgb.json +58 -67
- package/src/less/colors/semantic/hex.less +76 -0
- package/src/less/colors/semantic/hsl.less +76 -0
- package/src/less/colors/semantic/oklch.less +76 -0
- package/src/less/colors/semantic/rgb.less +76 -0
- package/src/less/colors/themes/masterbrand/hex.less +57 -56
- package/src/less/colors/themes/masterbrand/hsl.less +57 -56
- package/src/less/colors/themes/masterbrand/oklch.less +57 -56
- package/src/less/colors/themes/masterbrand/rgb.less +57 -56
- package/src/scss/colors/semantic/hex.scss +76 -0
- package/src/scss/colors/semantic/hsl.scss +76 -0
- package/src/scss/colors/semantic/oklch.scss +76 -0
- package/src/scss/colors/semantic/rgb.scss +76 -0
- package/src/scss/colors/themes/masterbrand/hex.scss +57 -56
- package/src/scss/colors/themes/masterbrand/hsl.scss +57 -56
- package/src/scss/colors/themes/masterbrand/oklch.scss +57 -56
- package/src/scss/colors/themes/masterbrand/rgb.scss +57 -56
- package/src/tailwind/colors/semantic/hex.css +78 -0
- package/src/tailwind/colors/semantic/hsl.css +78 -0
- package/src/tailwind/colors/semantic/oklch.css +78 -0
- package/src/tailwind/colors/semantic/rgb.css +78 -0
- package/src/tailwind/colors/themes/masterbrand/hex.css +57 -56
- package/src/tailwind/colors/themes/masterbrand/hsl.css +57 -56
- package/src/tailwind/colors/themes/masterbrand/oklch.css +57 -56
- package/src/tailwind/colors/themes/masterbrand/rgb.css +57 -56
- package/src/ts/colors/semantic/hex.ts +84 -0
- package/src/ts/colors/semantic/hsl.ts +84 -0
- package/src/ts/colors/semantic/oklch.ts +84 -0
- package/src/ts/colors/semantic/rgb.ts +84 -0
- package/src/ts/colors/themes/masterbrand/hex.ts +59 -68
- package/src/ts/colors/themes/masterbrand/hsl.ts +59 -68
- package/src/ts/colors/themes/masterbrand/oklch.ts +59 -68
- package/src/ts/colors/themes/masterbrand/rgb.ts +59 -68
- package/dist/figma/themes/masterbrand/color/hex.json +0 -226
- package/dist/figma/themes/masterbrand/color/hsl.json +0 -450
- package/dist/figma/themes/masterbrand/color/oklch.json +0 -450
- package/dist/figma/themes/masterbrand/color/rgb.json +0 -450
- package/src/figma/themes/masterbrand/color/hex.json +0 -226
- package/src/figma/themes/masterbrand/color/hsl.json +0 -450
- package/src/figma/themes/masterbrand/color/oklch.json +0 -450
- package/src/figma/themes/masterbrand/color/rgb.json +0 -450
- /package/dist/figma/{global/color → color/global}/hex.json +0 -0
- /package/dist/figma/{global/color → color/global}/hsl.json +0 -0
- /package/dist/figma/{global/color → color/global}/oklch.json +0 -0
- /package/dist/figma/{global/color → color/global}/rgb.json +0 -0
- /package/src/figma/{global/color → color/global}/hex.json +0 -0
- /package/src/figma/{global/color → color/global}/hsl.json +0 -0
- /package/src/figma/{global/color → color/global}/oklch.json +0 -0
- /package/src/figma/{global/color → color/global}/rgb.json +0 -0
|
@@ -1,72 +1,63 @@
|
|
|
1
1
|
export const primary = {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
lighter: 'oklch(0.719602022988773 0.1609881523353869 242.17574150873253)',
|
|
22
|
-
light: 'oklch(0.6473573381326887 0.19541089091941238 251.4660372453642)',
|
|
23
|
-
DEFAULT: 'oklch(0.5751126532766045 0.2298336295034379 260.75633298199585)',
|
|
24
|
-
dark: 'oklch(0.5038341615701663 0.20169915825513662 260.52773388396713)',
|
|
25
|
-
darker: 'oklch(0.43255566986372795 0.17356468700683536 260.29913478593846)',
|
|
26
|
-
darkest: 'oklch(0.3612771781572896 0.1454302157585341 260.07053568790974)',
|
|
2
|
+
'50': 'oklch(0.9816683948128555 0.013540580086234762 227.890755564881)',
|
|
3
|
+
'100': 'oklch(0.9633367896257109 0.022914827838243446 227.890755564881)',
|
|
4
|
+
'150': 'oklch(0.9450051844385663 0.032289075590252125 227.890755564881)',
|
|
5
|
+
'200': 'oklch(0.9266735792514218 0.04166332334226081 227.890755564881)',
|
|
6
|
+
'250': 'oklch(0.9110280326138016 0.05428316129852959 226.81685418252806)',
|
|
7
|
+
'300': 'oklch(0.8953824859761815 0.06690299925479838 225.74295280017512)',
|
|
8
|
+
'350': 'oklch(0.8797369393385615 0.07952283721106716 224.66905141782217)',
|
|
9
|
+
'400': 'oklch(0.8640913927009413 0.09214267516733594 223.59515003546923)',
|
|
10
|
+
'450': 'oklch(0.7918467078448571 0.12656541375136143 232.8854457721009)',
|
|
11
|
+
'500': 'oklch(0.719602022988773 0.1609881523353869 242.17574150873253)',
|
|
12
|
+
'550': 'oklch(0.6473573381326887 0.19541089091941238 251.4660372453642)',
|
|
13
|
+
'600': 'oklch(0.5751126532766045 0.2298336295034379 260.75633298199585)',
|
|
14
|
+
'650': 'oklch(0.5038341615701663 0.20169915825513662 260.52773388396713)',
|
|
15
|
+
'700': 'oklch(0.43255566986372795 0.17356468700683536 260.29913478593846)',
|
|
16
|
+
'750': 'oklch(0.3612771781572896 0.1454302157585341 260.07053568790974)',
|
|
17
|
+
'800': 'oklch(0.2899986864508513 0.11729574451023282 259.841936589881)',
|
|
18
|
+
'850': 'oklch(0.23924891632195233 0.0997013828336979 259.841936589881)',
|
|
19
|
+
'900': 'oklch(0.18849914619305336 0.08210702115716298 259.841936589881)',
|
|
20
|
+
'950': 'oklch(0.13774937606415438 0.06451265948062805 259.841936589881)',
|
|
27
21
|
}
|
|
28
22
|
export const accent = {
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
dark: 'oklch(0.37176315839438123 0.10479059912516739 262.3514946368672)',
|
|
70
|
-
darker: 'oklch(0.2929043066137549 0.0862981404560202 262.3514946368672)',
|
|
71
|
-
darkest: 'oklch(0.2140454548331286 0.06780568178687302 262.3514946368672)',
|
|
23
|
+
'50': 'oklch(0.9865629857873716 0.009043874600495525 6.653158456152784)',
|
|
24
|
+
'100': 'oklch(0.9731259715747431 0.015305018554684736 6.653158456152784)',
|
|
25
|
+
'150': 'oklch(0.9596889573621147 0.021566162508873946 6.653158456152784)',
|
|
26
|
+
'200': 'oklch(0.9462519431494862 0.027827306463063157 6.653158456152784)',
|
|
27
|
+
'250': 'oklch(0.9224097820035976 0.041627996281084 7.632544925274676)',
|
|
28
|
+
'300': 'oklch(0.8985676208577089 0.05542868609910484 8.611931394396567)',
|
|
29
|
+
'350': 'oklch(0.8747254597118204 0.06922937591712569 9.59131786351846)',
|
|
30
|
+
'400': 'oklch(0.8508832985659317 0.08303006573514653 10.570704332640352)',
|
|
31
|
+
'450': 'oklch(0.7786513285230947 0.11664880226231811 13.011419492803782)',
|
|
32
|
+
'500': 'oklch(0.7064193584802577 0.15026753878948967 15.45213465296721)',
|
|
33
|
+
'550': 'oklch(0.6341873884374207 0.18388627531666124 17.892849813130642)',
|
|
34
|
+
'600': 'oklch(0.5619554183945837 0.2175050118438328 20.33356497329407)',
|
|
35
|
+
'650': 'oklch(0.5007084126233001 0.1948505033631296 19.53345435711309)',
|
|
36
|
+
'700': 'oklch(0.4394614068520166 0.17219599488242637 18.733343740932114)',
|
|
37
|
+
'750': 'oklch(0.3782144010807331 0.14954148640172313 17.933233124751133)',
|
|
38
|
+
'800': 'oklch(0.31696739530944956 0.1268869779210199 17.133122508570153)',
|
|
39
|
+
'850': 'oklch(0.2614981011302959 0.10785393123286692 17.133122508570153)',
|
|
40
|
+
'900': 'oklch(0.20602880695114223 0.08882088454471393 17.133122508570153)',
|
|
41
|
+
'950': 'oklch(0.15055951277198854 0.06978783785656095 17.133122508570153)',
|
|
42
|
+
}
|
|
43
|
+
export const grey = {
|
|
44
|
+
'50': 'oklch(0.9850175274112574 0 0)',
|
|
45
|
+
'100': 'oklch(0.9700350548225147 0 0)',
|
|
46
|
+
'150': 'oklch(0.9550525822337722 0 0)',
|
|
47
|
+
'200': 'oklch(0.9400701096450296 0 0)',
|
|
48
|
+
'250': 'oklch(0.9208267112856119 0.0019440594503795112 228.8687380011113)',
|
|
49
|
+
'300': 'oklch(0.9015833129261941 0.0038881189007590215 228.8687380011113)',
|
|
50
|
+
'350': 'oklch(0.8823399145667763 0.005832178351138532 228.8687380011113)',
|
|
51
|
+
'400': 'oklch(0.8630965162073586 0.007776237801518043 228.8687380011113)',
|
|
52
|
+
'450': 'oklch(0.7539290831519737 0.008632737257709678 229.8058410593526)',
|
|
53
|
+
'500': 'oklch(0.6447616500965888 0.009489236713901311 230.74294411759388)',
|
|
54
|
+
'550': 'oklch(0.5355942170412039 0.010345736170092946 231.68004717583517)',
|
|
55
|
+
'600': 'oklch(0.426426783985819 0.011202235626284581 232.61715023407646)',
|
|
56
|
+
'650': 'oklch(0.3871732148397997 0.010991669591883444 234.98382249287215)',
|
|
57
|
+
'700': 'oklch(0.3479196456937804 0.010781103557482309 237.35049475166784)',
|
|
58
|
+
'750': 'oklch(0.3086660765477611 0.010570537523081174 239.71716701046353)',
|
|
59
|
+
'800': 'oklch(0.26941250740174183 0.010359971488680036 242.08383926925922)',
|
|
60
|
+
'850': 'oklch(0.222265318606437 0.00880597576537803 242.08383926925922)',
|
|
61
|
+
'900': 'oklch(0.17511812981113217 0.007251980042076026 242.08383926925922)',
|
|
62
|
+
'950': 'oklch(0.12797094101582737 0.005697984318774021 242.08383926925922)',
|
|
72
63
|
}
|
|
@@ -1,72 +1,63 @@
|
|
|
1
1
|
export const primary = {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
lighter: 'rgb(38, 174, 255)',
|
|
22
|
-
light: 'rgb(0, 143, 255)',
|
|
23
|
-
DEFAULT: 'rgb(20, 108, 253)',
|
|
24
|
-
dark: 'rgb(12, 90, 212)',
|
|
25
|
-
darker: 'rgb(5, 72, 173)',
|
|
26
|
-
darkest: 'rgb(2, 54, 136)',
|
|
2
|
+
'50': 'rgb(240, 251, 255)',
|
|
3
|
+
'100': 'rgb(228, 246, 255)',
|
|
4
|
+
'150': 'rgb(215, 242, 254)',
|
|
5
|
+
'200': 'rgb(203, 237, 253)',
|
|
6
|
+
'250': 'rgb(188, 234, 254)',
|
|
7
|
+
'300': 'rgb(173, 231, 255)',
|
|
8
|
+
'350': 'rgb(157, 227, 255)',
|
|
9
|
+
'400': 'rgb(140, 224, 255)',
|
|
10
|
+
'450': 'rgb(90, 201, 255)',
|
|
11
|
+
'500': 'rgb(38, 174, 255)',
|
|
12
|
+
'550': 'rgb(0, 143, 255)',
|
|
13
|
+
'600': 'rgb(20, 108, 253)',
|
|
14
|
+
'650': 'rgb(12, 90, 212)',
|
|
15
|
+
'700': 'rgb(5, 72, 173)',
|
|
16
|
+
'750': 'rgb(2, 54, 136)',
|
|
17
|
+
'800': 'rgb(0, 38, 100)',
|
|
18
|
+
'850': 'rgb(0, 26, 77)',
|
|
19
|
+
'900': 'rgb(0, 16, 55)',
|
|
20
|
+
'950': 'rgb(0, 6, 34)',
|
|
27
21
|
}
|
|
28
22
|
export const accent = {
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
dark: 'rgb(32, 61, 119)',
|
|
70
|
-
darker: 'rgb(19, 41, 86)',
|
|
71
|
-
darkest: 'rgb(7, 23, 56)',
|
|
23
|
+
'50': 'rgb(255, 248, 249)',
|
|
24
|
+
'100': 'rgb(255, 242, 244)',
|
|
25
|
+
'150': 'rgb(255, 236, 239)',
|
|
26
|
+
'200': 'rgb(255, 230, 234)',
|
|
27
|
+
'250': 'rgb(255, 219, 224)',
|
|
28
|
+
'300': 'rgb(255, 207, 214)',
|
|
29
|
+
'350': 'rgb(255, 196, 204)',
|
|
30
|
+
'400': 'rgb(255, 184, 193)',
|
|
31
|
+
'450': 'rgb(248, 151, 162)',
|
|
32
|
+
'500': 'rgb(239, 117, 129)',
|
|
33
|
+
'550': 'rgb(228, 79, 95)',
|
|
34
|
+
'600': 'rgb(215, 21, 58)',
|
|
35
|
+
'650': 'rgb(185, 14, 50)',
|
|
36
|
+
'700': 'rgb(155, 7, 42)',
|
|
37
|
+
'750': 'rgb(126, 3, 34)',
|
|
38
|
+
'800': 'rgb(99, 0, 25)',
|
|
39
|
+
'850': 'rgb(76, 0, 16)',
|
|
40
|
+
'900': 'rgb(54, 0, 8)',
|
|
41
|
+
'950': 'rgb(33, 0, 3)',
|
|
42
|
+
}
|
|
43
|
+
export const grey = {
|
|
44
|
+
'50': 'rgb(250, 250, 250)',
|
|
45
|
+
'100': 'rgb(245, 245, 245)',
|
|
46
|
+
'150': 'rgb(240, 240, 240)',
|
|
47
|
+
'200': 'rgb(235, 235, 235)',
|
|
48
|
+
'250': 'rgb(227, 229, 230)',
|
|
49
|
+
'300': 'rgb(220, 223, 224)',
|
|
50
|
+
'350': 'rgb(212, 217, 219)',
|
|
51
|
+
'400': 'rgb(205, 211, 214)',
|
|
52
|
+
'450': 'rgb(170, 176, 180)',
|
|
53
|
+
'500': 'rgb(136, 143, 146)',
|
|
54
|
+
'550': 'rgb(104, 111, 114)',
|
|
55
|
+
'600': 'rgb(73, 80, 84)',
|
|
56
|
+
'650': 'rgb(63, 69, 73)',
|
|
57
|
+
'700': 'rgb(53, 59, 63)',
|
|
58
|
+
'750': 'rgb(43, 49, 53)',
|
|
59
|
+
'800': 'rgb(34, 39, 43)',
|
|
60
|
+
'850': 'rgb(24, 28, 31)',
|
|
61
|
+
'900': 'rgb(14, 17, 19)',
|
|
62
|
+
'950': 'rgb(5, 7, 9)',
|
|
72
63
|
}
|
|
@@ -1,226 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"primary-lightest": {
|
|
3
|
-
"value": "#0c5ad4",
|
|
4
|
-
"type": "color"
|
|
5
|
-
},
|
|
6
|
-
"primary-lighter": {
|
|
7
|
-
"value": "#0548ad",
|
|
8
|
-
"type": "color"
|
|
9
|
-
},
|
|
10
|
-
"primary-light": {
|
|
11
|
-
"value": "#023688",
|
|
12
|
-
"type": "color"
|
|
13
|
-
},
|
|
14
|
-
"primary": {
|
|
15
|
-
"value": "#002664",
|
|
16
|
-
"type": "color"
|
|
17
|
-
},
|
|
18
|
-
"primary-dark": {
|
|
19
|
-
"value": "#001a4d",
|
|
20
|
-
"type": "color"
|
|
21
|
-
},
|
|
22
|
-
"primary-darker": {
|
|
23
|
-
"value": "#001037",
|
|
24
|
-
"type": "color"
|
|
25
|
-
},
|
|
26
|
-
"primary-darkest": {
|
|
27
|
-
"value": "#000622",
|
|
28
|
-
"type": "color"
|
|
29
|
-
},
|
|
30
|
-
"secondary-lightest": {
|
|
31
|
-
"value": "#f0fbff",
|
|
32
|
-
"type": "color"
|
|
33
|
-
},
|
|
34
|
-
"secondary-lighter": {
|
|
35
|
-
"value": "#e4f6ff",
|
|
36
|
-
"type": "color"
|
|
37
|
-
},
|
|
38
|
-
"secondary-light": {
|
|
39
|
-
"value": "#d7f2fe",
|
|
40
|
-
"type": "color"
|
|
41
|
-
},
|
|
42
|
-
"secondary": {
|
|
43
|
-
"value": "#cbedfd",
|
|
44
|
-
"type": "color"
|
|
45
|
-
},
|
|
46
|
-
"secondary-dark": {
|
|
47
|
-
"value": "#bceafe",
|
|
48
|
-
"type": "color"
|
|
49
|
-
},
|
|
50
|
-
"secondary-darker": {
|
|
51
|
-
"value": "#ade7ff",
|
|
52
|
-
"type": "color"
|
|
53
|
-
},
|
|
54
|
-
"secondary-darkest": {
|
|
55
|
-
"value": "#9de3ff",
|
|
56
|
-
"type": "color"
|
|
57
|
-
},
|
|
58
|
-
"tertiary-lightest": {
|
|
59
|
-
"value": "#5ac9ff",
|
|
60
|
-
"type": "color"
|
|
61
|
-
},
|
|
62
|
-
"tertiary-lighter": {
|
|
63
|
-
"value": "#26aeff",
|
|
64
|
-
"type": "color"
|
|
65
|
-
},
|
|
66
|
-
"tertiary-light": {
|
|
67
|
-
"value": "#008fff",
|
|
68
|
-
"type": "color"
|
|
69
|
-
},
|
|
70
|
-
"tertiary": {
|
|
71
|
-
"value": "#146cfd",
|
|
72
|
-
"type": "color"
|
|
73
|
-
},
|
|
74
|
-
"tertiary-dark": {
|
|
75
|
-
"value": "#0c5ad4",
|
|
76
|
-
"type": "color"
|
|
77
|
-
},
|
|
78
|
-
"tertiary-darker": {
|
|
79
|
-
"value": "#0548ad",
|
|
80
|
-
"type": "color"
|
|
81
|
-
},
|
|
82
|
-
"tertiary-darkest": {
|
|
83
|
-
"value": "#023688",
|
|
84
|
-
"type": "color"
|
|
85
|
-
},
|
|
86
|
-
"accent-lightest": {
|
|
87
|
-
"value": "#f897a2",
|
|
88
|
-
"type": "color"
|
|
89
|
-
},
|
|
90
|
-
"accent-lighter": {
|
|
91
|
-
"value": "#ef7581",
|
|
92
|
-
"type": "color"
|
|
93
|
-
},
|
|
94
|
-
"accent-light": {
|
|
95
|
-
"value": "#e44f5f",
|
|
96
|
-
"type": "color"
|
|
97
|
-
},
|
|
98
|
-
"accent": {
|
|
99
|
-
"value": "#d7153a",
|
|
100
|
-
"type": "color"
|
|
101
|
-
},
|
|
102
|
-
"accent-dark": {
|
|
103
|
-
"value": "#b90e32",
|
|
104
|
-
"type": "color"
|
|
105
|
-
},
|
|
106
|
-
"accent-darker": {
|
|
107
|
-
"value": "#9b072a",
|
|
108
|
-
"type": "color"
|
|
109
|
-
},
|
|
110
|
-
"accent-darkest": {
|
|
111
|
-
"value": "#7e0322",
|
|
112
|
-
"type": "color"
|
|
113
|
-
},
|
|
114
|
-
"success-lightest": {
|
|
115
|
-
"value": "#c4e5c0",
|
|
116
|
-
"type": "color"
|
|
117
|
-
},
|
|
118
|
-
"success-lighter": {
|
|
119
|
-
"value": "#8fc78b",
|
|
120
|
-
"type": "color"
|
|
121
|
-
},
|
|
122
|
-
"success-light": {
|
|
123
|
-
"value": "#58a854",
|
|
124
|
-
"type": "color"
|
|
125
|
-
},
|
|
126
|
-
"success": {
|
|
127
|
-
"value": "#008a07",
|
|
128
|
-
"type": "color"
|
|
129
|
-
},
|
|
130
|
-
"success-dark": {
|
|
131
|
-
"value": "#006a00",
|
|
132
|
-
"type": "color"
|
|
133
|
-
},
|
|
134
|
-
"success-darker": {
|
|
135
|
-
"value": "#004c00",
|
|
136
|
-
"type": "color"
|
|
137
|
-
},
|
|
138
|
-
"success-darkest": {
|
|
139
|
-
"value": "#002f00",
|
|
140
|
-
"type": "color"
|
|
141
|
-
},
|
|
142
|
-
"warning-lightest": {
|
|
143
|
-
"value": "#fdd2c0",
|
|
144
|
-
"type": "color"
|
|
145
|
-
},
|
|
146
|
-
"warning-lighter": {
|
|
147
|
-
"value": "#eea88a",
|
|
148
|
-
"type": "color"
|
|
149
|
-
},
|
|
150
|
-
"warning-light": {
|
|
151
|
-
"value": "#dd7d53",
|
|
152
|
-
"type": "color"
|
|
153
|
-
},
|
|
154
|
-
"warning": {
|
|
155
|
-
"value": "#c95000",
|
|
156
|
-
"type": "color"
|
|
157
|
-
},
|
|
158
|
-
"warning-dark": {
|
|
159
|
-
"value": "#9d3a00",
|
|
160
|
-
"type": "color"
|
|
161
|
-
},
|
|
162
|
-
"warning-darker": {
|
|
163
|
-
"value": "#722600",
|
|
164
|
-
"type": "color"
|
|
165
|
-
},
|
|
166
|
-
"warning-darkest": {
|
|
167
|
-
"value": "#4b1200",
|
|
168
|
-
"type": "color"
|
|
169
|
-
},
|
|
170
|
-
"error-lightest": {
|
|
171
|
-
"value": "#fdc6c6",
|
|
172
|
-
"type": "color"
|
|
173
|
-
},
|
|
174
|
-
"error-lighter": {
|
|
175
|
-
"value": "#ea9295",
|
|
176
|
-
"type": "color"
|
|
177
|
-
},
|
|
178
|
-
"error-light": {
|
|
179
|
-
"value": "#d35d65",
|
|
180
|
-
"type": "color"
|
|
181
|
-
},
|
|
182
|
-
"error": {
|
|
183
|
-
"value": "#b81237",
|
|
184
|
-
"type": "color"
|
|
185
|
-
},
|
|
186
|
-
"error-dark": {
|
|
187
|
-
"value": "#8f0327",
|
|
188
|
-
"type": "color"
|
|
189
|
-
},
|
|
190
|
-
"error-darker": {
|
|
191
|
-
"value": "#690018",
|
|
192
|
-
"type": "color"
|
|
193
|
-
},
|
|
194
|
-
"error-darkest": {
|
|
195
|
-
"value": "#44000a",
|
|
196
|
-
"type": "color"
|
|
197
|
-
},
|
|
198
|
-
"info-lightest": {
|
|
199
|
-
"value": "#acbbd5",
|
|
200
|
-
"type": "color"
|
|
201
|
-
},
|
|
202
|
-
"info-lighter": {
|
|
203
|
-
"value": "#8198c2",
|
|
204
|
-
"type": "color"
|
|
205
|
-
},
|
|
206
|
-
"info-light": {
|
|
207
|
-
"value": "#5775ae",
|
|
208
|
-
"type": "color"
|
|
209
|
-
},
|
|
210
|
-
"info": {
|
|
211
|
-
"value": "#2e5299",
|
|
212
|
-
"type": "color"
|
|
213
|
-
},
|
|
214
|
-
"info-dark": {
|
|
215
|
-
"value": "#203d77",
|
|
216
|
-
"type": "color"
|
|
217
|
-
},
|
|
218
|
-
"info-darker": {
|
|
219
|
-
"value": "#132956",
|
|
220
|
-
"type": "color"
|
|
221
|
-
},
|
|
222
|
-
"info-darkest": {
|
|
223
|
-
"value": "#071738",
|
|
224
|
-
"type": "color"
|
|
225
|
-
}
|
|
226
|
-
}
|