@nswds/tokens 3.0.1 → 3.1.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/breakpoints/global.css +7 -0
- package/dist/css/colors/semantic/hex.css +76 -76
- package/dist/css/colors/semantic/hsl.css +76 -76
- package/dist/css/colors/semantic/oklch.css +76 -76
- package/dist/css/colors/semantic/rgb.css +76 -76
- package/dist/css/colors/themes/masterbrand/hex.css +57 -57
- package/dist/css/colors/themes/masterbrand/hsl.css +57 -57
- package/dist/css/colors/themes/masterbrand/oklch.css +57 -57
- package/dist/css/colors/themes/masterbrand/rgb.css +57 -57
- package/dist/css/radius/global.css +7 -0
- package/dist/css/space/global.css +14 -0
- package/dist/index.cjs +815 -31
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +263 -0
- package/dist/index.d.ts +263 -0
- package/dist/index.js +815 -31
- package/dist/index.js.map +1 -1
- package/dist/js/breakpoints/global.js +7 -0
- package/dist/js/radius/global.js +7 -0
- package/dist/js/space/global.js +14 -0
- package/dist/json/breakpoints/global.json +9 -0
- package/dist/json/radius/global.json +9 -0
- package/dist/json/space/global.json +16 -0
- package/dist/less/breakpoints/global.less +5 -0
- package/dist/less/colors/semantic/hex.less +76 -76
- package/dist/less/colors/semantic/hsl.less +76 -76
- package/dist/less/colors/semantic/oklch.less +76 -76
- package/dist/less/colors/semantic/rgb.less +76 -76
- package/dist/less/colors/themes/masterbrand/hex.less +57 -57
- package/dist/less/colors/themes/masterbrand/hsl.less +57 -57
- package/dist/less/colors/themes/masterbrand/oklch.less +57 -57
- package/dist/less/colors/themes/masterbrand/rgb.less +57 -57
- package/dist/less/radius/global.less +5 -0
- package/dist/less/space/global.less +12 -0
- package/dist/scss/breakpoints/global.scss +5 -0
- package/dist/scss/colors/semantic/hex.scss +76 -76
- package/dist/scss/colors/semantic/hsl.scss +76 -76
- package/dist/scss/colors/semantic/oklch.scss +76 -76
- package/dist/scss/colors/semantic/rgb.scss +76 -76
- package/dist/scss/colors/themes/masterbrand/hex.scss +57 -57
- package/dist/scss/colors/themes/masterbrand/hsl.scss +57 -57
- package/dist/scss/colors/themes/masterbrand/oklch.scss +57 -57
- package/dist/scss/colors/themes/masterbrand/rgb.scss +57 -57
- package/dist/scss/radius/global.scss +5 -0
- package/dist/scss/space/global.scss +12 -0
- package/dist/tailwind/breakpoints/global.css +7 -0
- package/dist/tailwind/radius/global.css +7 -0
- package/dist/tailwind/space/global.css +14 -0
- package/dist/tokens/breakpoints.base.json +44 -0
- package/dist/tokens/global/breakpoints/canonical.json +44 -0
- package/dist/tokens/global/radius/canonical.json +44 -0
- package/dist/tokens/global/space/canonical.json +100 -0
- package/dist/tokens/radius.base.json +44 -0
- package/dist/tokens/semantic/color/canonical.json +76 -0
- package/dist/tokens/semantic/color/hex.json +76 -0
- package/dist/tokens/semantic/color/hsl.json +76 -0
- package/dist/tokens/semantic/color/oklch.json +76 -0
- package/dist/tokens/semantic/color/rgb.json +76 -0
- package/dist/tokens/space.base.json +100 -0
- package/dist/tokens/themes/color/masterbrand/canonical.json +57 -0
- package/dist/tokens/themes/color/masterbrand/hex.json +57 -0
- package/dist/tokens/themes/color/masterbrand/hsl.json +57 -0
- package/dist/tokens/themes/color/masterbrand/oklch.json +57 -0
- package/dist/tokens/themes/color/masterbrand/rgb.json +57 -0
- package/dist/ts/breakpoints/global.ts +7 -0
- package/dist/ts/radius/global.ts +7 -0
- package/dist/ts/space/global.ts +14 -0
- package/package.json +1 -1
|
@@ -1,78 +1,78 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
--success-50: rgb(239, 249, 237);
|
|
3
|
-
--success-100: rgb(224, 243, 222);
|
|
4
|
-
--success-150: rgb(210, 236, 207);
|
|
5
|
-
--success-200: rgb(196, 229, 192);
|
|
6
|
-
--success-250: rgb(170, 214, 165);
|
|
7
|
-
--success-300: rgb(143, 199, 138);
|
|
8
|
-
--success-350: rgb(116, 183, 111);
|
|
9
|
-
--success-400: rgb(88, 168, 84);
|
|
10
|
-
--success-450: rgb(73, 161, 70);
|
|
11
|
-
--success-500: rgb(57, 153, 54);
|
|
12
|
-
--success-550: rgb(37, 146, 36);
|
|
13
|
-
--success-600: rgb(0, 138, 7);
|
|
14
|
-
--success-650: rgb(0, 114, 4);
|
|
15
|
-
--success-700: rgb(0, 90, 2);
|
|
16
|
-
--success-750: rgb(0, 68, 1);
|
|
17
|
-
--success-800: rgb(0, 47, 0);
|
|
18
|
-
--success-850: rgb(0, 34, 0);
|
|
19
|
-
--success-900: rgb(0, 22, 0);
|
|
20
|
-
--success-950: rgb(0, 11, 0);
|
|
21
|
-
--warning-50: rgb(255, 243, 237);
|
|
22
|
-
--warning-100: rgb(255, 232, 222);
|
|
23
|
-
--warning-150: rgb(255, 221, 207);
|
|
24
|
-
--warning-200: rgb(253, 210, 192);
|
|
25
|
-
--warning-250: rgb(246, 189, 165);
|
|
26
|
-
--warning-300: rgb(238, 168, 138);
|
|
27
|
-
--warning-350: rgb(230, 147, 111);
|
|
28
|
-
--warning-400: rgb(221, 125, 83);
|
|
29
|
-
--warning-450: rgb(216, 114, 68);
|
|
30
|
-
--warning-500: rgb(211, 103, 52);
|
|
31
|
-
--warning-550: rgb(206, 92, 33);
|
|
32
|
-
--warning-600: rgb(201, 80, 0);
|
|
33
|
-
--warning-650: rgb(168, 63, 3);
|
|
34
|
-
--warning-700: rgb(136, 47, 3);
|
|
35
|
-
--warning-750: rgb(105, 32, 1);
|
|
36
|
-
--warning-800: rgb(75, 18, 0);
|
|
37
|
-
--warning-850: rgb(57, 10, 0);
|
|
38
|
-
--warning-900: rgb(39, 4, 0);
|
|
39
|
-
--warning-950: rgb(23, 1, 0);
|
|
40
|
-
--danger-50: rgb(255, 240, 239);
|
|
41
|
-
--danger-100: rgb(255, 226, 225);
|
|
42
|
-
--danger-150: rgb(255, 212, 212);
|
|
43
|
-
--danger-200: rgb(253, 198, 198);
|
|
44
|
-
--danger-250: rgb(244, 172, 173);
|
|
45
|
-
--danger-300: rgb(234, 146, 148);
|
|
46
|
-
--danger-350: rgb(223, 120, 124);
|
|
47
|
-
--danger-400: rgb(211, 93, 101);
|
|
48
|
-
--danger-450: rgb(205, 78, 89);
|
|
49
|
-
--danger-500: rgb(198, 63, 78);
|
|
50
|
-
--danger-550: rgb(191, 44, 66);
|
|
51
|
-
--danger-600: rgb(184, 18, 55);
|
|
52
|
-
--danger-650: rgb(153, 11, 42);
|
|
53
|
-
--danger-700: rgb(124, 6, 31);
|
|
54
|
-
--danger-750: rgb(95, 2, 20);
|
|
55
|
-
--danger-800: rgb(68, 0, 10);
|
|
56
|
-
--danger-850: rgb(51, 0, 5);
|
|
57
|
-
--danger-900: rgb(35, 0, 2);
|
|
58
|
-
--danger-950: rgb(20, 0, 1);
|
|
59
|
-
--info-50: rgb(233, 238, 247);
|
|
60
|
-
--info-100: rgb(212, 221, 235);
|
|
61
|
-
--info-150: rgb(192, 204, 224);
|
|
62
|
-
--info-200: rgb(172, 187, 213);
|
|
63
|
-
--info-250: rgb(150, 169, 204);
|
|
64
|
-
--info-300: rgb(128, 152, 194);
|
|
65
|
-
--info-350: rgb(107, 134, 184);
|
|
66
|
-
--info-400: rgb(87, 117, 174);
|
|
67
|
-
--info-450: rgb(77, 108, 169);
|
|
68
|
-
--info-500: rgb(66, 100, 164);
|
|
69
|
-
--info-550: rgb(56, 91, 158);
|
|
70
|
-
--info-600: rgb(46, 82, 153);
|
|
71
|
-
--info-650: rgb(35, 66, 127);
|
|
72
|
-
--info-700: rgb(25, 51, 102);
|
|
73
|
-
--info-750: rgb(16, 37, 79);
|
|
74
|
-
--info-800: rgb(7, 23, 56);
|
|
75
|
-
--info-850: rgb(4, 15, 42);
|
|
76
|
-
--info-900: rgb(2, 7, 28);
|
|
77
|
-
--info-950: rgb(0, 3, 15);
|
|
2
|
+
--success-50: rgb(239, 249, 237); /** Success state — positive outcomes, confirmations, and completed actions. Step 50: lightest tints for subtle backgrounds and surfaces. */
|
|
3
|
+
--success-100: rgb(224, 243, 222); /** Success state — positive outcomes, confirmations, and completed actions. Step 100: lightest tints for subtle backgrounds and surfaces. */
|
|
4
|
+
--success-150: rgb(210, 236, 207); /** Success state — positive outcomes, confirmations, and completed actions. Step 150: lightest tints for subtle backgrounds and surfaces. */
|
|
5
|
+
--success-200: rgb(196, 229, 192); /** Success state — positive outcomes, confirmations, and completed actions. Step 200: lightest tints for subtle backgrounds and surfaces. */
|
|
6
|
+
--success-250: rgb(170, 214, 165); /** Success state — positive outcomes, confirmations, and completed actions. Step 250: lightest tints for subtle backgrounds and surfaces. */
|
|
7
|
+
--success-300: rgb(143, 199, 138); /** Success state — positive outcomes, confirmations, and completed actions. Step 300: light tints. */
|
|
8
|
+
--success-350: rgb(116, 183, 111); /** Success state — positive outcomes, confirmations, and completed actions. Step 350: light tints. */
|
|
9
|
+
--success-400: rgb(88, 168, 84); /** Success state — positive outcomes, confirmations, and completed actions. Step 400: light tints. */
|
|
10
|
+
--success-450: rgb(73, 161, 70); /** Success state — positive outcomes, confirmations, and completed actions. Step 450: light tints. */
|
|
11
|
+
--success-500: rgb(57, 153, 54); /** Success state — positive outcomes, confirmations, and completed actions. Step 500: base colour. */
|
|
12
|
+
--success-550: rgb(37, 146, 36); /** Success state — positive outcomes, confirmations, and completed actions. Step 550: shades for borders and icons. */
|
|
13
|
+
--success-600: rgb(0, 138, 7); /** Success state — positive outcomes, confirmations, and completed actions. Step 600: shades for borders and icons. */
|
|
14
|
+
--success-650: rgb(0, 114, 4); /** Success state — positive outcomes, confirmations, and completed actions. Step 650: shades for borders and icons. */
|
|
15
|
+
--success-700: rgb(0, 90, 2); /** Success state — positive outcomes, confirmations, and completed actions. Step 700: shades for borders and icons. */
|
|
16
|
+
--success-750: rgb(0, 68, 1); /** Success state — positive outcomes, confirmations, and completed actions. Step 750: darkest shades for text and high emphasis. */
|
|
17
|
+
--success-800: rgb(0, 47, 0); /** Success state — positive outcomes, confirmations, and completed actions. Step 800: darkest shades for text and high emphasis. */
|
|
18
|
+
--success-850: rgb(0, 34, 0); /** Success state — positive outcomes, confirmations, and completed actions. Step 850: darkest shades for text and high emphasis. */
|
|
19
|
+
--success-900: rgb(0, 22, 0); /** Success state — positive outcomes, confirmations, and completed actions. Step 900: darkest shades for text and high emphasis. */
|
|
20
|
+
--success-950: rgb(0, 11, 0); /** Success state — positive outcomes, confirmations, and completed actions. Step 950: darkest shades for text and high emphasis. */
|
|
21
|
+
--warning-50: rgb(255, 243, 237); /** Warning state — caution and actions that need attention. Step 50: lightest tints for subtle backgrounds and surfaces. */
|
|
22
|
+
--warning-100: rgb(255, 232, 222); /** Warning state — caution and actions that need attention. Step 100: lightest tints for subtle backgrounds and surfaces. */
|
|
23
|
+
--warning-150: rgb(255, 221, 207); /** Warning state — caution and actions that need attention. Step 150: lightest tints for subtle backgrounds and surfaces. */
|
|
24
|
+
--warning-200: rgb(253, 210, 192); /** Warning state — caution and actions that need attention. Step 200: lightest tints for subtle backgrounds and surfaces. */
|
|
25
|
+
--warning-250: rgb(246, 189, 165); /** Warning state — caution and actions that need attention. Step 250: lightest tints for subtle backgrounds and surfaces. */
|
|
26
|
+
--warning-300: rgb(238, 168, 138); /** Warning state — caution and actions that need attention. Step 300: light tints. */
|
|
27
|
+
--warning-350: rgb(230, 147, 111); /** Warning state — caution and actions that need attention. Step 350: light tints. */
|
|
28
|
+
--warning-400: rgb(221, 125, 83); /** Warning state — caution and actions that need attention. Step 400: light tints. */
|
|
29
|
+
--warning-450: rgb(216, 114, 68); /** Warning state — caution and actions that need attention. Step 450: light tints. */
|
|
30
|
+
--warning-500: rgb(211, 103, 52); /** Warning state — caution and actions that need attention. Step 500: base colour. */
|
|
31
|
+
--warning-550: rgb(206, 92, 33); /** Warning state — caution and actions that need attention. Step 550: shades for borders and icons. */
|
|
32
|
+
--warning-600: rgb(201, 80, 0); /** Warning state — caution and actions that need attention. Step 600: shades for borders and icons. */
|
|
33
|
+
--warning-650: rgb(168, 63, 3); /** Warning state — caution and actions that need attention. Step 650: shades for borders and icons. */
|
|
34
|
+
--warning-700: rgb(136, 47, 3); /** Warning state — caution and actions that need attention. Step 700: shades for borders and icons. */
|
|
35
|
+
--warning-750: rgb(105, 32, 1); /** Warning state — caution and actions that need attention. Step 750: darkest shades for text and high emphasis. */
|
|
36
|
+
--warning-800: rgb(75, 18, 0); /** Warning state — caution and actions that need attention. Step 800: darkest shades for text and high emphasis. */
|
|
37
|
+
--warning-850: rgb(57, 10, 0); /** Warning state — caution and actions that need attention. Step 850: darkest shades for text and high emphasis. */
|
|
38
|
+
--warning-900: rgb(39, 4, 0); /** Warning state — caution and actions that need attention. Step 900: darkest shades for text and high emphasis. */
|
|
39
|
+
--warning-950: rgb(23, 1, 0); /** Warning state — caution and actions that need attention. Step 950: darkest shades for text and high emphasis. */
|
|
40
|
+
--danger-50: rgb(255, 240, 239); /** Danger state — errors and destructive or critical actions. Step 50: lightest tints for subtle backgrounds and surfaces. */
|
|
41
|
+
--danger-100: rgb(255, 226, 225); /** Danger state — errors and destructive or critical actions. Step 100: lightest tints for subtle backgrounds and surfaces. */
|
|
42
|
+
--danger-150: rgb(255, 212, 212); /** Danger state — errors and destructive or critical actions. Step 150: lightest tints for subtle backgrounds and surfaces. */
|
|
43
|
+
--danger-200: rgb(253, 198, 198); /** Danger state — errors and destructive or critical actions. Step 200: lightest tints for subtle backgrounds and surfaces. */
|
|
44
|
+
--danger-250: rgb(244, 172, 173); /** Danger state — errors and destructive or critical actions. Step 250: lightest tints for subtle backgrounds and surfaces. */
|
|
45
|
+
--danger-300: rgb(234, 146, 148); /** Danger state — errors and destructive or critical actions. Step 300: light tints. */
|
|
46
|
+
--danger-350: rgb(223, 120, 124); /** Danger state — errors and destructive or critical actions. Step 350: light tints. */
|
|
47
|
+
--danger-400: rgb(211, 93, 101); /** Danger state — errors and destructive or critical actions. Step 400: light tints. */
|
|
48
|
+
--danger-450: rgb(205, 78, 89); /** Danger state — errors and destructive or critical actions. Step 450: light tints. */
|
|
49
|
+
--danger-500: rgb(198, 63, 78); /** Danger state — errors and destructive or critical actions. Step 500: base colour. */
|
|
50
|
+
--danger-550: rgb(191, 44, 66); /** Danger state — errors and destructive or critical actions. Step 550: shades for borders and icons. */
|
|
51
|
+
--danger-600: rgb(184, 18, 55); /** Danger state — errors and destructive or critical actions. Step 600: shades for borders and icons. */
|
|
52
|
+
--danger-650: rgb(153, 11, 42); /** Danger state — errors and destructive or critical actions. Step 650: shades for borders and icons. */
|
|
53
|
+
--danger-700: rgb(124, 6, 31); /** Danger state — errors and destructive or critical actions. Step 700: shades for borders and icons. */
|
|
54
|
+
--danger-750: rgb(95, 2, 20); /** Danger state — errors and destructive or critical actions. Step 750: darkest shades for text and high emphasis. */
|
|
55
|
+
--danger-800: rgb(68, 0, 10); /** Danger state — errors and destructive or critical actions. Step 800: darkest shades for text and high emphasis. */
|
|
56
|
+
--danger-850: rgb(51, 0, 5); /** Danger state — errors and destructive or critical actions. Step 850: darkest shades for text and high emphasis. */
|
|
57
|
+
--danger-900: rgb(35, 0, 2); /** Danger state — errors and destructive or critical actions. Step 900: darkest shades for text and high emphasis. */
|
|
58
|
+
--danger-950: rgb(20, 0, 1); /** Danger state — errors and destructive or critical actions. Step 950: darkest shades for text and high emphasis. */
|
|
59
|
+
--info-50: rgb(233, 238, 247); /** Informational state — neutral highlights, tips, and in-progress notices. Step 50: lightest tints for subtle backgrounds and surfaces. */
|
|
60
|
+
--info-100: rgb(212, 221, 235); /** Informational state — neutral highlights, tips, and in-progress notices. Step 100: lightest tints for subtle backgrounds and surfaces. */
|
|
61
|
+
--info-150: rgb(192, 204, 224); /** Informational state — neutral highlights, tips, and in-progress notices. Step 150: lightest tints for subtle backgrounds and surfaces. */
|
|
62
|
+
--info-200: rgb(172, 187, 213); /** Informational state — neutral highlights, tips, and in-progress notices. Step 200: lightest tints for subtle backgrounds and surfaces. */
|
|
63
|
+
--info-250: rgb(150, 169, 204); /** Informational state — neutral highlights, tips, and in-progress notices. Step 250: lightest tints for subtle backgrounds and surfaces. */
|
|
64
|
+
--info-300: rgb(128, 152, 194); /** Informational state — neutral highlights, tips, and in-progress notices. Step 300: light tints. */
|
|
65
|
+
--info-350: rgb(107, 134, 184); /** Informational state — neutral highlights, tips, and in-progress notices. Step 350: light tints. */
|
|
66
|
+
--info-400: rgb(87, 117, 174); /** Informational state — neutral highlights, tips, and in-progress notices. Step 400: light tints. */
|
|
67
|
+
--info-450: rgb(77, 108, 169); /** Informational state — neutral highlights, tips, and in-progress notices. Step 450: light tints. */
|
|
68
|
+
--info-500: rgb(66, 100, 164); /** Informational state — neutral highlights, tips, and in-progress notices. Step 500: base colour. */
|
|
69
|
+
--info-550: rgb(56, 91, 158); /** Informational state — neutral highlights, tips, and in-progress notices. Step 550: shades for borders and icons. */
|
|
70
|
+
--info-600: rgb(46, 82, 153); /** Informational state — neutral highlights, tips, and in-progress notices. Step 600: shades for borders and icons. */
|
|
71
|
+
--info-650: rgb(35, 66, 127); /** Informational state — neutral highlights, tips, and in-progress notices. Step 650: shades for borders and icons. */
|
|
72
|
+
--info-700: rgb(25, 51, 102); /** Informational state — neutral highlights, tips, and in-progress notices. Step 700: shades for borders and icons. */
|
|
73
|
+
--info-750: rgb(16, 37, 79); /** Informational state — neutral highlights, tips, and in-progress notices. Step 750: darkest shades for text and high emphasis. */
|
|
74
|
+
--info-800: rgb(7, 23, 56); /** Informational state — neutral highlights, tips, and in-progress notices. Step 800: darkest shades for text and high emphasis. */
|
|
75
|
+
--info-850: rgb(4, 15, 42); /** Informational state — neutral highlights, tips, and in-progress notices. Step 850: darkest shades for text and high emphasis. */
|
|
76
|
+
--info-900: rgb(2, 7, 28); /** Informational state — neutral highlights, tips, and in-progress notices. Step 900: darkest shades for text and high emphasis. */
|
|
77
|
+
--info-950: rgb(0, 3, 15); /** Informational state — neutral highlights, tips, and in-progress notices. Step 950: darkest shades for text and high emphasis. */
|
|
78
78
|
}
|
|
@@ -1,59 +1,59 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
--primary-50: #f0fbff;
|
|
3
|
-
--primary-100: #e4f6ff;
|
|
4
|
-
--primary-150: #d7f2fe;
|
|
5
|
-
--primary-200: #cbedfd;
|
|
6
|
-
--primary-250: #bceafe;
|
|
7
|
-
--primary-300: #ade7ff;
|
|
8
|
-
--primary-350: #9de3ff;
|
|
9
|
-
--primary-400: #8ce0ff;
|
|
10
|
-
--primary-450: #5ac9ff;
|
|
11
|
-
--primary-500: #26aeff;
|
|
12
|
-
--primary-550: #008fff;
|
|
13
|
-
--primary-600: #146cfd;
|
|
14
|
-
--primary-650: #0c5ad4;
|
|
15
|
-
--primary-700: #0548ad;
|
|
16
|
-
--primary-750: #023688;
|
|
17
|
-
--primary-800: #002664;
|
|
18
|
-
--primary-850: #001a4d;
|
|
19
|
-
--primary-900: #001037;
|
|
20
|
-
--primary-950: #000622;
|
|
21
|
-
--accent-50: #fff8f9;
|
|
22
|
-
--accent-100: #fff2f4;
|
|
23
|
-
--accent-150: #ffecef;
|
|
24
|
-
--accent-200: #ffe6ea;
|
|
25
|
-
--accent-250: #ffdbe0;
|
|
26
|
-
--accent-300: #ffcfd6;
|
|
27
|
-
--accent-350: #ffc4cc;
|
|
28
|
-
--accent-400: #ffb8c1;
|
|
29
|
-
--accent-450: #f897a2;
|
|
30
|
-
--accent-500: #ef7581;
|
|
31
|
-
--accent-550: #e44f5f;
|
|
32
|
-
--accent-600: #d7153a;
|
|
33
|
-
--accent-650: #b90e32;
|
|
34
|
-
--accent-700: #9b072a;
|
|
35
|
-
--accent-750: #7e0322;
|
|
36
|
-
--accent-800: #630019;
|
|
37
|
-
--accent-850: #4c0010;
|
|
38
|
-
--accent-900: #360008;
|
|
39
|
-
--accent-950: #210003;
|
|
40
|
-
--grey-50: #fafafa;
|
|
41
|
-
--grey-100: #f5f5f5;
|
|
42
|
-
--grey-150: #f0f0f0;
|
|
43
|
-
--grey-200: #ebebeb;
|
|
44
|
-
--grey-250: #e3e5e6;
|
|
45
|
-
--grey-300: #dcdfe0;
|
|
46
|
-
--grey-350: #d4d9db;
|
|
47
|
-
--grey-400: #cdd3d6;
|
|
48
|
-
--grey-450: #aab0b4;
|
|
49
|
-
--grey-500: #888f92;
|
|
50
|
-
--grey-550: #686f72;
|
|
51
|
-
--grey-600: #495054;
|
|
52
|
-
--grey-650: #3f4549;
|
|
53
|
-
--grey-700: #353b3f;
|
|
54
|
-
--grey-750: #2b3135;
|
|
55
|
-
--grey-800: #22272b;
|
|
56
|
-
--grey-850: #181c1f;
|
|
57
|
-
--grey-900: #0e1113;
|
|
58
|
-
--grey-950: #050709;
|
|
2
|
+
--primary-50: #f0fbff; /** Primary brand colour — primary actions, links, and key accents. Step 50: lightest tints for subtle backgrounds and surfaces. */
|
|
3
|
+
--primary-100: #e4f6ff; /** Primary brand colour — primary actions, links, and key accents. Step 100: lightest tints for subtle backgrounds and surfaces. */
|
|
4
|
+
--primary-150: #d7f2fe; /** Primary brand colour — primary actions, links, and key accents. Step 150: lightest tints for subtle backgrounds and surfaces. */
|
|
5
|
+
--primary-200: #cbedfd; /** Primary brand colour — primary actions, links, and key accents. Step 200: lightest tints for subtle backgrounds and surfaces. */
|
|
6
|
+
--primary-250: #bceafe; /** Primary brand colour — primary actions, links, and key accents. Step 250: lightest tints for subtle backgrounds and surfaces. */
|
|
7
|
+
--primary-300: #ade7ff; /** Primary brand colour — primary actions, links, and key accents. Step 300: light tints. */
|
|
8
|
+
--primary-350: #9de3ff; /** Primary brand colour — primary actions, links, and key accents. Step 350: light tints. */
|
|
9
|
+
--primary-400: #8ce0ff; /** Primary brand colour — primary actions, links, and key accents. Step 400: light tints. */
|
|
10
|
+
--primary-450: #5ac9ff; /** Primary brand colour — primary actions, links, and key accents. Step 450: light tints. */
|
|
11
|
+
--primary-500: #26aeff; /** Primary brand colour — primary actions, links, and key accents. Step 500: base colour. */
|
|
12
|
+
--primary-550: #008fff; /** Primary brand colour — primary actions, links, and key accents. Step 550: shades for borders and icons. */
|
|
13
|
+
--primary-600: #146cfd; /** Primary brand colour — primary actions, links, and key accents. Step 600: shades for borders and icons. */
|
|
14
|
+
--primary-650: #0c5ad4; /** Primary brand colour — primary actions, links, and key accents. Step 650: shades for borders and icons. */
|
|
15
|
+
--primary-700: #0548ad; /** Primary brand colour — primary actions, links, and key accents. Step 700: shades for borders and icons. */
|
|
16
|
+
--primary-750: #023688; /** Primary brand colour — primary actions, links, and key accents. Step 750: darkest shades for text and high emphasis. */
|
|
17
|
+
--primary-800: #002664; /** Primary brand colour — primary actions, links, and key accents. Step 800: darkest shades for text and high emphasis. */
|
|
18
|
+
--primary-850: #001a4d; /** Primary brand colour — primary actions, links, and key accents. Step 850: darkest shades for text and high emphasis. */
|
|
19
|
+
--primary-900: #001037; /** Primary brand colour — primary actions, links, and key accents. Step 900: darkest shades for text and high emphasis. */
|
|
20
|
+
--primary-950: #000622; /** Primary brand colour — primary actions, links, and key accents. Step 950: darkest shades for text and high emphasis. */
|
|
21
|
+
--accent-50: #fff8f9; /** Accent colour — secondary emphasis and supporting highlights. Step 50: lightest tints for subtle backgrounds and surfaces. */
|
|
22
|
+
--accent-100: #fff2f4; /** Accent colour — secondary emphasis and supporting highlights. Step 100: lightest tints for subtle backgrounds and surfaces. */
|
|
23
|
+
--accent-150: #ffecef; /** Accent colour — secondary emphasis and supporting highlights. Step 150: lightest tints for subtle backgrounds and surfaces. */
|
|
24
|
+
--accent-200: #ffe6ea; /** Accent colour — secondary emphasis and supporting highlights. Step 200: lightest tints for subtle backgrounds and surfaces. */
|
|
25
|
+
--accent-250: #ffdbe0; /** Accent colour — secondary emphasis and supporting highlights. Step 250: lightest tints for subtle backgrounds and surfaces. */
|
|
26
|
+
--accent-300: #ffcfd6; /** Accent colour — secondary emphasis and supporting highlights. Step 300: light tints. */
|
|
27
|
+
--accent-350: #ffc4cc; /** Accent colour — secondary emphasis and supporting highlights. Step 350: light tints. */
|
|
28
|
+
--accent-400: #ffb8c1; /** Accent colour — secondary emphasis and supporting highlights. Step 400: light tints. */
|
|
29
|
+
--accent-450: #f897a2; /** Accent colour — secondary emphasis and supporting highlights. Step 450: light tints. */
|
|
30
|
+
--accent-500: #ef7581; /** Accent colour — secondary emphasis and supporting highlights. Step 500: base colour. */
|
|
31
|
+
--accent-550: #e44f5f; /** Accent colour — secondary emphasis and supporting highlights. Step 550: shades for borders and icons. */
|
|
32
|
+
--accent-600: #d7153a; /** Accent colour — secondary emphasis and supporting highlights. Step 600: shades for borders and icons. */
|
|
33
|
+
--accent-650: #b90e32; /** Accent colour — secondary emphasis and supporting highlights. Step 650: shades for borders and icons. */
|
|
34
|
+
--accent-700: #9b072a; /** Accent colour — secondary emphasis and supporting highlights. Step 700: shades for borders and icons. */
|
|
35
|
+
--accent-750: #7e0322; /** Accent colour — secondary emphasis and supporting highlights. Step 750: darkest shades for text and high emphasis. */
|
|
36
|
+
--accent-800: #630019; /** Accent colour — secondary emphasis and supporting highlights. Step 800: darkest shades for text and high emphasis. */
|
|
37
|
+
--accent-850: #4c0010; /** Accent colour — secondary emphasis and supporting highlights. Step 850: darkest shades for text and high emphasis. */
|
|
38
|
+
--accent-900: #360008; /** Accent colour — secondary emphasis and supporting highlights. Step 900: darkest shades for text and high emphasis. */
|
|
39
|
+
--accent-950: #210003; /** Accent colour — secondary emphasis and supporting highlights. Step 950: darkest shades for text and high emphasis. */
|
|
40
|
+
--grey-50: #fafafa; /** Neutral grey — text, borders, surfaces, and dividers. Step 50: lightest tints for subtle backgrounds and surfaces. */
|
|
41
|
+
--grey-100: #f5f5f5; /** Neutral grey — text, borders, surfaces, and dividers. Step 100: lightest tints for subtle backgrounds and surfaces. */
|
|
42
|
+
--grey-150: #f0f0f0; /** Neutral grey — text, borders, surfaces, and dividers. Step 150: lightest tints for subtle backgrounds and surfaces. */
|
|
43
|
+
--grey-200: #ebebeb; /** Neutral grey — text, borders, surfaces, and dividers. Step 200: lightest tints for subtle backgrounds and surfaces. */
|
|
44
|
+
--grey-250: #e3e5e6; /** Neutral grey — text, borders, surfaces, and dividers. Step 250: lightest tints for subtle backgrounds and surfaces. */
|
|
45
|
+
--grey-300: #dcdfe0; /** Neutral grey — text, borders, surfaces, and dividers. Step 300: light tints. */
|
|
46
|
+
--grey-350: #d4d9db; /** Neutral grey — text, borders, surfaces, and dividers. Step 350: light tints. */
|
|
47
|
+
--grey-400: #cdd3d6; /** Neutral grey — text, borders, surfaces, and dividers. Step 400: light tints. */
|
|
48
|
+
--grey-450: #aab0b4; /** Neutral grey — text, borders, surfaces, and dividers. Step 450: light tints. */
|
|
49
|
+
--grey-500: #888f92; /** Neutral grey — text, borders, surfaces, and dividers. Step 500: base colour. */
|
|
50
|
+
--grey-550: #686f72; /** Neutral grey — text, borders, surfaces, and dividers. Step 550: shades for borders and icons. */
|
|
51
|
+
--grey-600: #495054; /** Neutral grey — text, borders, surfaces, and dividers. Step 600: shades for borders and icons. */
|
|
52
|
+
--grey-650: #3f4549; /** Neutral grey — text, borders, surfaces, and dividers. Step 650: shades for borders and icons. */
|
|
53
|
+
--grey-700: #353b3f; /** Neutral grey — text, borders, surfaces, and dividers. Step 700: shades for borders and icons. */
|
|
54
|
+
--grey-750: #2b3135; /** Neutral grey — text, borders, surfaces, and dividers. Step 750: darkest shades for text and high emphasis. */
|
|
55
|
+
--grey-800: #22272b; /** Neutral grey — text, borders, surfaces, and dividers. Step 800: darkest shades for text and high emphasis. */
|
|
56
|
+
--grey-850: #181c1f; /** Neutral grey — text, borders, surfaces, and dividers. Step 850: darkest shades for text and high emphasis. */
|
|
57
|
+
--grey-900: #0e1113; /** Neutral grey — text, borders, surfaces, and dividers. Step 900: darkest shades for text and high emphasis. */
|
|
58
|
+
--grey-950: #050709; /** Neutral grey — text, borders, surfaces, and dividers. Step 950: darkest shades for text and high emphasis. */
|
|
59
59
|
}
|
|
@@ -1,59 +1,59 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
--primary-50: hsl(196, 100%, 97.058824%);
|
|
3
|
-
--primary-100: hsl(200, 100%, 94.705882%);
|
|
4
|
-
--primary-150: hsl(198.461538, 95.121951%, 91.960784%);
|
|
5
|
-
--primary-200: hsl(199.2, 92.592593%, 89.411765%);
|
|
6
|
-
--primary-250: hsl(198.181818, 97.058824%, 86.666667%);
|
|
7
|
-
--primary-300: hsl(197.560976, 100%, 83.921569%);
|
|
8
|
-
--primary-350: hsl(197.142857, 100%, 80.784314%);
|
|
9
|
-
--primary-400: hsl(196.173913, 100%, 77.45098%);
|
|
10
|
-
--primary-450: hsl(199.636364, 100%, 67.647059%);
|
|
11
|
-
--primary-500: hsl(202.396313, 100%, 57.45098%);
|
|
12
|
-
--primary-550: hsl(206.352941, 100%, 50%);
|
|
13
|
-
--primary-600: hsl(217.339056, 98.312236%, 53.529412%);
|
|
14
|
-
--primary-650: hsl(216.6, 89.285714%, 43.921569%);
|
|
15
|
-
--primary-700: hsl(216.071429, 94.382022%, 34.901961%);
|
|
16
|
-
--primary-750: hsl(216.716418, 97.101449%, 27.058824%);
|
|
17
|
-
--primary-800: hsl(217.2, 100%, 19.607843%);
|
|
18
|
-
--primary-850: hsl(219.74026, 100%, 15.098039%);
|
|
19
|
-
--primary-900: hsl(222.545455, 100%, 10.784314%);
|
|
20
|
-
--primary-950: hsl(229.411765, 100%, 6.666667%);
|
|
21
|
-
--accent-50: hsl(351.428571, 100%, 98.627451%);
|
|
22
|
-
--accent-100: hsl(350.769231, 100%, 97.45098%);
|
|
23
|
-
--accent-150: hsl(350.526316, 100%, 96.27451%);
|
|
24
|
-
--accent-200: hsl(350.4, 100%, 95.098039%);
|
|
25
|
-
--accent-250: hsl(351.666667, 100%, 92.941176%);
|
|
26
|
-
--accent-300: hsl(351.25, 100%, 90.588235%);
|
|
27
|
-
--accent-350: hsl(351.864407, 100%, 88.431373%);
|
|
28
|
-
--accent-400: hsl(352.394366, 100%, 86.078431%);
|
|
29
|
-
--accent-450: hsl(353.195876, 87.387387%, 78.235294%);
|
|
30
|
-
--accent-500: hsl(354.098361, 79.220779%, 69.803922%);
|
|
31
|
-
--accent-550: hsl(353.557047, 73.399015%, 60.196078%);
|
|
32
|
-
--accent-600: hsl(348.556701, 82.20339%, 46.27451%);
|
|
33
|
-
--accent-650: hsl(347.368421, 85.929648%, 39.019608%);
|
|
34
|
-
--accent-700: hsl(345.810811, 91.358025%, 31.764706%);
|
|
35
|
-
--accent-750: hsl(344.878049, 95.348837%, 25.294118%);
|
|
36
|
-
--accent-800: hsl(344.848485, 100%, 19.411765%);
|
|
37
|
-
--accent-850: hsl(347.368421, 100%, 14.901961%);
|
|
38
|
-
--accent-900: hsl(351.111111, 100%, 10.588235%);
|
|
39
|
-
--accent-950: hsl(354.545455, 100%, 6.470588%);
|
|
40
|
-
--grey-50: hsl(0, 0%, 98.039216%);
|
|
41
|
-
--grey-100: hsl(0, 0%, 96.078431%);
|
|
42
|
-
--grey-150: hsl(0, 0%, 94.117647%);
|
|
43
|
-
--grey-200: hsl(0, 0%, 92.156863%);
|
|
44
|
-
--grey-250: hsl(200, 5.660377%, 89.607843%);
|
|
45
|
-
--grey-300: hsl(195, 6.060606%, 87.058824%);
|
|
46
|
-
--grey-350: hsl(197.142857, 8.860759%, 84.509804%);
|
|
47
|
-
--grey-400: hsl(200, 9.89011%, 82.156863%);
|
|
48
|
-
--grey-450: hsl(204, 6.25%, 68.627451%);
|
|
49
|
-
--grey-500: hsl(198, 4.385965%, 55.294118%);
|
|
50
|
-
--grey-550: hsl(198, 4.587156%, 42.745098%);
|
|
51
|
-
--grey-600: hsl(201.818182, 7.006369%, 30.784314%);
|
|
52
|
-
--grey-650: hsl(204, 7.352941%, 26.666667%);
|
|
53
|
-
--grey-700: hsl(204, 8.62069%, 22.745098%);
|
|
54
|
-
--grey-750: hsl(204, 10.416667%, 18.823529%);
|
|
55
|
-
--grey-800: hsl(206.666667, 11.688312%, 15.098039%);
|
|
56
|
-
--grey-850: hsl(205.714286, 12.727273%, 10.784314%);
|
|
57
|
-
--grey-900: hsl(204, 15.151515%, 6.470588%);
|
|
58
|
-
--grey-950: hsl(210, 28.571429%, 2.745098%);
|
|
2
|
+
--primary-50: hsl(196, 100%, 97.058824%); /** Primary brand colour — primary actions, links, and key accents. Step 50: lightest tints for subtle backgrounds and surfaces. */
|
|
3
|
+
--primary-100: hsl(200, 100%, 94.705882%); /** Primary brand colour — primary actions, links, and key accents. Step 100: lightest tints for subtle backgrounds and surfaces. */
|
|
4
|
+
--primary-150: hsl(198.461538, 95.121951%, 91.960784%); /** Primary brand colour — primary actions, links, and key accents. Step 150: lightest tints for subtle backgrounds and surfaces. */
|
|
5
|
+
--primary-200: hsl(199.2, 92.592593%, 89.411765%); /** Primary brand colour — primary actions, links, and key accents. Step 200: lightest tints for subtle backgrounds and surfaces. */
|
|
6
|
+
--primary-250: hsl(198.181818, 97.058824%, 86.666667%); /** Primary brand colour — primary actions, links, and key accents. Step 250: lightest tints for subtle backgrounds and surfaces. */
|
|
7
|
+
--primary-300: hsl(197.560976, 100%, 83.921569%); /** Primary brand colour — primary actions, links, and key accents. Step 300: light tints. */
|
|
8
|
+
--primary-350: hsl(197.142857, 100%, 80.784314%); /** Primary brand colour — primary actions, links, and key accents. Step 350: light tints. */
|
|
9
|
+
--primary-400: hsl(196.173913, 100%, 77.45098%); /** Primary brand colour — primary actions, links, and key accents. Step 400: light tints. */
|
|
10
|
+
--primary-450: hsl(199.636364, 100%, 67.647059%); /** Primary brand colour — primary actions, links, and key accents. Step 450: light tints. */
|
|
11
|
+
--primary-500: hsl(202.396313, 100%, 57.45098%); /** Primary brand colour — primary actions, links, and key accents. Step 500: base colour. */
|
|
12
|
+
--primary-550: hsl(206.352941, 100%, 50%); /** Primary brand colour — primary actions, links, and key accents. Step 550: shades for borders and icons. */
|
|
13
|
+
--primary-600: hsl(217.339056, 98.312236%, 53.529412%); /** Primary brand colour — primary actions, links, and key accents. Step 600: shades for borders and icons. */
|
|
14
|
+
--primary-650: hsl(216.6, 89.285714%, 43.921569%); /** Primary brand colour — primary actions, links, and key accents. Step 650: shades for borders and icons. */
|
|
15
|
+
--primary-700: hsl(216.071429, 94.382022%, 34.901961%); /** Primary brand colour — primary actions, links, and key accents. Step 700: shades for borders and icons. */
|
|
16
|
+
--primary-750: hsl(216.716418, 97.101449%, 27.058824%); /** Primary brand colour — primary actions, links, and key accents. Step 750: darkest shades for text and high emphasis. */
|
|
17
|
+
--primary-800: hsl(217.2, 100%, 19.607843%); /** Primary brand colour — primary actions, links, and key accents. Step 800: darkest shades for text and high emphasis. */
|
|
18
|
+
--primary-850: hsl(219.74026, 100%, 15.098039%); /** Primary brand colour — primary actions, links, and key accents. Step 850: darkest shades for text and high emphasis. */
|
|
19
|
+
--primary-900: hsl(222.545455, 100%, 10.784314%); /** Primary brand colour — primary actions, links, and key accents. Step 900: darkest shades for text and high emphasis. */
|
|
20
|
+
--primary-950: hsl(229.411765, 100%, 6.666667%); /** Primary brand colour — primary actions, links, and key accents. Step 950: darkest shades for text and high emphasis. */
|
|
21
|
+
--accent-50: hsl(351.428571, 100%, 98.627451%); /** Accent colour — secondary emphasis and supporting highlights. Step 50: lightest tints for subtle backgrounds and surfaces. */
|
|
22
|
+
--accent-100: hsl(350.769231, 100%, 97.45098%); /** Accent colour — secondary emphasis and supporting highlights. Step 100: lightest tints for subtle backgrounds and surfaces. */
|
|
23
|
+
--accent-150: hsl(350.526316, 100%, 96.27451%); /** Accent colour — secondary emphasis and supporting highlights. Step 150: lightest tints for subtle backgrounds and surfaces. */
|
|
24
|
+
--accent-200: hsl(350.4, 100%, 95.098039%); /** Accent colour — secondary emphasis and supporting highlights. Step 200: lightest tints for subtle backgrounds and surfaces. */
|
|
25
|
+
--accent-250: hsl(351.666667, 100%, 92.941176%); /** Accent colour — secondary emphasis and supporting highlights. Step 250: lightest tints for subtle backgrounds and surfaces. */
|
|
26
|
+
--accent-300: hsl(351.25, 100%, 90.588235%); /** Accent colour — secondary emphasis and supporting highlights. Step 300: light tints. */
|
|
27
|
+
--accent-350: hsl(351.864407, 100%, 88.431373%); /** Accent colour — secondary emphasis and supporting highlights. Step 350: light tints. */
|
|
28
|
+
--accent-400: hsl(352.394366, 100%, 86.078431%); /** Accent colour — secondary emphasis and supporting highlights. Step 400: light tints. */
|
|
29
|
+
--accent-450: hsl(353.195876, 87.387387%, 78.235294%); /** Accent colour — secondary emphasis and supporting highlights. Step 450: light tints. */
|
|
30
|
+
--accent-500: hsl(354.098361, 79.220779%, 69.803922%); /** Accent colour — secondary emphasis and supporting highlights. Step 500: base colour. */
|
|
31
|
+
--accent-550: hsl(353.557047, 73.399015%, 60.196078%); /** Accent colour — secondary emphasis and supporting highlights. Step 550: shades for borders and icons. */
|
|
32
|
+
--accent-600: hsl(348.556701, 82.20339%, 46.27451%); /** Accent colour — secondary emphasis and supporting highlights. Step 600: shades for borders and icons. */
|
|
33
|
+
--accent-650: hsl(347.368421, 85.929648%, 39.019608%); /** Accent colour — secondary emphasis and supporting highlights. Step 650: shades for borders and icons. */
|
|
34
|
+
--accent-700: hsl(345.810811, 91.358025%, 31.764706%); /** Accent colour — secondary emphasis and supporting highlights. Step 700: shades for borders and icons. */
|
|
35
|
+
--accent-750: hsl(344.878049, 95.348837%, 25.294118%); /** Accent colour — secondary emphasis and supporting highlights. Step 750: darkest shades for text and high emphasis. */
|
|
36
|
+
--accent-800: hsl(344.848485, 100%, 19.411765%); /** Accent colour — secondary emphasis and supporting highlights. Step 800: darkest shades for text and high emphasis. */
|
|
37
|
+
--accent-850: hsl(347.368421, 100%, 14.901961%); /** Accent colour — secondary emphasis and supporting highlights. Step 850: darkest shades for text and high emphasis. */
|
|
38
|
+
--accent-900: hsl(351.111111, 100%, 10.588235%); /** Accent colour — secondary emphasis and supporting highlights. Step 900: darkest shades for text and high emphasis. */
|
|
39
|
+
--accent-950: hsl(354.545455, 100%, 6.470588%); /** Accent colour — secondary emphasis and supporting highlights. Step 950: darkest shades for text and high emphasis. */
|
|
40
|
+
--grey-50: hsl(0, 0%, 98.039216%); /** Neutral grey — text, borders, surfaces, and dividers. Step 50: lightest tints for subtle backgrounds and surfaces. */
|
|
41
|
+
--grey-100: hsl(0, 0%, 96.078431%); /** Neutral grey — text, borders, surfaces, and dividers. Step 100: lightest tints for subtle backgrounds and surfaces. */
|
|
42
|
+
--grey-150: hsl(0, 0%, 94.117647%); /** Neutral grey — text, borders, surfaces, and dividers. Step 150: lightest tints for subtle backgrounds and surfaces. */
|
|
43
|
+
--grey-200: hsl(0, 0%, 92.156863%); /** Neutral grey — text, borders, surfaces, and dividers. Step 200: lightest tints for subtle backgrounds and surfaces. */
|
|
44
|
+
--grey-250: hsl(200, 5.660377%, 89.607843%); /** Neutral grey — text, borders, surfaces, and dividers. Step 250: lightest tints for subtle backgrounds and surfaces. */
|
|
45
|
+
--grey-300: hsl(195, 6.060606%, 87.058824%); /** Neutral grey — text, borders, surfaces, and dividers. Step 300: light tints. */
|
|
46
|
+
--grey-350: hsl(197.142857, 8.860759%, 84.509804%); /** Neutral grey — text, borders, surfaces, and dividers. Step 350: light tints. */
|
|
47
|
+
--grey-400: hsl(200, 9.89011%, 82.156863%); /** Neutral grey — text, borders, surfaces, and dividers. Step 400: light tints. */
|
|
48
|
+
--grey-450: hsl(204, 6.25%, 68.627451%); /** Neutral grey — text, borders, surfaces, and dividers. Step 450: light tints. */
|
|
49
|
+
--grey-500: hsl(198, 4.385965%, 55.294118%); /** Neutral grey — text, borders, surfaces, and dividers. Step 500: base colour. */
|
|
50
|
+
--grey-550: hsl(198, 4.587156%, 42.745098%); /** Neutral grey — text, borders, surfaces, and dividers. Step 550: shades for borders and icons. */
|
|
51
|
+
--grey-600: hsl(201.818182, 7.006369%, 30.784314%); /** Neutral grey — text, borders, surfaces, and dividers. Step 600: shades for borders and icons. */
|
|
52
|
+
--grey-650: hsl(204, 7.352941%, 26.666667%); /** Neutral grey — text, borders, surfaces, and dividers. Step 650: shades for borders and icons. */
|
|
53
|
+
--grey-700: hsl(204, 8.62069%, 22.745098%); /** Neutral grey — text, borders, surfaces, and dividers. Step 700: shades for borders and icons. */
|
|
54
|
+
--grey-750: hsl(204, 10.416667%, 18.823529%); /** Neutral grey — text, borders, surfaces, and dividers. Step 750: darkest shades for text and high emphasis. */
|
|
55
|
+
--grey-800: hsl(206.666667, 11.688312%, 15.098039%); /** Neutral grey — text, borders, surfaces, and dividers. Step 800: darkest shades for text and high emphasis. */
|
|
56
|
+
--grey-850: hsl(205.714286, 12.727273%, 10.784314%); /** Neutral grey — text, borders, surfaces, and dividers. Step 850: darkest shades for text and high emphasis. */
|
|
57
|
+
--grey-900: hsl(204, 15.151515%, 6.470588%); /** Neutral grey — text, borders, surfaces, and dividers. Step 900: darkest shades for text and high emphasis. */
|
|
58
|
+
--grey-950: hsl(210, 28.571429%, 2.745098%); /** Neutral grey — text, borders, surfaces, and dividers. Step 950: darkest shades for text and high emphasis. */
|
|
59
59
|
}
|
|
@@ -1,59 +1,59 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
--primary-50: oklch(0.981046 0.012805 221.42319);
|
|
3
|
-
--primary-100: oklch(0.962528 0.022535 229.073806);
|
|
4
|
-
--primary-150: oklch(0.945178 0.032646 226.304274);
|
|
5
|
-
--primary-200: oklch(0.926674 0.041663 227.890787);
|
|
6
|
-
--primary-250: oklch(0.911263 0.054737 226.223779);
|
|
7
|
-
--primary-300: oklch(0.896395 0.067447 225.364647);
|
|
8
|
-
--primary-350: oklch(0.87908 0.079726 224.961348);
|
|
9
|
-
--primary-400: oklch(0.864091 0.092143 223.595164);
|
|
10
|
-
--primary-450: oklch(0.793049 0.126377 232.671182);
|
|
11
|
-
--primary-500: oklch(0.719588 0.160232 241.934243);
|
|
12
|
-
--primary-550: oklch(0.647121 0.194114 252.085254);
|
|
13
|
-
--primary-600: oklch(0.575113 0.229834 260.756335);
|
|
14
|
-
--primary-650: oklch(0.504429 0.200565 260.409998);
|
|
15
|
-
--primary-700: oklch(0.433012 0.172764 260.164397);
|
|
16
|
-
--primary-750: oklch(0.360675 0.146274 260.290439);
|
|
17
|
-
--primary-800: oklch(0.289999 0.117296 259.841938);
|
|
18
|
-
--primary-850: oklch(0.238584 0.100105 260.505764);
|
|
19
|
-
--primary-900: oklch(0.190403 0.080719 260.682766);
|
|
20
|
-
--primary-950: oklch(0.138623 0.062732 261.699127);
|
|
21
|
-
--accent-50: oklch(0.984801 0.007587 7.280361);
|
|
22
|
-
--accent-100: oklch(0.97188 0.014232 6.700043);
|
|
23
|
-
--accent-150: oklch(0.959029 0.020979 6.606185);
|
|
24
|
-
--accent-200: oklch(0.946252 0.027827 6.653086);
|
|
25
|
-
--accent-250: oklch(0.922815 0.040479 8.438397);
|
|
26
|
-
--accent-300: oklch(0.897868 0.054828 8.39461);
|
|
27
|
-
--accent-350: oklch(0.875166 0.068164 9.494436);
|
|
28
|
-
--accent-400: oklch(0.850883 0.08303 10.570683);
|
|
29
|
-
--accent-450: oklch(0.779076 0.116944 12.810782);
|
|
30
|
-
--accent-500: oklch(0.707215 0.150378 15.602977);
|
|
31
|
-
--accent-550: oklch(0.634722 0.184087 17.935378);
|
|
32
|
-
--accent-600: oklch(0.561955 0.217505 20.33356);
|
|
33
|
-
--accent-650: oklch(0.501611 0.19526 19.649998);
|
|
34
|
-
--accent-700: oklch(0.439441 0.172351 18.724983);
|
|
35
|
-
--accent-750: oklch(0.377602 0.149006 17.706488);
|
|
36
|
-
--accent-800: oklch(0.316967 0.126887 17.133117);
|
|
37
|
-
--accent-850: oklch(0.26401 0.105766 17.967115);
|
|
38
|
-
--accent-900: oklch(0.210832 0.084535 18.772606);
|
|
39
|
-
--accent-950: oklch(0.156795 0.062933 19.607624);
|
|
40
|
-
--grey-50: oklch(0.985104 0 0);
|
|
41
|
-
--grey-100: oklch(0.970151 0 0);
|
|
42
|
-
--grey-150: oklch(0.95514 0 0);
|
|
43
|
-
--grey-200: oklch(0.94007 0 0);
|
|
44
|
-
--grey-250: oklch(0.920652 0.002558 228.786818);
|
|
45
|
-
--grey-300: oklch(0.901624 0.003538 219.535738);
|
|
46
|
-
--grey-350: oklch(0.882025 0.006111 223.464254);
|
|
47
|
-
--grey-400: oklch(0.863097 0.007776 228.868893);
|
|
48
|
-
--grey-450: oklch(0.753634 0.008885 236.605307);
|
|
49
|
-
--grey-500: oklch(0.645222 0.009348 225.150438);
|
|
50
|
-
--grey-550: oklch(0.536704 0.009767 225.197358);
|
|
51
|
-
--grey-600: oklch(0.426427 0.011202 232.617199);
|
|
52
|
-
--grey-650: oklch(0.386365 0.01045 236.835687);
|
|
53
|
-
--grey-700: oklch(0.348204 0.010712 236.894097);
|
|
54
|
-
--grey-750: oklch(0.308978 0.011017 236.97265);
|
|
55
|
-
--grey-800: oklch(0.269413 0.01036 242.083865);
|
|
56
|
-
--grey-850: oklch(0.223572 0.008405 240.274391);
|
|
57
|
-
--grey-900: oklch(0.175228 0.006346 236.981786);
|
|
58
|
-
--grey-950: oklch(0.126543 0.006953 243.792325);
|
|
2
|
+
--primary-50: oklch(0.981046 0.012805 221.42319); /** Primary brand colour — primary actions, links, and key accents. Step 50: lightest tints for subtle backgrounds and surfaces. */
|
|
3
|
+
--primary-100: oklch(0.962528 0.022535 229.073806); /** Primary brand colour — primary actions, links, and key accents. Step 100: lightest tints for subtle backgrounds and surfaces. */
|
|
4
|
+
--primary-150: oklch(0.945178 0.032646 226.304274); /** Primary brand colour — primary actions, links, and key accents. Step 150: lightest tints for subtle backgrounds and surfaces. */
|
|
5
|
+
--primary-200: oklch(0.926674 0.041663 227.890787); /** Primary brand colour — primary actions, links, and key accents. Step 200: lightest tints for subtle backgrounds and surfaces. */
|
|
6
|
+
--primary-250: oklch(0.911263 0.054737 226.223779); /** Primary brand colour — primary actions, links, and key accents. Step 250: lightest tints for subtle backgrounds and surfaces. */
|
|
7
|
+
--primary-300: oklch(0.896395 0.067447 225.364647); /** Primary brand colour — primary actions, links, and key accents. Step 300: light tints. */
|
|
8
|
+
--primary-350: oklch(0.87908 0.079726 224.961348); /** Primary brand colour — primary actions, links, and key accents. Step 350: light tints. */
|
|
9
|
+
--primary-400: oklch(0.864091 0.092143 223.595164); /** Primary brand colour — primary actions, links, and key accents. Step 400: light tints. */
|
|
10
|
+
--primary-450: oklch(0.793049 0.126377 232.671182); /** Primary brand colour — primary actions, links, and key accents. Step 450: light tints. */
|
|
11
|
+
--primary-500: oklch(0.719588 0.160232 241.934243); /** Primary brand colour — primary actions, links, and key accents. Step 500: base colour. */
|
|
12
|
+
--primary-550: oklch(0.647121 0.194114 252.085254); /** Primary brand colour — primary actions, links, and key accents. Step 550: shades for borders and icons. */
|
|
13
|
+
--primary-600: oklch(0.575113 0.229834 260.756335); /** Primary brand colour — primary actions, links, and key accents. Step 600: shades for borders and icons. */
|
|
14
|
+
--primary-650: oklch(0.504429 0.200565 260.409998); /** Primary brand colour — primary actions, links, and key accents. Step 650: shades for borders and icons. */
|
|
15
|
+
--primary-700: oklch(0.433012 0.172764 260.164397); /** Primary brand colour — primary actions, links, and key accents. Step 700: shades for borders and icons. */
|
|
16
|
+
--primary-750: oklch(0.360675 0.146274 260.290439); /** Primary brand colour — primary actions, links, and key accents. Step 750: darkest shades for text and high emphasis. */
|
|
17
|
+
--primary-800: oklch(0.289999 0.117296 259.841938); /** Primary brand colour — primary actions, links, and key accents. Step 800: darkest shades for text and high emphasis. */
|
|
18
|
+
--primary-850: oklch(0.238584 0.100105 260.505764); /** Primary brand colour — primary actions, links, and key accents. Step 850: darkest shades for text and high emphasis. */
|
|
19
|
+
--primary-900: oklch(0.190403 0.080719 260.682766); /** Primary brand colour — primary actions, links, and key accents. Step 900: darkest shades for text and high emphasis. */
|
|
20
|
+
--primary-950: oklch(0.138623 0.062732 261.699127); /** Primary brand colour — primary actions, links, and key accents. Step 950: darkest shades for text and high emphasis. */
|
|
21
|
+
--accent-50: oklch(0.984801 0.007587 7.280361); /** Accent colour — secondary emphasis and supporting highlights. Step 50: lightest tints for subtle backgrounds and surfaces. */
|
|
22
|
+
--accent-100: oklch(0.97188 0.014232 6.700043); /** Accent colour — secondary emphasis and supporting highlights. Step 100: lightest tints for subtle backgrounds and surfaces. */
|
|
23
|
+
--accent-150: oklch(0.959029 0.020979 6.606185); /** Accent colour — secondary emphasis and supporting highlights. Step 150: lightest tints for subtle backgrounds and surfaces. */
|
|
24
|
+
--accent-200: oklch(0.946252 0.027827 6.653086); /** Accent colour — secondary emphasis and supporting highlights. Step 200: lightest tints for subtle backgrounds and surfaces. */
|
|
25
|
+
--accent-250: oklch(0.922815 0.040479 8.438397); /** Accent colour — secondary emphasis and supporting highlights. Step 250: lightest tints for subtle backgrounds and surfaces. */
|
|
26
|
+
--accent-300: oklch(0.897868 0.054828 8.39461); /** Accent colour — secondary emphasis and supporting highlights. Step 300: light tints. */
|
|
27
|
+
--accent-350: oklch(0.875166 0.068164 9.494436); /** Accent colour — secondary emphasis and supporting highlights. Step 350: light tints. */
|
|
28
|
+
--accent-400: oklch(0.850883 0.08303 10.570683); /** Accent colour — secondary emphasis and supporting highlights. Step 400: light tints. */
|
|
29
|
+
--accent-450: oklch(0.779076 0.116944 12.810782); /** Accent colour — secondary emphasis and supporting highlights. Step 450: light tints. */
|
|
30
|
+
--accent-500: oklch(0.707215 0.150378 15.602977); /** Accent colour — secondary emphasis and supporting highlights. Step 500: base colour. */
|
|
31
|
+
--accent-550: oklch(0.634722 0.184087 17.935378); /** Accent colour — secondary emphasis and supporting highlights. Step 550: shades for borders and icons. */
|
|
32
|
+
--accent-600: oklch(0.561955 0.217505 20.33356); /** Accent colour — secondary emphasis and supporting highlights. Step 600: shades for borders and icons. */
|
|
33
|
+
--accent-650: oklch(0.501611 0.19526 19.649998); /** Accent colour — secondary emphasis and supporting highlights. Step 650: shades for borders and icons. */
|
|
34
|
+
--accent-700: oklch(0.439441 0.172351 18.724983); /** Accent colour — secondary emphasis and supporting highlights. Step 700: shades for borders and icons. */
|
|
35
|
+
--accent-750: oklch(0.377602 0.149006 17.706488); /** Accent colour — secondary emphasis and supporting highlights. Step 750: darkest shades for text and high emphasis. */
|
|
36
|
+
--accent-800: oklch(0.316967 0.126887 17.133117); /** Accent colour — secondary emphasis and supporting highlights. Step 800: darkest shades for text and high emphasis. */
|
|
37
|
+
--accent-850: oklch(0.26401 0.105766 17.967115); /** Accent colour — secondary emphasis and supporting highlights. Step 850: darkest shades for text and high emphasis. */
|
|
38
|
+
--accent-900: oklch(0.210832 0.084535 18.772606); /** Accent colour — secondary emphasis and supporting highlights. Step 900: darkest shades for text and high emphasis. */
|
|
39
|
+
--accent-950: oklch(0.156795 0.062933 19.607624); /** Accent colour — secondary emphasis and supporting highlights. Step 950: darkest shades for text and high emphasis. */
|
|
40
|
+
--grey-50: oklch(0.985104 0 0); /** Neutral grey — text, borders, surfaces, and dividers. Step 50: lightest tints for subtle backgrounds and surfaces. */
|
|
41
|
+
--grey-100: oklch(0.970151 0 0); /** Neutral grey — text, borders, surfaces, and dividers. Step 100: lightest tints for subtle backgrounds and surfaces. */
|
|
42
|
+
--grey-150: oklch(0.95514 0 0); /** Neutral grey — text, borders, surfaces, and dividers. Step 150: lightest tints for subtle backgrounds and surfaces. */
|
|
43
|
+
--grey-200: oklch(0.94007 0 0); /** Neutral grey — text, borders, surfaces, and dividers. Step 200: lightest tints for subtle backgrounds and surfaces. */
|
|
44
|
+
--grey-250: oklch(0.920652 0.002558 228.786818); /** Neutral grey — text, borders, surfaces, and dividers. Step 250: lightest tints for subtle backgrounds and surfaces. */
|
|
45
|
+
--grey-300: oklch(0.901624 0.003538 219.535738); /** Neutral grey — text, borders, surfaces, and dividers. Step 300: light tints. */
|
|
46
|
+
--grey-350: oklch(0.882025 0.006111 223.464254); /** Neutral grey — text, borders, surfaces, and dividers. Step 350: light tints. */
|
|
47
|
+
--grey-400: oklch(0.863097 0.007776 228.868893); /** Neutral grey — text, borders, surfaces, and dividers. Step 400: light tints. */
|
|
48
|
+
--grey-450: oklch(0.753634 0.008885 236.605307); /** Neutral grey — text, borders, surfaces, and dividers. Step 450: light tints. */
|
|
49
|
+
--grey-500: oklch(0.645222 0.009348 225.150438); /** Neutral grey — text, borders, surfaces, and dividers. Step 500: base colour. */
|
|
50
|
+
--grey-550: oklch(0.536704 0.009767 225.197358); /** Neutral grey — text, borders, surfaces, and dividers. Step 550: shades for borders and icons. */
|
|
51
|
+
--grey-600: oklch(0.426427 0.011202 232.617199); /** Neutral grey — text, borders, surfaces, and dividers. Step 600: shades for borders and icons. */
|
|
52
|
+
--grey-650: oklch(0.386365 0.01045 236.835687); /** Neutral grey — text, borders, surfaces, and dividers. Step 650: shades for borders and icons. */
|
|
53
|
+
--grey-700: oklch(0.348204 0.010712 236.894097); /** Neutral grey — text, borders, surfaces, and dividers. Step 700: shades for borders and icons. */
|
|
54
|
+
--grey-750: oklch(0.308978 0.011017 236.97265); /** Neutral grey — text, borders, surfaces, and dividers. Step 750: darkest shades for text and high emphasis. */
|
|
55
|
+
--grey-800: oklch(0.269413 0.01036 242.083865); /** Neutral grey — text, borders, surfaces, and dividers. Step 800: darkest shades for text and high emphasis. */
|
|
56
|
+
--grey-850: oklch(0.223572 0.008405 240.274391); /** Neutral grey — text, borders, surfaces, and dividers. Step 850: darkest shades for text and high emphasis. */
|
|
57
|
+
--grey-900: oklch(0.175228 0.006346 236.981786); /** Neutral grey — text, borders, surfaces, and dividers. Step 900: darkest shades for text and high emphasis. */
|
|
58
|
+
--grey-950: oklch(0.126543 0.006953 243.792325); /** Neutral grey — text, borders, surfaces, and dividers. Step 950: darkest shades for text and high emphasis. */
|
|
59
59
|
}
|