@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
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
export const success = {
|
|
2
|
+
'50': '#eff9ed',
|
|
3
|
+
'100': '#e0f3de',
|
|
4
|
+
'150': '#d2eccf',
|
|
5
|
+
'200': '#c4e5c0',
|
|
6
|
+
'250': '#aad6a5',
|
|
7
|
+
'300': '#8fc78a',
|
|
8
|
+
'350': '#74b76f',
|
|
9
|
+
'400': '#58a854',
|
|
10
|
+
'450': '#49a146',
|
|
11
|
+
'500': '#399936',
|
|
12
|
+
'550': '#259224',
|
|
13
|
+
'600': '#008a07',
|
|
14
|
+
'650': '#007204',
|
|
15
|
+
'700': '#005a02',
|
|
16
|
+
'750': '#004401',
|
|
17
|
+
'800': '#002f00',
|
|
18
|
+
'850': '#002200',
|
|
19
|
+
'900': '#001600',
|
|
20
|
+
'950': '#000b00',
|
|
21
|
+
}
|
|
22
|
+
export const warning = {
|
|
23
|
+
'50': '#fff3ed',
|
|
24
|
+
'100': '#ffe8de',
|
|
25
|
+
'150': '#ffddcf',
|
|
26
|
+
'200': '#fdd2c0',
|
|
27
|
+
'250': '#f6bda5',
|
|
28
|
+
'300': '#eea88a',
|
|
29
|
+
'350': '#e6936f',
|
|
30
|
+
'400': '#dd7d53',
|
|
31
|
+
'450': '#d87244',
|
|
32
|
+
'500': '#d36734',
|
|
33
|
+
'550': '#ce5c21',
|
|
34
|
+
'600': '#c95000',
|
|
35
|
+
'650': '#a83f03',
|
|
36
|
+
'700': '#882f03',
|
|
37
|
+
'750': '#692001',
|
|
38
|
+
'800': '#4b1200',
|
|
39
|
+
'850': '#390a00',
|
|
40
|
+
'900': '#270400',
|
|
41
|
+
'950': '#170100',
|
|
42
|
+
}
|
|
43
|
+
export const danger = {
|
|
44
|
+
'50': '#fff0ef',
|
|
45
|
+
'100': '#ffe2e1',
|
|
46
|
+
'150': '#ffd4d4',
|
|
47
|
+
'200': '#fdc6c6',
|
|
48
|
+
'250': '#f4acad',
|
|
49
|
+
'300': '#ea9294',
|
|
50
|
+
'350': '#df787c',
|
|
51
|
+
'400': '#d35d65',
|
|
52
|
+
'450': '#cd4e59',
|
|
53
|
+
'500': '#c63f4e',
|
|
54
|
+
'550': '#bf2c42',
|
|
55
|
+
'600': '#b81237',
|
|
56
|
+
'650': '#990b2a',
|
|
57
|
+
'700': '#7c061f',
|
|
58
|
+
'750': '#5f0214',
|
|
59
|
+
'800': '#44000a',
|
|
60
|
+
'850': '#330005',
|
|
61
|
+
'900': '#230002',
|
|
62
|
+
'950': '#140001',
|
|
63
|
+
}
|
|
64
|
+
export const info = {
|
|
65
|
+
'50': '#e9eef7',
|
|
66
|
+
'100': '#d4ddeb',
|
|
67
|
+
'150': '#c0cce0',
|
|
68
|
+
'200': '#acbbd5',
|
|
69
|
+
'250': '#96a9cc',
|
|
70
|
+
'300': '#8098c2',
|
|
71
|
+
'350': '#6b86b8',
|
|
72
|
+
'400': '#5775ae',
|
|
73
|
+
'450': '#4d6ca9',
|
|
74
|
+
'500': '#4264a4',
|
|
75
|
+
'550': '#385b9e',
|
|
76
|
+
'600': '#2e5299',
|
|
77
|
+
'650': '#23427f',
|
|
78
|
+
'700': '#193366',
|
|
79
|
+
'750': '#10254f',
|
|
80
|
+
'800': '#071738',
|
|
81
|
+
'850': '#040f2a',
|
|
82
|
+
'900': '#02071c',
|
|
83
|
+
'950': '#00030f',
|
|
84
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
export const success = {
|
|
2
|
+
'50': 'hsl(113.15, 52.52%, 95.43%)',
|
|
3
|
+
'100': 'hsl(113.26, 45.54%, 91.13%)',
|
|
4
|
+
'150': 'hsl(113.38, 42.97%, 86.84%)',
|
|
5
|
+
'200': 'hsl(113.51, 41.57%, 82.55%)',
|
|
6
|
+
'250': 'hsl(114.16, 37.16%, 74.26%)',
|
|
7
|
+
'300': 'hsl(114.93, 34.81%, 66.02%)',
|
|
8
|
+
'350': 'hsl(115.88, 33.38%, 57.78%)',
|
|
9
|
+
'400': 'hsl(117.14, 33.33%, 49.41%)',
|
|
10
|
+
'450': 'hsl(117.67, 39.56%, 45.11%)',
|
|
11
|
+
'500': 'hsl(118.38, 47.88%, 40.58%)',
|
|
12
|
+
'550': 'hsl(119.53, 60.48%, 35.56%)',
|
|
13
|
+
'600': 'hsl(123.04, 100%, 27.06%)',
|
|
14
|
+
'650': 'hsl(121.8, 99.36%, 22.38%)',
|
|
15
|
+
'700': 'hsl(120.9, 99.22%, 17.81%)',
|
|
16
|
+
'750': 'hsl(120.32, 99.47%, 13.4%)',
|
|
17
|
+
'800': 'hsl(120, 100%, 9.22%)',
|
|
18
|
+
'850': 'hsl(120.32, 100%, 6.51%)',
|
|
19
|
+
'900': 'hsl(120.63, 100%, 4.07%)',
|
|
20
|
+
'950': 'hsl(121.08, 100%, 1.88%)',
|
|
21
|
+
}
|
|
22
|
+
export const warning = {
|
|
23
|
+
'50': 'hsl(17.53, 100%, 96.97%)',
|
|
24
|
+
'100': 'hsl(17.59, 100%, 93.77%)',
|
|
25
|
+
'150': 'hsl(17.65, 99.09%, 90.53%)',
|
|
26
|
+
'200': 'hsl(17.7, 93.85%, 87.25%)',
|
|
27
|
+
'250': 'hsl(17.77, 81.71%, 80.57%)',
|
|
28
|
+
'300': 'hsl(17.84, 74.94%, 73.78%)',
|
|
29
|
+
'350': 'hsl(17.98, 70.36%, 66.84%)',
|
|
30
|
+
'400': 'hsl(18.26, 66.99%, 59.61%)',
|
|
31
|
+
'450': 'hsl(18.61, 65.61%, 55.79%)',
|
|
32
|
+
'500': 'hsl(19.18, 64.53%, 51.69%)',
|
|
33
|
+
'550': 'hsl(20.31, 72.21%, 46.96%)',
|
|
34
|
+
'600': 'hsl(23.88, 100%, 39.41%)',
|
|
35
|
+
'650': 'hsl(21.95, 96.66%, 33.46%)',
|
|
36
|
+
'700': 'hsl(20.07, 95.99%, 27.13%)',
|
|
37
|
+
'750': 'hsl(17.86, 97.32%, 20.78%)',
|
|
38
|
+
'800': 'hsl(14.4, 100%, 14.71%)',
|
|
39
|
+
'850': 'hsl(11.43, 100%, 10.95%)',
|
|
40
|
+
'900': 'hsl(7.67, 100%, 7.5%)',
|
|
41
|
+
'950': 'hsl(4.64, 100%, 4.34%)',
|
|
42
|
+
}
|
|
43
|
+
export const danger = {
|
|
44
|
+
'50': 'hsl(0.78, 100%, 97.61%)',
|
|
45
|
+
'100': 'hsl(0.56, 100%, 94.61%)',
|
|
46
|
+
'150': 'hsl(0.3, 100%, 91.55%)',
|
|
47
|
+
'200': 'hsl(0, 93.22%, 88.43%)',
|
|
48
|
+
'250': 'hsl(359.39, 76.34%, 81.59%)',
|
|
49
|
+
'300': 'hsl(358.59, 67.4%, 74.56%)',
|
|
50
|
+
'350': 'hsl(357.51, 61.52%, 67.27%)',
|
|
51
|
+
'400': 'hsl(355.93, 57.28%, 59.61%)',
|
|
52
|
+
'450': 'hsl(354.77, 55.6%, 55.49%)',
|
|
53
|
+
'500': 'hsl(353.23, 54.28%, 51.09%)',
|
|
54
|
+
'550': 'hsl(350.97, 62.34%, 46.16%)',
|
|
55
|
+
'600': 'hsl(346.63, 82.18%, 39.61%)',
|
|
56
|
+
'650': 'hsl(346.89, 86.15%, 32.28%)',
|
|
57
|
+
'700': 'hsl(347.25, 91.31%, 25.33%)',
|
|
58
|
+
'750': 'hsl(348.45, 96%, 19.02%)',
|
|
59
|
+
'800': 'hsl(351.18, 100%, 13.33%)',
|
|
60
|
+
'850': 'hsl(352.99, 100%, 9.85%)',
|
|
61
|
+
'900': 'hsl(354.47, 100%, 6.66%)',
|
|
62
|
+
'950': 'hsl(355.5, 100%, 3.76%)',
|
|
63
|
+
}
|
|
64
|
+
export const info = {
|
|
65
|
+
'50': 'hsl(217.99, 45.88%, 94%)',
|
|
66
|
+
'100': 'hsl(218, 37.47%, 87.77%)',
|
|
67
|
+
'150': 'hsl(218.02, 34.49%, 81.6%)',
|
|
68
|
+
'200': 'hsl(218.05, 32.8%, 75.49%)',
|
|
69
|
+
'250': 'hsl(218.29, 34.23%, 69.31%)',
|
|
70
|
+
'300': 'hsl(218.57, 34.87%, 63.2%)',
|
|
71
|
+
'350': 'hsl(218.9, 35.05%, 57.15%)',
|
|
72
|
+
'400': 'hsl(219.31, 34.94%, 51.18%)',
|
|
73
|
+
'450': 'hsl(219.41, 37.55%, 48.13%)',
|
|
74
|
+
'500': 'hsl(219.52, 42.28%, 45.1%)',
|
|
75
|
+
'550': 'hsl(219.66, 47.62%, 42.06%)',
|
|
76
|
+
'600': 'hsl(219.81, 53.77%, 39.02%)',
|
|
77
|
+
'650': 'hsl(219.87, 56.39%, 31.92%)',
|
|
78
|
+
'700': 'hsl(219.93, 60.27%, 25.07%)',
|
|
79
|
+
'750': 'hsl(220.02, 66.59%, 18.51%)',
|
|
80
|
+
'800': 'hsl(220.41, 77.78%, 12.35%)',
|
|
81
|
+
'850': 'hsl(222.21, 84%, 8.9%)',
|
|
82
|
+
'900': 'hsl(226.63, 89.54%, 5.83%)',
|
|
83
|
+
'950': 'hsl(230.65, 94.13%, 3.12%)',
|
|
84
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
export const success = {
|
|
2
|
+
'50': 'oklch(0.9720355476100955 0.01978729853872853 142.11752406542539)',
|
|
3
|
+
'100': 'oklch(0.944071095220191 0.03348619752707904 142.11752406542539)',
|
|
4
|
+
'150': 'oklch(0.9161066428302864 0.04718509651542956 142.11752406542539)',
|
|
5
|
+
'200': 'oklch(0.8881421904403819 0.06088399550378008 142.11752406542539)',
|
|
6
|
+
'250': 'oklch(0.8312289461835737 0.0814134964867239 142.2964842668701)',
|
|
7
|
+
'300': 'oklch(0.7743157019267655 0.10194299746966773 142.47544446831483)',
|
|
8
|
+
'350': 'oklch(0.7174024576699572 0.12247249845261154 142.65440466975954)',
|
|
9
|
+
'400': 'oklch(0.660489213413149 0.14300199943555536 142.83336487120425)',
|
|
10
|
+
'450': 'oklch(0.6326270919832794 0.153487552492673 142.8252122365381)',
|
|
11
|
+
'500': 'oklch(0.6047649705534097 0.16397310554979067 142.81705960187193)',
|
|
12
|
+
'550': 'oklch(0.57690284912354 0.17445865860690835 142.80890696720576)',
|
|
13
|
+
'600': 'oklch(0.5490407276936703 0.184944211664026 142.8007543325396)',
|
|
14
|
+
'650': 'oklch(0.4778879989458421 0.16120283434453703 142.72440047135717)',
|
|
15
|
+
'700': 'oklch(0.40673527019801387 0.13746145702504803 142.64804661017473)',
|
|
16
|
+
'750': 'oklch(0.3355825414501856 0.11372007970555903 142.57169274899232)',
|
|
17
|
+
'800': 'oklch(0.26442981270235744 0.08997870238607004 142.49533888780988)',
|
|
18
|
+
'850': 'oklch(0.21815459547944488 0.07648189702815954 142.49533888780988)',
|
|
19
|
+
'900': 'oklch(0.17187937825653232 0.06298509167024903 142.49533888780988)',
|
|
20
|
+
'950': 'oklch(0.12560416103361977 0.04948828631233853 142.49533888780988)',
|
|
21
|
+
}
|
|
22
|
+
export const warning = {
|
|
23
|
+
'50': 'oklch(0.9739777778864123 0.017695077274685146 43.9454781334139)',
|
|
24
|
+
'100': 'oklch(0.9479555557728245 0.029945515387928705 43.9454781334139)',
|
|
25
|
+
'150': 'oklch(0.9219333336592369 0.042195953501172265 43.9454781334139)',
|
|
26
|
+
'200': 'oklch(0.8959111115456492 0.05444639161441583 43.9454781334139)',
|
|
27
|
+
'250': 'oklch(0.8436567377995562 0.07383969866253859 43.88732593200177)',
|
|
28
|
+
'300': 'oklch(0.7914023640534633 0.09323300571066136 43.829173730589645)',
|
|
29
|
+
'350': 'oklch(0.7391479903073703 0.11262631275878413 43.77102152917751)',
|
|
30
|
+
'400': 'oklch(0.6868936165612773 0.13201961980690688 43.71286932776538)',
|
|
31
|
+
'450': 'oklch(0.6610028202949751 0.14144095719007027 43.78396833320002)',
|
|
32
|
+
'500': 'oklch(0.635112024028673 0.15086229457323366 43.85506733863466)',
|
|
33
|
+
'550': 'oklch(0.6092212277623706 0.16028363195639705 43.9261663440693)',
|
|
34
|
+
'600': 'oklch(0.5833304314960684 0.16970496933956045 43.99726534950394)',
|
|
35
|
+
'650': 'oklch(0.507009085738871 0.149901753081645 42.56483564766481)',
|
|
36
|
+
'700': 'oklch(0.43068773998167365 0.13009853682372957 41.13240594582567)',
|
|
37
|
+
'750': 'oklch(0.3543663942244763 0.11029532056581412 39.69997624398653)',
|
|
38
|
+
'800': 'oklch(0.2780450484672789 0.09049210430789867 38.26754654214739)',
|
|
39
|
+
'850': 'oklch(0.2293871649855051 0.07691828866171387 38.26754654214739)',
|
|
40
|
+
'900': 'oklch(0.1807292815037313 0.06334447301552906 38.26754654214739)',
|
|
41
|
+
'950': 'oklch(0.13207139802195747 0.04977065736934427 38.26754654214739)',
|
|
42
|
+
}
|
|
43
|
+
export const danger = {
|
|
44
|
+
'50': 'oklch(0.9688081012787089 0.02046893571008903 18.42817489942577)',
|
|
45
|
+
'100': 'oklch(0.9376162025574177 0.034639737355535286 18.42817489942577)',
|
|
46
|
+
'150': 'oklch(0.9064243038361265 0.048810539000981534 18.42817489942577)',
|
|
47
|
+
'200': 'oklch(0.8752324051148354 0.06298134064642778 18.42817489942577)',
|
|
48
|
+
'250': 'oklch(0.8133068732197568 0.08452871651344564 18.398482771634782)',
|
|
49
|
+
'300': 'oklch(0.7513813413246784 0.1060760923804635 18.368790643843795)',
|
|
50
|
+
'350': 'oklch(0.6894558094295998 0.12762346824748136 18.339098516052807)',
|
|
51
|
+
'400': 'oklch(0.6275302775345213 0.1491708441144992 18.30940638826182)',
|
|
52
|
+
'450': 'oklch(0.5961466901234453 0.1600594003984286 18.251840020312933)',
|
|
53
|
+
'500': 'oklch(0.5647631027123693 0.17094795668235796 18.194273652364046)',
|
|
54
|
+
'550': 'oklch(0.5333795153012932 0.1818365129662873 18.13670728441516)',
|
|
55
|
+
'600': 'oklch(0.5019959278902173 0.19272506925021668 18.079140916466272)',
|
|
56
|
+
'650': 'oklch(0.43761291207168196 0.16911051005163913 18.72632727121819)',
|
|
57
|
+
'700': 'oklch(0.3732298962531466 0.1454959508530616 19.3735136259701)',
|
|
58
|
+
'750': 'oklch(0.30884688043461134 0.12188139165448407 20.020699980722014)',
|
|
59
|
+
'800': 'oklch(0.244463864616076 0.09826683245590653 20.66788633547393)',
|
|
60
|
+
'850': 'oklch(0.2016826883082627 0.08352680758752055 20.66788633547393)',
|
|
61
|
+
'900': 'oklch(0.15890151200044939 0.06878678271913458 20.66788633547393)',
|
|
62
|
+
'950': 'oklch(0.1161203356926361 0.0540467578507486 20.66788633547393)',
|
|
63
|
+
}
|
|
64
|
+
export const info = {
|
|
65
|
+
'50': 'oklch(0.9472470414070251 0.01319114316017373 261.49146551846417)',
|
|
66
|
+
'100': 'oklch(0.8944940828140502 0.02232347304029401 261.49146551846417)',
|
|
67
|
+
'150': 'oklch(0.8417411242210754 0.03145580292041429 261.49146551846417)',
|
|
68
|
+
'200': 'oklch(0.7889881656281005 0.04058813280053457 261.49146551846417)',
|
|
69
|
+
'250': 'oklch(0.7327975333484203 0.05432284288357939 261.7505460408388)',
|
|
70
|
+
'300': 'oklch(0.6766069010687401 0.06805755296662422 262.0096265632134)',
|
|
71
|
+
'350': 'oklch(0.62041626878906 0.08179226304966905 262.268707085588)',
|
|
72
|
+
'400': 'oklch(0.5642256365093798 0.09552697313271387 262.52778760796264)',
|
|
73
|
+
'450': 'oklch(0.5358247299257868 0.10246599429811404 262.4837143651888)',
|
|
74
|
+
'500': 'oklch(0.5074238233421937 0.10940501546351422 262.4396411224149)',
|
|
75
|
+
'550': 'oklch(0.47902291675860065 0.1163440366289144 262.395567879641)',
|
|
76
|
+
'600': 'oklch(0.4506220101750076 0.12328305779431457 262.3514946368672)',
|
|
77
|
+
'650': 'oklch(0.3914472612047992 0.10948475002303204 262.3659717757216)',
|
|
78
|
+
'700': 'oklch(0.33227251223459087 0.09568644225174952 262.3804489145761)',
|
|
79
|
+
'750': 'oklch(0.2730977632643825 0.08188813448046699 262.3949260534306)',
|
|
80
|
+
'800': 'oklch(0.21392301429417415 0.06808982670918445 262.409403192285)',
|
|
81
|
+
'850': 'oklch(0.1764864867926937 0.057876352702806784 262.409403192285)',
|
|
82
|
+
'900': 'oklch(0.13904995929121322 0.047662878696429115 262.409403192285)',
|
|
83
|
+
'950': 'oklch(0.10161343178973273 0.03744940469005145 262.409403192285)',
|
|
84
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
export const success = {
|
|
2
|
+
'50': 'rgb(239, 249, 237)',
|
|
3
|
+
'100': 'rgb(224, 243, 222)',
|
|
4
|
+
'150': 'rgb(210, 236, 207)',
|
|
5
|
+
'200': 'rgb(196, 229, 192)',
|
|
6
|
+
'250': 'rgb(170, 214, 165)',
|
|
7
|
+
'300': 'rgb(143, 199, 138)',
|
|
8
|
+
'350': 'rgb(116, 183, 111)',
|
|
9
|
+
'400': 'rgb(88, 168, 84)',
|
|
10
|
+
'450': 'rgb(73, 161, 70)',
|
|
11
|
+
'500': 'rgb(57, 153, 54)',
|
|
12
|
+
'550': 'rgb(37, 146, 36)',
|
|
13
|
+
'600': 'rgb(0, 138, 7)',
|
|
14
|
+
'650': 'rgb(0, 114, 4)',
|
|
15
|
+
'700': 'rgb(0, 90, 2)',
|
|
16
|
+
'750': 'rgb(0, 68, 1)',
|
|
17
|
+
'800': 'rgb(0, 47, 0)',
|
|
18
|
+
'850': 'rgb(0, 34, 0)',
|
|
19
|
+
'900': 'rgb(0, 22, 0)',
|
|
20
|
+
'950': 'rgb(0, 11, 0)',
|
|
21
|
+
}
|
|
22
|
+
export const warning = {
|
|
23
|
+
'50': 'rgb(255, 243, 237)',
|
|
24
|
+
'100': 'rgb(255, 232, 222)',
|
|
25
|
+
'150': 'rgb(255, 221, 207)',
|
|
26
|
+
'200': 'rgb(253, 210, 192)',
|
|
27
|
+
'250': 'rgb(246, 189, 165)',
|
|
28
|
+
'300': 'rgb(238, 168, 138)',
|
|
29
|
+
'350': 'rgb(230, 147, 111)',
|
|
30
|
+
'400': 'rgb(221, 125, 83)',
|
|
31
|
+
'450': 'rgb(216, 114, 68)',
|
|
32
|
+
'500': 'rgb(211, 103, 52)',
|
|
33
|
+
'550': 'rgb(206, 92, 33)',
|
|
34
|
+
'600': 'rgb(201, 80, 0)',
|
|
35
|
+
'650': 'rgb(168, 63, 3)',
|
|
36
|
+
'700': 'rgb(136, 47, 3)',
|
|
37
|
+
'750': 'rgb(105, 32, 1)',
|
|
38
|
+
'800': 'rgb(75, 18, 0)',
|
|
39
|
+
'850': 'rgb(57, 10, 0)',
|
|
40
|
+
'900': 'rgb(39, 4, 0)',
|
|
41
|
+
'950': 'rgb(23, 1, 0)',
|
|
42
|
+
}
|
|
43
|
+
export const danger = {
|
|
44
|
+
'50': 'rgb(255, 240, 239)',
|
|
45
|
+
'100': 'rgb(255, 226, 225)',
|
|
46
|
+
'150': 'rgb(255, 212, 212)',
|
|
47
|
+
'200': 'rgb(253, 198, 198)',
|
|
48
|
+
'250': 'rgb(244, 172, 173)',
|
|
49
|
+
'300': 'rgb(234, 146, 148)',
|
|
50
|
+
'350': 'rgb(223, 120, 124)',
|
|
51
|
+
'400': 'rgb(211, 93, 101)',
|
|
52
|
+
'450': 'rgb(205, 78, 89)',
|
|
53
|
+
'500': 'rgb(198, 63, 78)',
|
|
54
|
+
'550': 'rgb(191, 44, 66)',
|
|
55
|
+
'600': 'rgb(184, 18, 55)',
|
|
56
|
+
'650': 'rgb(153, 11, 42)',
|
|
57
|
+
'700': 'rgb(124, 6, 31)',
|
|
58
|
+
'750': 'rgb(95, 2, 20)',
|
|
59
|
+
'800': 'rgb(68, 0, 10)',
|
|
60
|
+
'850': 'rgb(51, 0, 5)',
|
|
61
|
+
'900': 'rgb(35, 0, 2)',
|
|
62
|
+
'950': 'rgb(20, 0, 1)',
|
|
63
|
+
}
|
|
64
|
+
export const info = {
|
|
65
|
+
'50': 'rgb(233, 238, 247)',
|
|
66
|
+
'100': 'rgb(212, 221, 235)',
|
|
67
|
+
'150': 'rgb(192, 204, 224)',
|
|
68
|
+
'200': 'rgb(172, 187, 213)',
|
|
69
|
+
'250': 'rgb(150, 169, 204)',
|
|
70
|
+
'300': 'rgb(128, 152, 194)',
|
|
71
|
+
'350': 'rgb(107, 134, 184)',
|
|
72
|
+
'400': 'rgb(87, 117, 174)',
|
|
73
|
+
'450': 'rgb(77, 108, 169)',
|
|
74
|
+
'500': 'rgb(66, 100, 164)',
|
|
75
|
+
'550': 'rgb(56, 91, 158)',
|
|
76
|
+
'600': 'rgb(46, 82, 153)',
|
|
77
|
+
'650': 'rgb(35, 66, 127)',
|
|
78
|
+
'700': 'rgb(25, 51, 102)',
|
|
79
|
+
'750': 'rgb(16, 37, 79)',
|
|
80
|
+
'800': 'rgb(7, 23, 56)',
|
|
81
|
+
'850': 'rgb(4, 15, 42)',
|
|
82
|
+
'900': 'rgb(2, 7, 28)',
|
|
83
|
+
'950': 'rgb(0, 3, 15)',
|
|
84
|
+
}
|
|
@@ -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: '#26aeff',
|
|
22
|
-
light: '#008fff',
|
|
23
|
-
DEFAULT: '#146cfd',
|
|
24
|
-
dark: '#0c5ad4',
|
|
25
|
-
darker: '#0548ad',
|
|
26
|
-
darkest: '#023688',
|
|
2
|
+
'50': '#f0fbff',
|
|
3
|
+
'100': '#e4f6ff',
|
|
4
|
+
'150': '#d7f2fe',
|
|
5
|
+
'200': '#cbedfd',
|
|
6
|
+
'250': '#bceafe',
|
|
7
|
+
'300': '#ade7ff',
|
|
8
|
+
'350': '#9de3ff',
|
|
9
|
+
'400': '#8ce0ff',
|
|
10
|
+
'450': '#5ac9ff',
|
|
11
|
+
'500': '#26aeff',
|
|
12
|
+
'550': '#008fff',
|
|
13
|
+
'600': '#146cfd',
|
|
14
|
+
'650': '#0c5ad4',
|
|
15
|
+
'700': '#0548ad',
|
|
16
|
+
'750': '#023688',
|
|
17
|
+
'800': '#002664',
|
|
18
|
+
'850': '#001a4d',
|
|
19
|
+
'900': '#001037',
|
|
20
|
+
'950': '#000622',
|
|
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: '#203d77',
|
|
70
|
-
darker: '#132956',
|
|
71
|
-
darkest: '#071738',
|
|
23
|
+
'50': '#fff8f9',
|
|
24
|
+
'100': '#fff2f4',
|
|
25
|
+
'150': '#ffecef',
|
|
26
|
+
'200': '#ffe6ea',
|
|
27
|
+
'250': '#ffdbe0',
|
|
28
|
+
'300': '#ffcfd6',
|
|
29
|
+
'350': '#ffc4cc',
|
|
30
|
+
'400': '#ffb8c1',
|
|
31
|
+
'450': '#f897a2',
|
|
32
|
+
'500': '#ef7581',
|
|
33
|
+
'550': '#e44f5f',
|
|
34
|
+
'600': '#d7153a',
|
|
35
|
+
'650': '#b90e32',
|
|
36
|
+
'700': '#9b072a',
|
|
37
|
+
'750': '#7e0322',
|
|
38
|
+
'800': '#630019',
|
|
39
|
+
'850': '#4c0010',
|
|
40
|
+
'900': '#360008',
|
|
41
|
+
'950': '#210003',
|
|
42
|
+
}
|
|
43
|
+
export const grey = {
|
|
44
|
+
'50': '#fafafa',
|
|
45
|
+
'100': '#f5f5f5',
|
|
46
|
+
'150': '#f0f0f0',
|
|
47
|
+
'200': '#ebebeb',
|
|
48
|
+
'250': '#e3e5e6',
|
|
49
|
+
'300': '#dcdfe0',
|
|
50
|
+
'350': '#d4d9db',
|
|
51
|
+
'400': '#cdd3d6',
|
|
52
|
+
'450': '#aab0b4',
|
|
53
|
+
'500': '#888f92',
|
|
54
|
+
'550': '#686f72',
|
|
55
|
+
'600': '#495054',
|
|
56
|
+
'650': '#3f4549',
|
|
57
|
+
'700': '#353b3f',
|
|
58
|
+
'750': '#2b3135',
|
|
59
|
+
'800': '#22272b',
|
|
60
|
+
'850': '#181c1f',
|
|
61
|
+
'900': '#0e1113',
|
|
62
|
+
'950': '#050709',
|
|
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: 'hsl(202.52, 100%, 57.55%)',
|
|
22
|
-
light: 'hsl(204.76, 100%, 46.97%)',
|
|
23
|
-
DEFAULT: 'hsl(217.34, 98.31%, 53.53%)',
|
|
24
|
-
dark: 'hsl(216.77, 89.43%, 43.98%)',
|
|
25
|
-
darker: 'hsl(216.29, 94.14%, 35%)',
|
|
26
|
-
darkest: 'hsl(216.37, 97.67%, 26.93%)',
|
|
2
|
+
'50': 'hsl(199.45, 100%, 97.34%)',
|
|
3
|
+
'100': 'hsl(199.38, 100%, 94.73%)',
|
|
4
|
+
'150': 'hsl(199.3, 95.85%, 92.09%)',
|
|
5
|
+
'200': 'hsl(199.2, 92.59%, 89.41%)',
|
|
6
|
+
'250': 'hsl(198.5, 96.87%, 86.75%)',
|
|
7
|
+
'300': 'hsl(197.76, 98.99%, 83.89%)',
|
|
8
|
+
'350': 'hsl(197, 99.87%, 80.82%)',
|
|
9
|
+
'400': 'hsl(196.17, 100%, 77.45%)',
|
|
10
|
+
'450': 'hsl(199.74, 99.83%, 67.57%)',
|
|
11
|
+
'500': 'hsl(202.52, 100%, 57.55%)',
|
|
12
|
+
'550': 'hsl(204.76, 100%, 46.97%)',
|
|
13
|
+
'600': 'hsl(217.34, 98.31%, 53.53%)',
|
|
14
|
+
'650': 'hsl(216.77, 89.43%, 43.98%)',
|
|
15
|
+
'700': 'hsl(216.29, 94.14%, 35%)',
|
|
16
|
+
'750': 'hsl(216.37, 97.67%, 26.93%)',
|
|
17
|
+
'800': 'hsl(217.2, 100%, 19.61%)',
|
|
18
|
+
'850': 'hsl(218.95, 100%, 14.93%)',
|
|
19
|
+
'900': 'hsl(222.31, 100%, 10.59%)',
|
|
20
|
+
'950': 'hsl(228.65, 100%, 6.6%)',
|
|
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: 'hsl(219.87, 57.48%, 29.6%)',
|
|
70
|
-
darker: 'hsl(219.94, 64.01%, 20.66%)',
|
|
71
|
-
darkest: 'hsl(220.32, 77.61%, 12.34%)',
|
|
23
|
+
'50': 'hsl(350.85, 100%, 98.97%)',
|
|
24
|
+
'100': 'hsl(350.7, 100%, 97.7%)',
|
|
25
|
+
'150': 'hsl(350.55, 100%, 96.41%)',
|
|
26
|
+
'200': 'hsl(350.4, 100%, 95.1%)',
|
|
27
|
+
'250': 'hsl(350.92, 100%, 92.94%)',
|
|
28
|
+
'300': 'hsl(351.43, 100%, 90.72%)',
|
|
29
|
+
'350': 'hsl(351.92, 100%, 88.44%)',
|
|
30
|
+
'400': 'hsl(352.39, 100%, 86.08%)',
|
|
31
|
+
'450': 'hsl(353.39, 86.96%, 78.18%)',
|
|
32
|
+
'500': 'hsl(353.95, 78.84%, 69.69%)',
|
|
33
|
+
'550': 'hsl(353.52, 73.17%, 60.13%)',
|
|
34
|
+
'600': 'hsl(348.56, 82.2%, 46.27%)',
|
|
35
|
+
'650': 'hsl(347.26, 85.91%, 38.92%)',
|
|
36
|
+
'700': 'hsl(345.89, 91%, 31.81%)',
|
|
37
|
+
'750': 'hsl(345, 95.87%, 25.31%)',
|
|
38
|
+
'800': 'hsl(344.85, 100%, 19.41%)',
|
|
39
|
+
'850': 'hsl(346.11, 100%, 14.46%)',
|
|
40
|
+
'900': 'hsl(349.15, 100%, 10.03%)',
|
|
41
|
+
'950': 'hsl(352.16, 100%, 6.06%)',
|
|
42
|
+
}
|
|
43
|
+
export const grey = {
|
|
44
|
+
'50': 'hsl(223.81, 0%, 98.03%)',
|
|
45
|
+
'100': 'hsl(223.81, 0%, 96.06%)',
|
|
46
|
+
'150': 'hsl(223.81, 0%, 94.11%)',
|
|
47
|
+
'200': 'hsl(223.81, 0%, 92.16%)',
|
|
48
|
+
'250': 'hsl(200.05, 4.31%, 89.64%)',
|
|
49
|
+
'300': 'hsl(200.03, 6.92%, 87.13%)',
|
|
50
|
+
'350': 'hsl(200.02, 8.65%, 84.64%)',
|
|
51
|
+
'400': 'hsl(200, 9.89%, 82.16%)',
|
|
52
|
+
'450': 'hsl(200.47, 6.03%, 68.52%)',
|
|
53
|
+
'500': 'hsl(200.94, 4.51%, 55.36%)',
|
|
54
|
+
'550': 'hsl(201.39, 4.91%, 42.76%)',
|
|
55
|
+
'600': 'hsl(201.82, 7.01%, 30.78%)',
|
|
56
|
+
'650': 'hsl(203.03, 7.74%, 26.71%)',
|
|
57
|
+
'700': 'hsl(204.24, 8.68%, 22.73%)',
|
|
58
|
+
'750': 'hsl(205.45, 9.93%, 18.85%)',
|
|
59
|
+
'800': 'hsl(206.67, 11.69%, 15.1%)',
|
|
60
|
+
'850': 'hsl(206.66, 13.37%, 10.7%)',
|
|
61
|
+
'900': 'hsl(206.64, 17.01%, 6.52%)',
|
|
62
|
+
'950': 'hsl(208.68, 23.47%, 2.8%)',
|
|
72
63
|
}
|