@nswds/tokens 3.0.1 → 3.2.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/css/typography/global.css +32 -0
- package/dist/index.cjs +999 -31
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +417 -0
- package/dist/index.d.ts +417 -0
- package/dist/index.js +999 -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/js/typography/global.js +42 -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/json/typography/global.json +42 -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/less/typography/global.less +30 -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/scss/typography/global.scss +30 -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/tailwind/typography/global.css +32 -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/global/typography/canonical.json +240 -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/tokens/typography.base.json +240 -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/dist/ts/typography/global.ts +42 -0
- package/package.json +1 -1
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
export const fontFamily = {
|
|
2
|
+
sans: "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
3
|
+
display:
|
|
4
|
+
"'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
5
|
+
system:
|
|
6
|
+
"'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
7
|
+
mono: "'JetBrains Mono', ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace",
|
|
8
|
+
}
|
|
9
|
+
export const fontSize = {
|
|
10
|
+
12: '0.75rem',
|
|
11
|
+
14: '0.875rem',
|
|
12
|
+
16: '1rem',
|
|
13
|
+
18: '1.125rem',
|
|
14
|
+
20: '1.25rem',
|
|
15
|
+
22: '1.375rem',
|
|
16
|
+
24: '1.5rem',
|
|
17
|
+
30: '1.875rem',
|
|
18
|
+
36: '2.25rem',
|
|
19
|
+
48: '3rem',
|
|
20
|
+
56: '3.5rem',
|
|
21
|
+
64: '4rem',
|
|
22
|
+
}
|
|
23
|
+
export const fontWeight = {
|
|
24
|
+
light: 300,
|
|
25
|
+
regular: 400,
|
|
26
|
+
medium: 500,
|
|
27
|
+
semibold: 600,
|
|
28
|
+
bold: 700,
|
|
29
|
+
}
|
|
30
|
+
export const lineHeight = {
|
|
31
|
+
none: 1,
|
|
32
|
+
tight: 1.2,
|
|
33
|
+
snug: 1.3333333,
|
|
34
|
+
base: 1.5,
|
|
35
|
+
relaxed: 1.6,
|
|
36
|
+
loose: 1.75,
|
|
37
|
+
}
|
|
38
|
+
export const letterSpacing = {
|
|
39
|
+
tight: '-0.0125em',
|
|
40
|
+
normal: '0em',
|
|
41
|
+
wide: '0.025em',
|
|
42
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"space": {
|
|
3
|
+
"space-0": "0rem",
|
|
4
|
+
"space-1": "0.25rem",
|
|
5
|
+
"space-2": "0.5rem",
|
|
6
|
+
"space-3": "0.75rem",
|
|
7
|
+
"space-4": "1rem",
|
|
8
|
+
"space-5": "1.25rem",
|
|
9
|
+
"space-6": "1.5rem",
|
|
10
|
+
"space-8": "2rem",
|
|
11
|
+
"space-10": "2.5rem",
|
|
12
|
+
"space-12": "3rem",
|
|
13
|
+
"space-14": "3.5rem",
|
|
14
|
+
"space-16": "4rem"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"font-family": {
|
|
3
|
+
"font-family-sans": "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
4
|
+
"font-family-display": "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
5
|
+
"font-family-system": "'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
|
|
6
|
+
"font-family-mono": "'JetBrains Mono', ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace"
|
|
7
|
+
},
|
|
8
|
+
"font-size": {
|
|
9
|
+
"font-size-12": "0.75rem",
|
|
10
|
+
"font-size-14": "0.875rem",
|
|
11
|
+
"font-size-16": "1rem",
|
|
12
|
+
"font-size-18": "1.125rem",
|
|
13
|
+
"font-size-20": "1.25rem",
|
|
14
|
+
"font-size-22": "1.375rem",
|
|
15
|
+
"font-size-24": "1.5rem",
|
|
16
|
+
"font-size-30": "1.875rem",
|
|
17
|
+
"font-size-36": "2.25rem",
|
|
18
|
+
"font-size-48": "3rem",
|
|
19
|
+
"font-size-56": "3.5rem",
|
|
20
|
+
"font-size-64": "4rem"
|
|
21
|
+
},
|
|
22
|
+
"font-weight": {
|
|
23
|
+
"font-weight-light": 300,
|
|
24
|
+
"font-weight-regular": 400,
|
|
25
|
+
"font-weight-medium": 500,
|
|
26
|
+
"font-weight-semibold": 600,
|
|
27
|
+
"font-weight-bold": 700
|
|
28
|
+
},
|
|
29
|
+
"line-height": {
|
|
30
|
+
"line-height-none": 1,
|
|
31
|
+
"line-height-tight": 1.2,
|
|
32
|
+
"line-height-snug": 1.3333333,
|
|
33
|
+
"line-height-base": 1.5,
|
|
34
|
+
"line-height-relaxed": 1.6,
|
|
35
|
+
"line-height-loose": 1.75
|
|
36
|
+
},
|
|
37
|
+
"letter-spacing": {
|
|
38
|
+
"letter-spacing-tight": "-0.0125em",
|
|
39
|
+
"letter-spacing-normal": "0em",
|
|
40
|
+
"letter-spacing-wide": "0.025em"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
@breakpoint-xs: 480px; // Extra-small breakpoint — large phones and up.
|
|
2
|
+
@breakpoint-sm: 768px; // Small breakpoint — tablets portrait and up.
|
|
3
|
+
@breakpoint-md: 992px; // Medium breakpoint — tablets landscape / small laptops and up.
|
|
4
|
+
@breakpoint-lg: 1200px; // Large breakpoint — desktops and up.
|
|
5
|
+
@breakpoint-xl: 1600px; // Extra-large breakpoint — wide desktops and up.
|
|
@@ -1,76 +1,76 @@
|
|
|
1
|
-
@success-50: #eff9ed;
|
|
2
|
-
@success-100: #e0f3de;
|
|
3
|
-
@success-150: #d2eccf;
|
|
4
|
-
@success-200: #c4e5c0;
|
|
5
|
-
@success-250: #aad6a5;
|
|
6
|
-
@success-300: #8fc78a;
|
|
7
|
-
@success-350: #74b76f;
|
|
8
|
-
@success-400: #58a854;
|
|
9
|
-
@success-450: #49a146;
|
|
10
|
-
@success-500: #399936;
|
|
11
|
-
@success-550: #259224;
|
|
12
|
-
@success-600: #008a07;
|
|
13
|
-
@success-650: #007204;
|
|
14
|
-
@success-700: #005a02;
|
|
15
|
-
@success-750: #004401;
|
|
16
|
-
@success-800: #002f00;
|
|
17
|
-
@success-850: #002200;
|
|
18
|
-
@success-900: #001600;
|
|
19
|
-
@success-950: #000b00;
|
|
20
|
-
@warning-50: #fff3ed;
|
|
21
|
-
@warning-100: #ffe8de;
|
|
22
|
-
@warning-150: #ffddcf;
|
|
23
|
-
@warning-200: #fdd2c0;
|
|
24
|
-
@warning-250: #f6bda5;
|
|
25
|
-
@warning-300: #eea88a;
|
|
26
|
-
@warning-350: #e6936f;
|
|
27
|
-
@warning-400: #dd7d53;
|
|
28
|
-
@warning-450: #d87244;
|
|
29
|
-
@warning-500: #d36734;
|
|
30
|
-
@warning-550: #ce5c21;
|
|
31
|
-
@warning-600: #c95000;
|
|
32
|
-
@warning-650: #a83f03;
|
|
33
|
-
@warning-700: #882f03;
|
|
34
|
-
@warning-750: #692001;
|
|
35
|
-
@warning-800: #4b1200;
|
|
36
|
-
@warning-850: #390a00;
|
|
37
|
-
@warning-900: #270400;
|
|
38
|
-
@warning-950: #170100;
|
|
39
|
-
@danger-50: #fff0ef;
|
|
40
|
-
@danger-100: #ffe2e1;
|
|
41
|
-
@danger-150: #ffd4d4;
|
|
42
|
-
@danger-200: #fdc6c6;
|
|
43
|
-
@danger-250: #f4acad;
|
|
44
|
-
@danger-300: #ea9294;
|
|
45
|
-
@danger-350: #df787c;
|
|
46
|
-
@danger-400: #d35d65;
|
|
47
|
-
@danger-450: #cd4e59;
|
|
48
|
-
@danger-500: #c63f4e;
|
|
49
|
-
@danger-550: #bf2c42;
|
|
50
|
-
@danger-600: #b81237;
|
|
51
|
-
@danger-650: #990b2a;
|
|
52
|
-
@danger-700: #7c061f;
|
|
53
|
-
@danger-750: #5f0214;
|
|
54
|
-
@danger-800: #44000a;
|
|
55
|
-
@danger-850: #330005;
|
|
56
|
-
@danger-900: #230002;
|
|
57
|
-
@danger-950: #140001;
|
|
58
|
-
@info-50: #e9eef7;
|
|
59
|
-
@info-100: #d4ddeb;
|
|
60
|
-
@info-150: #c0cce0;
|
|
61
|
-
@info-200: #acbbd5;
|
|
62
|
-
@info-250: #96a9cc;
|
|
63
|
-
@info-300: #8098c2;
|
|
64
|
-
@info-350: #6b86b8;
|
|
65
|
-
@info-400: #5775ae;
|
|
66
|
-
@info-450: #4d6ca9;
|
|
67
|
-
@info-500: #4264a4;
|
|
68
|
-
@info-550: #385b9e;
|
|
69
|
-
@info-600: #2e5299;
|
|
70
|
-
@info-650: #23427f;
|
|
71
|
-
@info-700: #193366;
|
|
72
|
-
@info-750: #10254f;
|
|
73
|
-
@info-800: #071738;
|
|
74
|
-
@info-850: #040f2a;
|
|
75
|
-
@info-900: #02071c;
|
|
76
|
-
@info-950: #00030f;
|
|
1
|
+
@success-50: #eff9ed; // Success state — positive outcomes, confirmations, and completed actions. Step 50: lightest tints for subtle backgrounds and surfaces.
|
|
2
|
+
@success-100: #e0f3de; // Success state — positive outcomes, confirmations, and completed actions. Step 100: lightest tints for subtle backgrounds and surfaces.
|
|
3
|
+
@success-150: #d2eccf; // Success state — positive outcomes, confirmations, and completed actions. Step 150: lightest tints for subtle backgrounds and surfaces.
|
|
4
|
+
@success-200: #c4e5c0; // Success state — positive outcomes, confirmations, and completed actions. Step 200: lightest tints for subtle backgrounds and surfaces.
|
|
5
|
+
@success-250: #aad6a5; // Success state — positive outcomes, confirmations, and completed actions. Step 250: lightest tints for subtle backgrounds and surfaces.
|
|
6
|
+
@success-300: #8fc78a; // Success state — positive outcomes, confirmations, and completed actions. Step 300: light tints.
|
|
7
|
+
@success-350: #74b76f; // Success state — positive outcomes, confirmations, and completed actions. Step 350: light tints.
|
|
8
|
+
@success-400: #58a854; // Success state — positive outcomes, confirmations, and completed actions. Step 400: light tints.
|
|
9
|
+
@success-450: #49a146; // Success state — positive outcomes, confirmations, and completed actions. Step 450: light tints.
|
|
10
|
+
@success-500: #399936; // Success state — positive outcomes, confirmations, and completed actions. Step 500: base colour.
|
|
11
|
+
@success-550: #259224; // Success state — positive outcomes, confirmations, and completed actions. Step 550: shades for borders and icons.
|
|
12
|
+
@success-600: #008a07; // Success state — positive outcomes, confirmations, and completed actions. Step 600: shades for borders and icons.
|
|
13
|
+
@success-650: #007204; // Success state — positive outcomes, confirmations, and completed actions. Step 650: shades for borders and icons.
|
|
14
|
+
@success-700: #005a02; // Success state — positive outcomes, confirmations, and completed actions. Step 700: shades for borders and icons.
|
|
15
|
+
@success-750: #004401; // Success state — positive outcomes, confirmations, and completed actions. Step 750: darkest shades for text and high emphasis.
|
|
16
|
+
@success-800: #002f00; // Success state — positive outcomes, confirmations, and completed actions. Step 800: darkest shades for text and high emphasis.
|
|
17
|
+
@success-850: #002200; // Success state — positive outcomes, confirmations, and completed actions. Step 850: darkest shades for text and high emphasis.
|
|
18
|
+
@success-900: #001600; // Success state — positive outcomes, confirmations, and completed actions. Step 900: darkest shades for text and high emphasis.
|
|
19
|
+
@success-950: #000b00; // Success state — positive outcomes, confirmations, and completed actions. Step 950: darkest shades for text and high emphasis.
|
|
20
|
+
@warning-50: #fff3ed; // Warning state — caution and actions that need attention. Step 50: lightest tints for subtle backgrounds and surfaces.
|
|
21
|
+
@warning-100: #ffe8de; // Warning state — caution and actions that need attention. Step 100: lightest tints for subtle backgrounds and surfaces.
|
|
22
|
+
@warning-150: #ffddcf; // Warning state — caution and actions that need attention. Step 150: lightest tints for subtle backgrounds and surfaces.
|
|
23
|
+
@warning-200: #fdd2c0; // Warning state — caution and actions that need attention. Step 200: lightest tints for subtle backgrounds and surfaces.
|
|
24
|
+
@warning-250: #f6bda5; // Warning state — caution and actions that need attention. Step 250: lightest tints for subtle backgrounds and surfaces.
|
|
25
|
+
@warning-300: #eea88a; // Warning state — caution and actions that need attention. Step 300: light tints.
|
|
26
|
+
@warning-350: #e6936f; // Warning state — caution and actions that need attention. Step 350: light tints.
|
|
27
|
+
@warning-400: #dd7d53; // Warning state — caution and actions that need attention. Step 400: light tints.
|
|
28
|
+
@warning-450: #d87244; // Warning state — caution and actions that need attention. Step 450: light tints.
|
|
29
|
+
@warning-500: #d36734; // Warning state — caution and actions that need attention. Step 500: base colour.
|
|
30
|
+
@warning-550: #ce5c21; // Warning state — caution and actions that need attention. Step 550: shades for borders and icons.
|
|
31
|
+
@warning-600: #c95000; // Warning state — caution and actions that need attention. Step 600: shades for borders and icons.
|
|
32
|
+
@warning-650: #a83f03; // Warning state — caution and actions that need attention. Step 650: shades for borders and icons.
|
|
33
|
+
@warning-700: #882f03; // Warning state — caution and actions that need attention. Step 700: shades for borders and icons.
|
|
34
|
+
@warning-750: #692001; // Warning state — caution and actions that need attention. Step 750: darkest shades for text and high emphasis.
|
|
35
|
+
@warning-800: #4b1200; // Warning state — caution and actions that need attention. Step 800: darkest shades for text and high emphasis.
|
|
36
|
+
@warning-850: #390a00; // Warning state — caution and actions that need attention. Step 850: darkest shades for text and high emphasis.
|
|
37
|
+
@warning-900: #270400; // Warning state — caution and actions that need attention. Step 900: darkest shades for text and high emphasis.
|
|
38
|
+
@warning-950: #170100; // Warning state — caution and actions that need attention. Step 950: darkest shades for text and high emphasis.
|
|
39
|
+
@danger-50: #fff0ef; // Danger state — errors and destructive or critical actions. Step 50: lightest tints for subtle backgrounds and surfaces.
|
|
40
|
+
@danger-100: #ffe2e1; // Danger state — errors and destructive or critical actions. Step 100: lightest tints for subtle backgrounds and surfaces.
|
|
41
|
+
@danger-150: #ffd4d4; // Danger state — errors and destructive or critical actions. Step 150: lightest tints for subtle backgrounds and surfaces.
|
|
42
|
+
@danger-200: #fdc6c6; // Danger state — errors and destructive or critical actions. Step 200: lightest tints for subtle backgrounds and surfaces.
|
|
43
|
+
@danger-250: #f4acad; // Danger state — errors and destructive or critical actions. Step 250: lightest tints for subtle backgrounds and surfaces.
|
|
44
|
+
@danger-300: #ea9294; // Danger state — errors and destructive or critical actions. Step 300: light tints.
|
|
45
|
+
@danger-350: #df787c; // Danger state — errors and destructive or critical actions. Step 350: light tints.
|
|
46
|
+
@danger-400: #d35d65; // Danger state — errors and destructive or critical actions. Step 400: light tints.
|
|
47
|
+
@danger-450: #cd4e59; // Danger state — errors and destructive or critical actions. Step 450: light tints.
|
|
48
|
+
@danger-500: #c63f4e; // Danger state — errors and destructive or critical actions. Step 500: base colour.
|
|
49
|
+
@danger-550: #bf2c42; // Danger state — errors and destructive or critical actions. Step 550: shades for borders and icons.
|
|
50
|
+
@danger-600: #b81237; // Danger state — errors and destructive or critical actions. Step 600: shades for borders and icons.
|
|
51
|
+
@danger-650: #990b2a; // Danger state — errors and destructive or critical actions. Step 650: shades for borders and icons.
|
|
52
|
+
@danger-700: #7c061f; // Danger state — errors and destructive or critical actions. Step 700: shades for borders and icons.
|
|
53
|
+
@danger-750: #5f0214; // Danger state — errors and destructive or critical actions. Step 750: darkest shades for text and high emphasis.
|
|
54
|
+
@danger-800: #44000a; // Danger state — errors and destructive or critical actions. Step 800: darkest shades for text and high emphasis.
|
|
55
|
+
@danger-850: #330005; // Danger state — errors and destructive or critical actions. Step 850: darkest shades for text and high emphasis.
|
|
56
|
+
@danger-900: #230002; // Danger state — errors and destructive or critical actions. Step 900: darkest shades for text and high emphasis.
|
|
57
|
+
@danger-950: #140001; // Danger state — errors and destructive or critical actions. Step 950: darkest shades for text and high emphasis.
|
|
58
|
+
@info-50: #e9eef7; // Informational state — neutral highlights, tips, and in-progress notices. Step 50: lightest tints for subtle backgrounds and surfaces.
|
|
59
|
+
@info-100: #d4ddeb; // Informational state — neutral highlights, tips, and in-progress notices. Step 100: lightest tints for subtle backgrounds and surfaces.
|
|
60
|
+
@info-150: #c0cce0; // Informational state — neutral highlights, tips, and in-progress notices. Step 150: lightest tints for subtle backgrounds and surfaces.
|
|
61
|
+
@info-200: #acbbd5; // Informational state — neutral highlights, tips, and in-progress notices. Step 200: lightest tints for subtle backgrounds and surfaces.
|
|
62
|
+
@info-250: #96a9cc; // Informational state — neutral highlights, tips, and in-progress notices. Step 250: lightest tints for subtle backgrounds and surfaces.
|
|
63
|
+
@info-300: #8098c2; // Informational state — neutral highlights, tips, and in-progress notices. Step 300: light tints.
|
|
64
|
+
@info-350: #6b86b8; // Informational state — neutral highlights, tips, and in-progress notices. Step 350: light tints.
|
|
65
|
+
@info-400: #5775ae; // Informational state — neutral highlights, tips, and in-progress notices. Step 400: light tints.
|
|
66
|
+
@info-450: #4d6ca9; // Informational state — neutral highlights, tips, and in-progress notices. Step 450: light tints.
|
|
67
|
+
@info-500: #4264a4; // Informational state — neutral highlights, tips, and in-progress notices. Step 500: base colour.
|
|
68
|
+
@info-550: #385b9e; // Informational state — neutral highlights, tips, and in-progress notices. Step 550: shades for borders and icons.
|
|
69
|
+
@info-600: #2e5299; // Informational state — neutral highlights, tips, and in-progress notices. Step 600: shades for borders and icons.
|
|
70
|
+
@info-650: #23427f; // Informational state — neutral highlights, tips, and in-progress notices. Step 650: shades for borders and icons.
|
|
71
|
+
@info-700: #193366; // Informational state — neutral highlights, tips, and in-progress notices. Step 700: shades for borders and icons.
|
|
72
|
+
@info-750: #10254f; // Informational state — neutral highlights, tips, and in-progress notices. Step 750: darkest shades for text and high emphasis.
|
|
73
|
+
@info-800: #071738; // Informational state — neutral highlights, tips, and in-progress notices. Step 800: darkest shades for text and high emphasis.
|
|
74
|
+
@info-850: #040f2a; // Informational state — neutral highlights, tips, and in-progress notices. Step 850: darkest shades for text and high emphasis.
|
|
75
|
+
@info-900: #02071c; // Informational state — neutral highlights, tips, and in-progress notices. Step 900: darkest shades for text and high emphasis.
|
|
76
|
+
@info-950: #00030f; // Informational state — neutral highlights, tips, and in-progress notices. Step 950: darkest shades for text and high emphasis.
|
|
@@ -1,76 +1,76 @@
|
|
|
1
|
-
@success-50: hsl(110, 50%, 95.294118%);
|
|
2
|
-
@success-100: hsl(114.285714, 46.666667%, 91.176471%);
|
|
3
|
-
@success-150: hsl(113.793103, 43.283582%, 86.862745%);
|
|
4
|
-
@success-200: hsl(113.513514, 41.573034%, 82.54902%);
|
|
5
|
-
@success-250: hsl(113.877551, 37.40458%, 74.313725%);
|
|
6
|
-
@success-300: hsl(115.081967, 35.260116%, 66.078431%);
|
|
7
|
-
@success-350: hsl(115.833333, 33.333333%, 57.647059%);
|
|
8
|
-
@success-400: hsl(117.142857, 33.333333%, 49.411765%);
|
|
9
|
-
@success-450: hsl(118.021978, 39.393939%, 45.294118%);
|
|
10
|
-
@success-500: hsl(118.181818, 47.826087%, 40.588235%);
|
|
11
|
-
@success-550: hsl(119.454545, 60.43956%, 35.686275%);
|
|
12
|
-
@success-600: hsl(123.043478, 100%, 27.058824%);
|
|
13
|
-
@success-650: hsl(122.105263, 100%, 22.352941%);
|
|
14
|
-
@success-700: hsl(121.333333, 100%, 17.647059%);
|
|
15
|
-
@success-750: hsl(120.882353, 100%, 13.333333%);
|
|
16
|
-
@success-800: hsl(120, 100%, 9.215686%);
|
|
17
|
-
@success-850: hsl(120, 100%, 6.666667%);
|
|
18
|
-
@success-900: hsl(120, 100%, 4.313725%);
|
|
19
|
-
@success-950: hsl(120, 100%, 2.156863%);
|
|
20
|
-
@warning-50: hsl(20, 100%, 96.470588%);
|
|
21
|
-
@warning-100: hsl(18.181818, 100%, 93.529412%);
|
|
22
|
-
@warning-150: hsl(17.5, 100%, 90.588235%);
|
|
23
|
-
@warning-200: hsl(17.704918, 93.846154%, 87.254902%);
|
|
24
|
-
@warning-250: hsl(17.777778, 81.818182%, 80.588235%);
|
|
25
|
-
@warning-300: hsl(18, 74.626866%, 73.72549%);
|
|
26
|
-
@warning-350: hsl(18.151261, 70.414201%, 66.862745%);
|
|
27
|
-
@warning-400: hsl(18.26087, 66.990291%, 59.607843%);
|
|
28
|
-
@warning-450: hsl(18.648649, 65.486726%, 55.686275%);
|
|
29
|
-
@warning-500: hsl(19.245283, 64.37247%, 51.568627%);
|
|
30
|
-
@warning-550: hsl(20.462428, 72.384937%, 46.862745%);
|
|
31
|
-
@warning-600: hsl(23.880597, 100%, 39.411765%);
|
|
32
|
-
@warning-650: hsl(21.818182, 96.491228%, 33.529412%);
|
|
33
|
-
@warning-700: hsl(19.849624, 95.683453%, 27.254902%);
|
|
34
|
-
@warning-750: hsl(17.884615, 98.113208%, 20.784314%);
|
|
35
|
-
@warning-800: hsl(14.4, 100%, 14.705882%);
|
|
36
|
-
@warning-850: hsl(10.526316, 100%, 11.176471%);
|
|
37
|
-
@warning-900: hsl(6.153846, 100%, 7.647059%);
|
|
38
|
-
@warning-950: hsl(2.608696, 100%, 4.509804%);
|
|
39
|
-
@danger-50: hsl(3.75, 100%, 96.862745%);
|
|
40
|
-
@danger-100: hsl(2, 100%, 94.117647%);
|
|
41
|
-
@danger-150: hsl(0, 100%, 91.568627%);
|
|
42
|
-
@danger-200: hsl(0, 93.220339%, 88.431373%);
|
|
43
|
-
@danger-250: hsl(359.166667, 76.595745%, 81.568627%);
|
|
44
|
-
@danger-300: hsl(358.636364, 67.692308%, 74.509804%);
|
|
45
|
-
@danger-350: hsl(357.669903, 61.676647%, 67.254902%);
|
|
46
|
-
@danger-400: hsl(355.932203, 57.281553%, 59.607843%);
|
|
47
|
-
@danger-450: hsl(354.80315, 55.947137%, 55.490196%);
|
|
48
|
-
@danger-500: hsl(353.333333, 54.216867%, 51.176471%);
|
|
49
|
-
@danger-550: hsl(351.020408, 62.553191%, 46.078431%);
|
|
50
|
-
@danger-600: hsl(346.626506, 82.178218%, 39.607843%);
|
|
51
|
-
@danger-650: hsl(346.901408, 86.585366%, 32.156863%);
|
|
52
|
-
@danger-700: hsl(347.288136, 90.769231%, 25.490196%);
|
|
53
|
-
@danger-750: hsl(348.387097, 95.876289%, 19.019608%);
|
|
54
|
-
@danger-800: hsl(351.176471, 100%, 13.333333%);
|
|
55
|
-
@danger-850: hsl(354.117647, 100%, 10%);
|
|
56
|
-
@danger-900: hsl(356.571429, 100%, 6.862745%);
|
|
57
|
-
@danger-950: hsl(357, 100%, 3.921569%);
|
|
58
|
-
@info-50: hsl(218.571429, 46.666667%, 94.117647%);
|
|
59
|
-
@info-100: hsl(216.521739, 36.507937%, 87.647059%);
|
|
60
|
-
@info-150: hsl(217.5, 34.042553%, 81.568627%);
|
|
61
|
-
@info-200: hsl(218.04878, 32.8%, 75.490196%);
|
|
62
|
-
@info-250: hsl(218.888889, 34.615385%, 69.411765%);
|
|
63
|
-
@info-300: hsl(218.181818, 35.106383%, 63.137255%);
|
|
64
|
-
@info-350: hsl(218.961039, 35.159817%, 57.058824%);
|
|
65
|
-
@info-400: hsl(219.310345, 34.939759%, 51.176471%);
|
|
66
|
-
@info-450: hsl(219.782609, 37.398374%, 48.235294%);
|
|
67
|
-
@info-500: hsl(219.183673, 42.608696%, 45.098039%);
|
|
68
|
-
@info-550: hsl(219.411765, 47.663551%, 41.960784%);
|
|
69
|
-
@info-600: hsl(219.813084, 53.768844%, 39.019608%);
|
|
70
|
-
@info-650: hsl(219.782609, 56.790123%, 31.764706%);
|
|
71
|
-
@info-700: hsl(219.74026, 60.629921%, 24.901961%);
|
|
72
|
-
@info-750: hsl(220, 66.315789%, 18.627451%);
|
|
73
|
-
@info-800: hsl(220.408163, 77.777778%, 12.352941%);
|
|
74
|
-
@info-850: hsl(222.631579, 82.608696%, 9.019608%);
|
|
75
|
-
@info-900: hsl(228.461538, 86.666667%, 5.882353%);
|
|
76
|
-
@info-950: hsl(228, 100%, 2.941176%);
|
|
1
|
+
@success-50: hsl(110, 50%, 95.294118%); // Success state — positive outcomes, confirmations, and completed actions. Step 50: lightest tints for subtle backgrounds and surfaces.
|
|
2
|
+
@success-100: hsl(114.285714, 46.666667%, 91.176471%); // Success state — positive outcomes, confirmations, and completed actions. Step 100: lightest tints for subtle backgrounds and surfaces.
|
|
3
|
+
@success-150: hsl(113.793103, 43.283582%, 86.862745%); // Success state — positive outcomes, confirmations, and completed actions. Step 150: lightest tints for subtle backgrounds and surfaces.
|
|
4
|
+
@success-200: hsl(113.513514, 41.573034%, 82.54902%); // Success state — positive outcomes, confirmations, and completed actions. Step 200: lightest tints for subtle backgrounds and surfaces.
|
|
5
|
+
@success-250: hsl(113.877551, 37.40458%, 74.313725%); // Success state — positive outcomes, confirmations, and completed actions. Step 250: lightest tints for subtle backgrounds and surfaces.
|
|
6
|
+
@success-300: hsl(115.081967, 35.260116%, 66.078431%); // Success state — positive outcomes, confirmations, and completed actions. Step 300: light tints.
|
|
7
|
+
@success-350: hsl(115.833333, 33.333333%, 57.647059%); // Success state — positive outcomes, confirmations, and completed actions. Step 350: light tints.
|
|
8
|
+
@success-400: hsl(117.142857, 33.333333%, 49.411765%); // Success state — positive outcomes, confirmations, and completed actions. Step 400: light tints.
|
|
9
|
+
@success-450: hsl(118.021978, 39.393939%, 45.294118%); // Success state — positive outcomes, confirmations, and completed actions. Step 450: light tints.
|
|
10
|
+
@success-500: hsl(118.181818, 47.826087%, 40.588235%); // Success state — positive outcomes, confirmations, and completed actions. Step 500: base colour.
|
|
11
|
+
@success-550: hsl(119.454545, 60.43956%, 35.686275%); // Success state — positive outcomes, confirmations, and completed actions. Step 550: shades for borders and icons.
|
|
12
|
+
@success-600: hsl(123.043478, 100%, 27.058824%); // Success state — positive outcomes, confirmations, and completed actions. Step 600: shades for borders and icons.
|
|
13
|
+
@success-650: hsl(122.105263, 100%, 22.352941%); // Success state — positive outcomes, confirmations, and completed actions. Step 650: shades for borders and icons.
|
|
14
|
+
@success-700: hsl(121.333333, 100%, 17.647059%); // Success state — positive outcomes, confirmations, and completed actions. Step 700: shades for borders and icons.
|
|
15
|
+
@success-750: hsl(120.882353, 100%, 13.333333%); // Success state — positive outcomes, confirmations, and completed actions. Step 750: darkest shades for text and high emphasis.
|
|
16
|
+
@success-800: hsl(120, 100%, 9.215686%); // Success state — positive outcomes, confirmations, and completed actions. Step 800: darkest shades for text and high emphasis.
|
|
17
|
+
@success-850: hsl(120, 100%, 6.666667%); // Success state — positive outcomes, confirmations, and completed actions. Step 850: darkest shades for text and high emphasis.
|
|
18
|
+
@success-900: hsl(120, 100%, 4.313725%); // Success state — positive outcomes, confirmations, and completed actions. Step 900: darkest shades for text and high emphasis.
|
|
19
|
+
@success-950: hsl(120, 100%, 2.156863%); // Success state — positive outcomes, confirmations, and completed actions. Step 950: darkest shades for text and high emphasis.
|
|
20
|
+
@warning-50: hsl(20, 100%, 96.470588%); // Warning state — caution and actions that need attention. Step 50: lightest tints for subtle backgrounds and surfaces.
|
|
21
|
+
@warning-100: hsl(18.181818, 100%, 93.529412%); // Warning state — caution and actions that need attention. Step 100: lightest tints for subtle backgrounds and surfaces.
|
|
22
|
+
@warning-150: hsl(17.5, 100%, 90.588235%); // Warning state — caution and actions that need attention. Step 150: lightest tints for subtle backgrounds and surfaces.
|
|
23
|
+
@warning-200: hsl(17.704918, 93.846154%, 87.254902%); // Warning state — caution and actions that need attention. Step 200: lightest tints for subtle backgrounds and surfaces.
|
|
24
|
+
@warning-250: hsl(17.777778, 81.818182%, 80.588235%); // Warning state — caution and actions that need attention. Step 250: lightest tints for subtle backgrounds and surfaces.
|
|
25
|
+
@warning-300: hsl(18, 74.626866%, 73.72549%); // Warning state — caution and actions that need attention. Step 300: light tints.
|
|
26
|
+
@warning-350: hsl(18.151261, 70.414201%, 66.862745%); // Warning state — caution and actions that need attention. Step 350: light tints.
|
|
27
|
+
@warning-400: hsl(18.26087, 66.990291%, 59.607843%); // Warning state — caution and actions that need attention. Step 400: light tints.
|
|
28
|
+
@warning-450: hsl(18.648649, 65.486726%, 55.686275%); // Warning state — caution and actions that need attention. Step 450: light tints.
|
|
29
|
+
@warning-500: hsl(19.245283, 64.37247%, 51.568627%); // Warning state — caution and actions that need attention. Step 500: base colour.
|
|
30
|
+
@warning-550: hsl(20.462428, 72.384937%, 46.862745%); // Warning state — caution and actions that need attention. Step 550: shades for borders and icons.
|
|
31
|
+
@warning-600: hsl(23.880597, 100%, 39.411765%); // Warning state — caution and actions that need attention. Step 600: shades for borders and icons.
|
|
32
|
+
@warning-650: hsl(21.818182, 96.491228%, 33.529412%); // Warning state — caution and actions that need attention. Step 650: shades for borders and icons.
|
|
33
|
+
@warning-700: hsl(19.849624, 95.683453%, 27.254902%); // Warning state — caution and actions that need attention. Step 700: shades for borders and icons.
|
|
34
|
+
@warning-750: hsl(17.884615, 98.113208%, 20.784314%); // Warning state — caution and actions that need attention. Step 750: darkest shades for text and high emphasis.
|
|
35
|
+
@warning-800: hsl(14.4, 100%, 14.705882%); // Warning state — caution and actions that need attention. Step 800: darkest shades for text and high emphasis.
|
|
36
|
+
@warning-850: hsl(10.526316, 100%, 11.176471%); // Warning state — caution and actions that need attention. Step 850: darkest shades for text and high emphasis.
|
|
37
|
+
@warning-900: hsl(6.153846, 100%, 7.647059%); // Warning state — caution and actions that need attention. Step 900: darkest shades for text and high emphasis.
|
|
38
|
+
@warning-950: hsl(2.608696, 100%, 4.509804%); // Warning state — caution and actions that need attention. Step 950: darkest shades for text and high emphasis.
|
|
39
|
+
@danger-50: hsl(3.75, 100%, 96.862745%); // Danger state — errors and destructive or critical actions. Step 50: lightest tints for subtle backgrounds and surfaces.
|
|
40
|
+
@danger-100: hsl(2, 100%, 94.117647%); // Danger state — errors and destructive or critical actions. Step 100: lightest tints for subtle backgrounds and surfaces.
|
|
41
|
+
@danger-150: hsl(0, 100%, 91.568627%); // Danger state — errors and destructive or critical actions. Step 150: lightest tints for subtle backgrounds and surfaces.
|
|
42
|
+
@danger-200: hsl(0, 93.220339%, 88.431373%); // Danger state — errors and destructive or critical actions. Step 200: lightest tints for subtle backgrounds and surfaces.
|
|
43
|
+
@danger-250: hsl(359.166667, 76.595745%, 81.568627%); // Danger state — errors and destructive or critical actions. Step 250: lightest tints for subtle backgrounds and surfaces.
|
|
44
|
+
@danger-300: hsl(358.636364, 67.692308%, 74.509804%); // Danger state — errors and destructive or critical actions. Step 300: light tints.
|
|
45
|
+
@danger-350: hsl(357.669903, 61.676647%, 67.254902%); // Danger state — errors and destructive or critical actions. Step 350: light tints.
|
|
46
|
+
@danger-400: hsl(355.932203, 57.281553%, 59.607843%); // Danger state — errors and destructive or critical actions. Step 400: light tints.
|
|
47
|
+
@danger-450: hsl(354.80315, 55.947137%, 55.490196%); // Danger state — errors and destructive or critical actions. Step 450: light tints.
|
|
48
|
+
@danger-500: hsl(353.333333, 54.216867%, 51.176471%); // Danger state — errors and destructive or critical actions. Step 500: base colour.
|
|
49
|
+
@danger-550: hsl(351.020408, 62.553191%, 46.078431%); // Danger state — errors and destructive or critical actions. Step 550: shades for borders and icons.
|
|
50
|
+
@danger-600: hsl(346.626506, 82.178218%, 39.607843%); // Danger state — errors and destructive or critical actions. Step 600: shades for borders and icons.
|
|
51
|
+
@danger-650: hsl(346.901408, 86.585366%, 32.156863%); // Danger state — errors and destructive or critical actions. Step 650: shades for borders and icons.
|
|
52
|
+
@danger-700: hsl(347.288136, 90.769231%, 25.490196%); // Danger state — errors and destructive or critical actions. Step 700: shades for borders and icons.
|
|
53
|
+
@danger-750: hsl(348.387097, 95.876289%, 19.019608%); // Danger state — errors and destructive or critical actions. Step 750: darkest shades for text and high emphasis.
|
|
54
|
+
@danger-800: hsl(351.176471, 100%, 13.333333%); // Danger state — errors and destructive or critical actions. Step 800: darkest shades for text and high emphasis.
|
|
55
|
+
@danger-850: hsl(354.117647, 100%, 10%); // Danger state — errors and destructive or critical actions. Step 850: darkest shades for text and high emphasis.
|
|
56
|
+
@danger-900: hsl(356.571429, 100%, 6.862745%); // Danger state — errors and destructive or critical actions. Step 900: darkest shades for text and high emphasis.
|
|
57
|
+
@danger-950: hsl(357, 100%, 3.921569%); // Danger state — errors and destructive or critical actions. Step 950: darkest shades for text and high emphasis.
|
|
58
|
+
@info-50: hsl(218.571429, 46.666667%, 94.117647%); // Informational state — neutral highlights, tips, and in-progress notices. Step 50: lightest tints for subtle backgrounds and surfaces.
|
|
59
|
+
@info-100: hsl(216.521739, 36.507937%, 87.647059%); // Informational state — neutral highlights, tips, and in-progress notices. Step 100: lightest tints for subtle backgrounds and surfaces.
|
|
60
|
+
@info-150: hsl(217.5, 34.042553%, 81.568627%); // Informational state — neutral highlights, tips, and in-progress notices. Step 150: lightest tints for subtle backgrounds and surfaces.
|
|
61
|
+
@info-200: hsl(218.04878, 32.8%, 75.490196%); // Informational state — neutral highlights, tips, and in-progress notices. Step 200: lightest tints for subtle backgrounds and surfaces.
|
|
62
|
+
@info-250: hsl(218.888889, 34.615385%, 69.411765%); // Informational state — neutral highlights, tips, and in-progress notices. Step 250: lightest tints for subtle backgrounds and surfaces.
|
|
63
|
+
@info-300: hsl(218.181818, 35.106383%, 63.137255%); // Informational state — neutral highlights, tips, and in-progress notices. Step 300: light tints.
|
|
64
|
+
@info-350: hsl(218.961039, 35.159817%, 57.058824%); // Informational state — neutral highlights, tips, and in-progress notices. Step 350: light tints.
|
|
65
|
+
@info-400: hsl(219.310345, 34.939759%, 51.176471%); // Informational state — neutral highlights, tips, and in-progress notices. Step 400: light tints.
|
|
66
|
+
@info-450: hsl(219.782609, 37.398374%, 48.235294%); // Informational state — neutral highlights, tips, and in-progress notices. Step 450: light tints.
|
|
67
|
+
@info-500: hsl(219.183673, 42.608696%, 45.098039%); // Informational state — neutral highlights, tips, and in-progress notices. Step 500: base colour.
|
|
68
|
+
@info-550: hsl(219.411765, 47.663551%, 41.960784%); // Informational state — neutral highlights, tips, and in-progress notices. Step 550: shades for borders and icons.
|
|
69
|
+
@info-600: hsl(219.813084, 53.768844%, 39.019608%); // Informational state — neutral highlights, tips, and in-progress notices. Step 600: shades for borders and icons.
|
|
70
|
+
@info-650: hsl(219.782609, 56.790123%, 31.764706%); // Informational state — neutral highlights, tips, and in-progress notices. Step 650: shades for borders and icons.
|
|
71
|
+
@info-700: hsl(219.74026, 60.629921%, 24.901961%); // Informational state — neutral highlights, tips, and in-progress notices. Step 700: shades for borders and icons.
|
|
72
|
+
@info-750: hsl(220, 66.315789%, 18.627451%); // Informational state — neutral highlights, tips, and in-progress notices. Step 750: darkest shades for text and high emphasis.
|
|
73
|
+
@info-800: hsl(220.408163, 77.777778%, 12.352941%); // Informational state — neutral highlights, tips, and in-progress notices. Step 800: darkest shades for text and high emphasis.
|
|
74
|
+
@info-850: hsl(222.631579, 82.608696%, 9.019608%); // Informational state — neutral highlights, tips, and in-progress notices. Step 850: darkest shades for text and high emphasis.
|
|
75
|
+
@info-900: hsl(228.461538, 86.666667%, 5.882353%); // Informational state — neutral highlights, tips, and in-progress notices. Step 900: darkest shades for text and high emphasis.
|
|
76
|
+
@info-950: hsl(228, 100%, 2.941176%); // Informational state — neutral highlights, tips, and in-progress notices. Step 950: darkest shades for text and high emphasis.
|