orbit-ds-variables 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +174 -0
- package/dist/css/platforms/desktop/variables.css +100 -0
- package/dist/css/platforms/ipad/variables.css +100 -0
- package/dist/css/platforms/web/variables.css +100 -0
- package/dist/css/primitives/variables.css +91 -0
- package/dist/css/themes/d-green/index.css +3 -0
- package/dist/css/themes/d-green/variables.css +93 -0
- package/dist/css/themes/d-grey/index.css +3 -0
- package/dist/css/themes/d-grey/variables.css +93 -0
- package/dist/css/themes/n-blue/index.css +3 -0
- package/dist/css/themes/n-blue/variables.css +93 -0
- package/dist/css/themes/n-green/index.css +3 -0
- package/dist/css/themes/n-green/variables.css +93 -0
- package/dist/css/themes/n-grey/index.css +3 -0
- package/dist/css/themes/n-grey/variables.css +93 -0
- package/dist/scss/_index.scss +10 -0
- package/dist/scss/platforms/desktop/_variables.scss +97 -0
- package/dist/scss/platforms/ipad/_variables.scss +97 -0
- package/dist/scss/platforms/web/_variables.scss +97 -0
- package/dist/scss/primitives/_variables.scss +88 -0
- package/dist/scss/themes/d-green/_variables.scss +90 -0
- package/dist/scss/themes/d-grey/_variables.scss +90 -0
- package/dist/scss/themes/n-blue/_variables.scss +90 -0
- package/dist/scss/themes/n-green/_variables.scss +90 -0
- package/dist/scss/themes/n-grey/_variables.scss +90 -0
- package/dist/tailwind/index.js +13 -0
- package/dist/tailwind/platforms/desktop/theme.js +88 -0
- package/dist/tailwind/platforms/desktop/tokens.js +141 -0
- package/dist/tailwind/platforms/ipad/theme.js +88 -0
- package/dist/tailwind/platforms/ipad/tokens.js +141 -0
- package/dist/tailwind/platforms/web/theme.js +88 -0
- package/dist/tailwind/platforms/web/tokens.js +141 -0
- package/dist/tailwind/primitives/colors.js +112 -0
- package/dist/tailwind/themes/d-green/colors.js +120 -0
- package/dist/tailwind/themes/d-grey/colors.js +120 -0
- package/dist/tailwind/themes/n-blue/colors.js +120 -0
- package/dist/tailwind/themes/n-green/colors.js +120 -0
- package/dist/tailwind/themes/n-grey/colors.js +120 -0
- package/package.json +32 -0
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
|
|
2
|
+
// Do not edit directly, this file was auto-generated.
|
|
3
|
+
|
|
4
|
+
$font-font-weight-body: Medium;
|
|
5
|
+
$font-font-weight-comment: Regular;
|
|
6
|
+
$font-font-weight-body-small: Medium;
|
|
7
|
+
$font-font-weight-title: Bold;
|
|
8
|
+
$font-font-weight-body-input: Semi Bold;
|
|
9
|
+
$font-font-weight-body-big: Medium;
|
|
10
|
+
$font-letter-spacing-title-4: 24;
|
|
11
|
+
$font-font-size-body: 13;
|
|
12
|
+
$font-font-size-body-small: 11;
|
|
13
|
+
$font-font-size-title-3: 18;
|
|
14
|
+
$font-font-size-title-2: 24;
|
|
15
|
+
$font-font-size-title-1: 36;
|
|
16
|
+
$font-font-size-body-input: 13;
|
|
17
|
+
$font-font-size-title-4: 13;
|
|
18
|
+
$font-font-size-comment: 13;
|
|
19
|
+
$font-font-size-title-5: 13;
|
|
20
|
+
$font-font-size-title-6: 13;
|
|
21
|
+
$font-font-size-body-big: 17;
|
|
22
|
+
$font-line-height-title-1: 42;
|
|
23
|
+
$font-line-height-title-2: 30;
|
|
24
|
+
$font-line-height-t-itle-3: 23;
|
|
25
|
+
$font-line-height-body: 20;
|
|
26
|
+
$font-line-height-body-small: 17;
|
|
27
|
+
$font-line-height-body-input: 13;
|
|
28
|
+
$font-line-height-title-4: 18;
|
|
29
|
+
$font-line-height-comment: 20;
|
|
30
|
+
$font-line-height-title-5: 18;
|
|
31
|
+
$font-line-height-title-6: 18;
|
|
32
|
+
$font-line-height-body-big: 17;
|
|
33
|
+
$platform: Desktop;
|
|
34
|
+
$icon-default: 24;
|
|
35
|
+
$icon-small: 18;
|
|
36
|
+
$icon-big: 36;
|
|
37
|
+
$gap-0: 0;
|
|
38
|
+
$gap-l: 18;
|
|
39
|
+
$gap-m: 12;
|
|
40
|
+
$gap-s: 6;
|
|
41
|
+
$gap-xs: 4;
|
|
42
|
+
$gap-xl: 24;
|
|
43
|
+
$gap-xxl: 36;
|
|
44
|
+
$gap-xxs: 2;
|
|
45
|
+
$gap-ml: 16;
|
|
46
|
+
$components-input-button-select-compact-height: 24;
|
|
47
|
+
$components-input-button-select-default: 36;
|
|
48
|
+
$components-input-button-select-min-height-textarea: 128;
|
|
49
|
+
$components-input-button-select-border-width: 1;
|
|
50
|
+
$components-input-button-select-min-width-hidden: 84;
|
|
51
|
+
$components-input-button-select-min-width-compact-hidden: 66;
|
|
52
|
+
$components-input-button-select-top-offset: 9; // Used to make top offset inside the Input, because input needs to be V align Top
|
|
53
|
+
$components-input-button-select-nested-option-offset: 32; // Used to make top offset inside the Input, because input needs to be V align Top
|
|
54
|
+
$components-input-button-select-compact-min-width: 24;
|
|
55
|
+
$components-titles-and-tabs-header: 36;
|
|
56
|
+
$components-toolbar-toolbar: 40;
|
|
57
|
+
$components-action-menu-item-action-menu: 36;
|
|
58
|
+
$components-e-was-nav-item-height-horizontal: 55;
|
|
59
|
+
$components-e-was-nav-item-height-split-view: 55;
|
|
60
|
+
$components-e-was-nav-item-height-vertical: 55;
|
|
61
|
+
$components-e-was-nav-item-width-horizontal: 72;
|
|
62
|
+
$components-e-was-nav-item-width-split-view: 45;
|
|
63
|
+
$components-e-was-nav-item-width-vertical: 60;
|
|
64
|
+
$components-chip-height-default: 32;
|
|
65
|
+
$components-chip-height-compact: 26;
|
|
66
|
+
$radius-s: 4;
|
|
67
|
+
$radius-m: 8;
|
|
68
|
+
$radius-l: 12;
|
|
69
|
+
$radius-card: 8;
|
|
70
|
+
$radius-input: 4;
|
|
71
|
+
$radius-section: 8;
|
|
72
|
+
$radius-action-menu: 4;
|
|
73
|
+
$radius-popup-message: 8;
|
|
74
|
+
$radius-xl: 24;
|
|
75
|
+
$radius-chip: 24;
|
|
76
|
+
$radius-chip-squared: 4;
|
|
77
|
+
$padding-vertical-0: 0;
|
|
78
|
+
$padding-vertical-xs: 4;
|
|
79
|
+
$padding-vertical-s: 8;
|
|
80
|
+
$padding-vertical-m: 12;
|
|
81
|
+
$padding-vertical-l: 18;
|
|
82
|
+
$padding-vertical-xl: 24;
|
|
83
|
+
$padding-vertical-xxl: 36;
|
|
84
|
+
$padding-vertical-xxs: 2;
|
|
85
|
+
$padding-vertical-ml: 16;
|
|
86
|
+
$padding-horizontal-0: 0;
|
|
87
|
+
$padding-horizontal-xs: 4;
|
|
88
|
+
$padding-horizontal-s: 8;
|
|
89
|
+
$padding-horizontal-m: 12;
|
|
90
|
+
$padding-horizontal-l: 18;
|
|
91
|
+
$padding-horizontal-xl: 24;
|
|
92
|
+
$padding-horizontal-xxl: 36;
|
|
93
|
+
$padding-horizontal-xxs: 2;
|
|
94
|
+
$padding-horizontal-ml: 16;
|
|
95
|
+
$icon-frame-size-small: 18;
|
|
96
|
+
$icon-frame-size-default: 24;
|
|
97
|
+
$icon-frame-size-big: 36;
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
|
|
2
|
+
// Do not edit directly, this file was auto-generated.
|
|
3
|
+
|
|
4
|
+
$system-feedback-neutral-tbd: #00eaea;
|
|
5
|
+
$system-feedback-success: #439f35;
|
|
6
|
+
$system-feedback-attention: #f5821f;
|
|
7
|
+
$system-feedback-warning: #ff0000;
|
|
8
|
+
$system-feedback-critical: #ff47e0;
|
|
9
|
+
$blue-50: #ebf1fd;
|
|
10
|
+
$blue-100: #37c0ff;
|
|
11
|
+
$blue-200: #0095da;
|
|
12
|
+
$blue-250: #1ab2f8;
|
|
13
|
+
$blue-300: #0071bb;
|
|
14
|
+
$blue-350: #12597c;
|
|
15
|
+
$blue-400: #1f3048;
|
|
16
|
+
$blue-425: #202d41;
|
|
17
|
+
$blue-450: #1d283a;
|
|
18
|
+
$blue-500: #1a2434;
|
|
19
|
+
$green-50: #dae8d8;
|
|
20
|
+
$green-100: #daf1da;
|
|
21
|
+
$green-150: #c7eac7;
|
|
22
|
+
$green-175: #e6f7f1;
|
|
23
|
+
$green-200: #8af28a;
|
|
24
|
+
$green-300: #78ce6b;
|
|
25
|
+
$green-315: #86c57c;
|
|
26
|
+
$green-320: #308723;
|
|
27
|
+
$green-325: #58bd47;
|
|
28
|
+
$green-350: #306228;
|
|
29
|
+
$green-400: #446b44;
|
|
30
|
+
$green-500: #374f37;
|
|
31
|
+
$green-525: #2b3e2b;
|
|
32
|
+
$green-550: #2e4c29;
|
|
33
|
+
$green-600: #263f22;
|
|
34
|
+
$green-600-copy: #263f22;
|
|
35
|
+
$neutral-0: #ffffff;
|
|
36
|
+
$neutral-100: #fafafa;
|
|
37
|
+
$neutral-200: #f5f5f5;
|
|
38
|
+
$neutral-300: #e8e8e3;
|
|
39
|
+
$neutral-350: #363636;
|
|
40
|
+
$neutral-400: #2e2e2e;
|
|
41
|
+
$neutral-500: #242424;
|
|
42
|
+
$neutral-600: #1d1d1d;
|
|
43
|
+
$neutral-700: #141414;
|
|
44
|
+
$neutral-10000: #000000;
|
|
45
|
+
$cyan-500: #00eaea;
|
|
46
|
+
$orange-100: #f5e4d5;
|
|
47
|
+
$orange-200: #f2dbca;
|
|
48
|
+
$orange-300: #fff3e7;
|
|
49
|
+
$orange-400: #e88a33;
|
|
50
|
+
$orange-500: #e26800;
|
|
51
|
+
$orange-600: #f5821f;
|
|
52
|
+
$orange-700: #5a3d21;
|
|
53
|
+
$orange-800: #592f00;
|
|
54
|
+
$red-100: #f8cece;
|
|
55
|
+
$red-200: #f6c1c1;
|
|
56
|
+
$red-300: #fceeeb;
|
|
57
|
+
$red-350: #ff4a4a;
|
|
58
|
+
$red-500: #d61f1f;
|
|
59
|
+
$red-700: #711414;
|
|
60
|
+
$magenta-100: #f7dbf2;
|
|
61
|
+
$magenta-200: #f6e4f3;
|
|
62
|
+
$magenta-300: #ff47e0;
|
|
63
|
+
$magenta-400: #e222c1;
|
|
64
|
+
$magenta-500: #532d4c;
|
|
65
|
+
$magenta-600: #5d2d55;
|
|
66
|
+
$neutral-alpha-10: rgba(36, 36, 36, 0.1);
|
|
67
|
+
$neutral-alpha-20: rgba(36, 36, 36, 0.2);
|
|
68
|
+
$neutral-alpha-25: rgba(36, 36, 36, 0.25);
|
|
69
|
+
$neutral-alpha-65: rgba(36, 36, 36, 0.65);
|
|
70
|
+
$white-alpha-1: rgba(255, 255, 255, 0.01);
|
|
71
|
+
$white-alpha-2: rgba(255, 255, 255, 0.02);
|
|
72
|
+
$white-alpha-3: rgba(255, 255, 255, 0.03);
|
|
73
|
+
$white-alpha-5: rgba(255, 255, 255, 0.05);
|
|
74
|
+
$white-alpha-7: rgba(255, 255, 255, 0.07);
|
|
75
|
+
$white-alpha-15: rgba(255, 255, 255, 0.15);
|
|
76
|
+
$white-alpha-25: rgba(255, 255, 255, 0.25);
|
|
77
|
+
$white-alpha-30: rgba(255, 255, 255, 0.3);
|
|
78
|
+
$white-alpha-50: rgba(255, 255, 255, 0.5);
|
|
79
|
+
$white-alpha-60: rgba(255, 255, 255, 0.6);
|
|
80
|
+
$white-alpha-65: rgba(255, 255, 255, 0.65);
|
|
81
|
+
$black-alpha-1: rgba(0, 0, 0, 0.01);
|
|
82
|
+
$black-alpha-2: rgba(0, 0, 0, 0.02);
|
|
83
|
+
$black-alpha-4: rgba(0, 0, 0, 0.04);
|
|
84
|
+
$black-alpha-10: rgba(0, 0, 0, 0.1);
|
|
85
|
+
$black-alpha-14: rgba(0, 0, 0, 0.14);
|
|
86
|
+
$black-alpha-20: rgba(0, 0, 0, 0.2);
|
|
87
|
+
$black-alpha-30: rgba(0, 0, 0, 0.3);
|
|
88
|
+
$black-alpha-35: rgba(0, 0, 0, 0.35);
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
|
|
2
|
+
// Do not edit directly, this file was auto-generated.
|
|
3
|
+
|
|
4
|
+
$shadow-action-menu: rgba(0, 0, 0, 0.15);
|
|
5
|
+
$shadow-navigation: rgba(0, 0, 0, 0.07);
|
|
6
|
+
$shadow-card: rgba(0, 0, 0, 0.1);
|
|
7
|
+
$shadow-popup-message: rgba(0, 0, 0, 0.3);
|
|
8
|
+
$shadow-submit-section: rgba(0, 0, 0, 0.2);
|
|
9
|
+
$shadow-chip: rgba(0, 0, 0, 0.3);
|
|
10
|
+
$chips-attemtion-default: #ffffff;
|
|
11
|
+
$chips-attemtion-hover: #ffffff;
|
|
12
|
+
$chips-attemtion-selected: #ffffff;
|
|
13
|
+
$chips-warning-default: #ffffff;
|
|
14
|
+
$chips-warning-hover: #ffffff;
|
|
15
|
+
$chips-warning-selected: #ffffff;
|
|
16
|
+
$chips-success-default: #ffffff;
|
|
17
|
+
$chips-success-hover: #ffffff;
|
|
18
|
+
$chips-success-selected: #ffffff;
|
|
19
|
+
$chips-critical-default: #ffffff;
|
|
20
|
+
$chips-critical-hover: #ffffff;
|
|
21
|
+
$chips-critical-selected: #ffffff;
|
|
22
|
+
$chips-blue-default: #ffffff;
|
|
23
|
+
$chips-blue-hover: #ffffff;
|
|
24
|
+
$chips-blue-selected: #ffffff;
|
|
25
|
+
$xtra-sergei-variables-bg-darker: $black-alpha-2;
|
|
26
|
+
$xtra-sergei-variables-bg-lighter: $white-alpha-60;
|
|
27
|
+
$xtra-sergei-variables-documet-line-formerly-on-bg-disabled: $neutral-alpha-20;
|
|
28
|
+
$xtra-sergei-variables-bg-accent: $black-alpha-2; // BG dark inverse
|
|
29
|
+
$xtra-sergei-variables-always-black: $neutral-10000;
|
|
30
|
+
$xtra-sergei-variables-always-white: $neutral-0;
|
|
31
|
+
$xtra-sergei-variables-bg-2: $neutral-100;
|
|
32
|
+
$xtra-sergei-variables-bg-accent-inverted: $white-alpha-65; // BG light inverse
|
|
33
|
+
$xtra-sergei-variables-on-action-hover: $neutral-100;
|
|
34
|
+
$xtra-sergei-variables-on-action-active: $neutral-0;
|
|
35
|
+
$xtra-sergei-variables-bg-accent-2: $black-alpha-10; // BG light inverse
|
|
36
|
+
$border-primary: $neutral-alpha-25;
|
|
37
|
+
$border-secondary: $neutral-alpha-10;
|
|
38
|
+
$border-action: $green-400;
|
|
39
|
+
$border-action-hover: $green-600;
|
|
40
|
+
$border-attention: $orange-500;
|
|
41
|
+
$border-neutral: $blue-50;
|
|
42
|
+
$text-action: $green-525;
|
|
43
|
+
$text-action-hover: $green-600;
|
|
44
|
+
$text-primary: $neutral-500;
|
|
45
|
+
$text-secondary: $neutral-alpha-65;
|
|
46
|
+
$text-on-action: $neutral-100;
|
|
47
|
+
$text-action-active: $neutral-10000;
|
|
48
|
+
$text-disabled: $black-alpha-30;
|
|
49
|
+
$text-on-disabled: $neutral-200;
|
|
50
|
+
$text-attention: $orange-500;
|
|
51
|
+
$text-warning: $red-500;
|
|
52
|
+
$text-critical: $magenta-400;
|
|
53
|
+
$text-on-success-container-variant: $green-300;
|
|
54
|
+
$text-on-attention-container: $orange-600;
|
|
55
|
+
$text-on-success-container: $green-325;
|
|
56
|
+
$text-on-attention-container-variant: $orange-600;
|
|
57
|
+
$text-success: $green-320;
|
|
58
|
+
$text-on-warning-container: $red-500;
|
|
59
|
+
$text-on-warning-container-variant: $red-500;
|
|
60
|
+
$text-on-critical-container: $magenta-300;
|
|
61
|
+
$background-background: $neutral-200;
|
|
62
|
+
$background-inside-surface-2: $black-alpha-4;
|
|
63
|
+
$background-inside-surface-1: $white-alpha-65;
|
|
64
|
+
$background-surface-container-2: $neutral-100;
|
|
65
|
+
$background-surface-container-1: $neutral-0;
|
|
66
|
+
$background-input-fields: $black-alpha-2;
|
|
67
|
+
$background-success-container-variant: $green-100;
|
|
68
|
+
$background-attention-container: $orange-100;
|
|
69
|
+
$background-warning-container-variant: $red-100;
|
|
70
|
+
$background-success-container: $green-150;
|
|
71
|
+
$background-attention-container-variant: $orange-200;
|
|
72
|
+
$background-warning-container: $red-100;
|
|
73
|
+
$background-critical-container: $magenta-100;
|
|
74
|
+
$background-critical-container-variant: $magenta-200;
|
|
75
|
+
$background-action: $green-525;
|
|
76
|
+
$background-disabled: $black-alpha-30;
|
|
77
|
+
$background-action-hover: $green-550;
|
|
78
|
+
$background-neutral-container: $blue-50;
|
|
79
|
+
$background-surface-container-3: $neutral-200;
|
|
80
|
+
$chips-neutral-color-neutral: $neutral-500;
|
|
81
|
+
$chips-neutral-color-neutral-2: $neutral-500;
|
|
82
|
+
$chips-neutral-color-hover: $neutral-500;
|
|
83
|
+
$chips-neutral-color-checked: $neutral-500;
|
|
84
|
+
$icon-secondary: $neutral-alpha-65;
|
|
85
|
+
$icon-action: $green-525;
|
|
86
|
+
$icon-disabled: $black-alpha-20;
|
|
87
|
+
$icon-primary: $neutral-500;
|
|
88
|
+
$icon-on-action: $neutral-100;
|
|
89
|
+
$icon-attention: $orange-500;
|
|
90
|
+
$scrollbar: $black-alpha-20;
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
|
|
2
|
+
// Do not edit directly, this file was auto-generated.
|
|
3
|
+
|
|
4
|
+
$shadow-action-menu: rgba(0, 0, 0, 0.15);
|
|
5
|
+
$shadow-navigation: rgba(0, 0, 0, 0.07);
|
|
6
|
+
$shadow-card: rgba(0, 0, 0, 0.1);
|
|
7
|
+
$shadow-popup-message: rgba(0, 0, 0, 0.3);
|
|
8
|
+
$shadow-submit-section: rgba(0, 0, 0, 0.2);
|
|
9
|
+
$shadow-chip: rgba(0, 0, 0, 0.3);
|
|
10
|
+
$chips-neutral-color-neutral-2: #f7f7f7;
|
|
11
|
+
$chips-neutral-color-hover: #f2f2f2;
|
|
12
|
+
$chips-neutral-color-checked: #e3e3e3;
|
|
13
|
+
$chips-attemtion-default: #ffffff;
|
|
14
|
+
$chips-attemtion-hover: #ffffff;
|
|
15
|
+
$chips-attemtion-selected: #ffffff;
|
|
16
|
+
$chips-warning-default: #ffffff;
|
|
17
|
+
$chips-warning-hover: #ffffff;
|
|
18
|
+
$chips-warning-selected: #ffffff;
|
|
19
|
+
$chips-success-default: #ffffff;
|
|
20
|
+
$chips-success-hover: #ffffff;
|
|
21
|
+
$chips-success-selected: #ffffff;
|
|
22
|
+
$chips-critical-default: #ffffff;
|
|
23
|
+
$chips-critical-hover: #ffffff;
|
|
24
|
+
$chips-critical-selected: #ffffff;
|
|
25
|
+
$chips-blue-default: #ffffff;
|
|
26
|
+
$chips-blue-hover: #ffffff;
|
|
27
|
+
$chips-blue-selected: #ffffff;
|
|
28
|
+
$xtra-sergei-variables-bg-darker: $black-alpha-2;
|
|
29
|
+
$xtra-sergei-variables-bg-lighter: $white-alpha-60;
|
|
30
|
+
$xtra-sergei-variables-documet-line-formerly-on-bg-disabled: $neutral-alpha-20;
|
|
31
|
+
$xtra-sergei-variables-bg-accent: $black-alpha-2; // BG dark inverse
|
|
32
|
+
$xtra-sergei-variables-always-black: $neutral-10000;
|
|
33
|
+
$xtra-sergei-variables-always-white: $neutral-0;
|
|
34
|
+
$xtra-sergei-variables-bg-2: $neutral-100;
|
|
35
|
+
$xtra-sergei-variables-bg-accent-inverted: $white-alpha-65; // BG light inverse
|
|
36
|
+
$xtra-sergei-variables-on-action-hover: $neutral-100;
|
|
37
|
+
$xtra-sergei-variables-on-action-active: $neutral-0;
|
|
38
|
+
$xtra-sergei-variables-bg-accent-2: $black-alpha-10; // BG light inverse
|
|
39
|
+
$border-primary: $neutral-alpha-25;
|
|
40
|
+
$border-secondary: $neutral-alpha-10;
|
|
41
|
+
$border-action: $blue-200;
|
|
42
|
+
$border-action-hover: $blue-300;
|
|
43
|
+
$border-attention: $orange-500;
|
|
44
|
+
$border-neutral: $blue-50;
|
|
45
|
+
$text-action: $blue-200;
|
|
46
|
+
$text-action-hover: $blue-300;
|
|
47
|
+
$text-primary: $neutral-500;
|
|
48
|
+
$text-secondary: $neutral-alpha-65;
|
|
49
|
+
$text-on-action: $neutral-100;
|
|
50
|
+
$text-action-active: $neutral-10000;
|
|
51
|
+
$text-disabled: $black-alpha-30;
|
|
52
|
+
$text-on-disabled: $neutral-100;
|
|
53
|
+
$text-attention: $orange-500;
|
|
54
|
+
$text-warning: $red-500;
|
|
55
|
+
$text-critical: $magenta-400;
|
|
56
|
+
$text-on-success-container-variant: $green-315;
|
|
57
|
+
$text-on-attention-container: $orange-600;
|
|
58
|
+
$text-on-success-container: $green-325;
|
|
59
|
+
$text-on-attention-container-variant: $orange-600;
|
|
60
|
+
$text-success: $green-320;
|
|
61
|
+
$text-on-warning-container: $red-500;
|
|
62
|
+
$text-on-warning-container-variant: $red-500;
|
|
63
|
+
$text-on-critical-container: $magenta-300;
|
|
64
|
+
$background-background: $neutral-300;
|
|
65
|
+
$background-inside-surface-2: $black-alpha-4;
|
|
66
|
+
$background-inside-surface-1: $white-alpha-65;
|
|
67
|
+
$background-surface-container-2: $neutral-100;
|
|
68
|
+
$background-surface-container-1: $neutral-0;
|
|
69
|
+
$background-input-fields: $black-alpha-4;
|
|
70
|
+
$background-success-container-variant: $green-100;
|
|
71
|
+
$background-attention-container: $orange-100;
|
|
72
|
+
$background-warning-container-variant: $red-100;
|
|
73
|
+
$background-success-container: $green-150;
|
|
74
|
+
$background-attention-container-variant: $orange-200;
|
|
75
|
+
$background-warning-container: $red-100;
|
|
76
|
+
$background-critical-container: $magenta-100;
|
|
77
|
+
$background-critical-container-variant: $magenta-200;
|
|
78
|
+
$background-action: $blue-200;
|
|
79
|
+
$background-disabled: $black-alpha-35;
|
|
80
|
+
$background-action-hover: $blue-300;
|
|
81
|
+
$background-neutral-container: $blue-50;
|
|
82
|
+
$background-surface-container-3: $neutral-200;
|
|
83
|
+
$chips-neutral-color-neutral: $neutral-500;
|
|
84
|
+
$icon-secondary: $neutral-alpha-65;
|
|
85
|
+
$icon-action: $blue-200;
|
|
86
|
+
$icon-disabled: $black-alpha-20;
|
|
87
|
+
$icon-primary: $neutral-500;
|
|
88
|
+
$icon-on-action: $neutral-100;
|
|
89
|
+
$icon-attention: $orange-500;
|
|
90
|
+
$scrollbar: $black-alpha-20;
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
|
|
2
|
+
// Do not edit directly, this file was auto-generated.
|
|
3
|
+
|
|
4
|
+
$shadow-action-menu: rgba(0, 0, 0, 0.5);
|
|
5
|
+
$shadow-navigation: rgba(0, 0, 0, 0.5);
|
|
6
|
+
$shadow-card: rgba(0, 0, 0, 0.5);
|
|
7
|
+
$shadow-popup-message: rgba(0, 0, 0, 0.7);
|
|
8
|
+
$shadow-submit-section: rgba(0, 0, 0, 0.6);
|
|
9
|
+
$shadow-chip: rgba(0, 0, 0, 0.5);
|
|
10
|
+
$chips-attemtion-default: #ffffff;
|
|
11
|
+
$chips-attemtion-hover: #ffffff;
|
|
12
|
+
$chips-attemtion-selected: #ffffff;
|
|
13
|
+
$chips-warning-default: #ffffff;
|
|
14
|
+
$chips-warning-hover: #ffffff;
|
|
15
|
+
$chips-warning-selected: #ffffff;
|
|
16
|
+
$chips-success-default: #ffffff;
|
|
17
|
+
$chips-success-hover: #ffffff;
|
|
18
|
+
$chips-success-selected: #ffffff;
|
|
19
|
+
$chips-critical-default: #ffffff;
|
|
20
|
+
$chips-critical-hover: #ffffff;
|
|
21
|
+
$chips-critical-selected: #ffffff;
|
|
22
|
+
$chips-blue-default: #ffffff;
|
|
23
|
+
$chips-blue-hover: #ffffff;
|
|
24
|
+
$chips-blue-selected: #ffffff;
|
|
25
|
+
$xtra-sergei-variables-bg-darker: $black-alpha-30;
|
|
26
|
+
$xtra-sergei-variables-bg-lighter: $white-alpha-7;
|
|
27
|
+
$xtra-sergei-variables-documet-line-formerly-on-bg-disabled: $white-alpha-30;
|
|
28
|
+
$xtra-sergei-variables-bg-accent: $white-alpha-7; // BG dark inverse
|
|
29
|
+
$xtra-sergei-variables-always-black: $neutral-10000;
|
|
30
|
+
$xtra-sergei-variables-always-white: $neutral-0;
|
|
31
|
+
$xtra-sergei-variables-bg-2: $blue-400;
|
|
32
|
+
$xtra-sergei-variables-bg-accent-inverted: $black-alpha-30; // BG light inverse
|
|
33
|
+
$xtra-sergei-variables-on-action-hover: $neutral-0;
|
|
34
|
+
$xtra-sergei-variables-on-action-active: $neutral-10000;
|
|
35
|
+
$xtra-sergei-variables-bg-accent-2: $white-alpha-15; // BG light inverse
|
|
36
|
+
$border-primary: $white-alpha-25;
|
|
37
|
+
$border-secondary: $white-alpha-15;
|
|
38
|
+
$border-action: $blue-200;
|
|
39
|
+
$border-action-hover: $blue-100;
|
|
40
|
+
$border-attention: $orange-500;
|
|
41
|
+
$border-neutral: $blue-350;
|
|
42
|
+
$text-action: $blue-200;
|
|
43
|
+
$text-action-hover: $blue-100;
|
|
44
|
+
$text-primary: $neutral-0;
|
|
45
|
+
$text-secondary: $white-alpha-60;
|
|
46
|
+
$text-on-action: $neutral-0;
|
|
47
|
+
$text-action-active: $neutral-0;
|
|
48
|
+
$text-disabled: $white-alpha-30;
|
|
49
|
+
$text-on-disabled: $blue-400;
|
|
50
|
+
$text-attention: $orange-600;
|
|
51
|
+
$text-warning: $red-500;
|
|
52
|
+
$text-critical: $magenta-300;
|
|
53
|
+
$text-on-success-container-variant: $green-350;
|
|
54
|
+
$text-on-attention-container: $orange-600;
|
|
55
|
+
$text-on-success-container: $green-325;
|
|
56
|
+
$text-on-attention-container-variant: $orange-600;
|
|
57
|
+
$text-success: $green-325;
|
|
58
|
+
$text-on-warning-container: $red-500;
|
|
59
|
+
$text-on-warning-container-variant: $red-500;
|
|
60
|
+
$text-on-critical-container: $magenta-300;
|
|
61
|
+
$background-background: $blue-500;
|
|
62
|
+
$background-inside-surface-2: $black-alpha-20;
|
|
63
|
+
$background-inside-surface-1: $white-alpha-5;
|
|
64
|
+
$background-surface-container-2: $blue-425;
|
|
65
|
+
$background-surface-container-1: $blue-450;
|
|
66
|
+
$background-input-fields: $white-alpha-7;
|
|
67
|
+
$background-success-container-variant: $green-550;
|
|
68
|
+
$background-attention-container: $orange-700;
|
|
69
|
+
$background-warning-container-variant: $red-700;
|
|
70
|
+
$background-success-container: $green-600;
|
|
71
|
+
$background-attention-container-variant: $orange-700;
|
|
72
|
+
$background-warning-container: $red-700;
|
|
73
|
+
$background-critical-container: $magenta-600;
|
|
74
|
+
$background-critical-container-variant: $magenta-500;
|
|
75
|
+
$background-action: $blue-200;
|
|
76
|
+
$background-disabled: $white-alpha-30;
|
|
77
|
+
$background-action-hover: $blue-100;
|
|
78
|
+
$background-neutral-container: $blue-350;
|
|
79
|
+
$background-surface-container-3: $blue-450;
|
|
80
|
+
$chips-neutral-color-neutral: $neutral-0;
|
|
81
|
+
$chips-neutral-color-neutral-2: $neutral-0;
|
|
82
|
+
$chips-neutral-color-hover: $neutral-0;
|
|
83
|
+
$chips-neutral-color-checked: $neutral-0;
|
|
84
|
+
$icon-secondary: $white-alpha-65;
|
|
85
|
+
$icon-action: $blue-200;
|
|
86
|
+
$icon-disabled: $white-alpha-30;
|
|
87
|
+
$icon-primary: $neutral-0;
|
|
88
|
+
$icon-on-action: $neutral-0;
|
|
89
|
+
$icon-attention: $orange-600;
|
|
90
|
+
$scrollbar: $white-alpha-30;
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
|
|
2
|
+
// Do not edit directly, this file was auto-generated.
|
|
3
|
+
|
|
4
|
+
$shadow-action-menu: rgba(0, 0, 0, 0.5);
|
|
5
|
+
$shadow-navigation: rgba(0, 0, 0, 0.5);
|
|
6
|
+
$shadow-card: rgba(0, 0, 0, 0.5);
|
|
7
|
+
$shadow-popup-message: rgba(0, 0, 0, 0.7);
|
|
8
|
+
$shadow-submit-section: rgba(0, 0, 0, 0.6);
|
|
9
|
+
$shadow-chip: rgba(0, 0, 0, 0.5);
|
|
10
|
+
$chips-attemtion-default: #ffffff;
|
|
11
|
+
$chips-attemtion-hover: #ffffff;
|
|
12
|
+
$chips-attemtion-selected: #ffffff;
|
|
13
|
+
$chips-warning-default: #ffffff;
|
|
14
|
+
$chips-warning-hover: #ffffff;
|
|
15
|
+
$chips-warning-selected: #ffffff;
|
|
16
|
+
$chips-success-default: #ffffff;
|
|
17
|
+
$chips-success-hover: #ffffff;
|
|
18
|
+
$chips-success-selected: #ffffff;
|
|
19
|
+
$chips-critical-default: #ffffff;
|
|
20
|
+
$chips-critical-hover: #ffffff;
|
|
21
|
+
$chips-critical-selected: #ffffff;
|
|
22
|
+
$chips-blue-default: #ffffff;
|
|
23
|
+
$chips-blue-hover: #ffffff;
|
|
24
|
+
$chips-blue-selected: #ffffff;
|
|
25
|
+
$xtra-sergei-variables-bg-darker: $black-alpha-20;
|
|
26
|
+
$xtra-sergei-variables-bg-lighter: $white-alpha-7;
|
|
27
|
+
$xtra-sergei-variables-documet-line-formerly-on-bg-disabled: $white-alpha-50;
|
|
28
|
+
$xtra-sergei-variables-bg-accent: $white-alpha-7; // BG dark inverse
|
|
29
|
+
$xtra-sergei-variables-always-black: $neutral-10000;
|
|
30
|
+
$xtra-sergei-variables-always-white: $neutral-0;
|
|
31
|
+
$xtra-sergei-variables-bg-2: $green-500;
|
|
32
|
+
$xtra-sergei-variables-bg-accent-inverted: $black-alpha-30; // BG light inverse
|
|
33
|
+
$xtra-sergei-variables-on-action-hover: $green-500;
|
|
34
|
+
$xtra-sergei-variables-on-action-active: $neutral-10000;
|
|
35
|
+
$xtra-sergei-variables-bg-accent-2: $white-alpha-15; // BG light inverse
|
|
36
|
+
$border-primary: $white-alpha-25;
|
|
37
|
+
$border-secondary: $white-alpha-15;
|
|
38
|
+
$border-action: $green-200;
|
|
39
|
+
$border-action-hover: $green-50;
|
|
40
|
+
$border-attention: $orange-500;
|
|
41
|
+
$border-neutral: $blue-350;
|
|
42
|
+
$text-action: $green-200;
|
|
43
|
+
$text-action-hover: $green-50;
|
|
44
|
+
$text-primary: $neutral-0;
|
|
45
|
+
$text-secondary: $white-alpha-60;
|
|
46
|
+
$text-on-action: $green-500;
|
|
47
|
+
$text-action-active: $neutral-0;
|
|
48
|
+
$text-disabled: $white-alpha-30;
|
|
49
|
+
$text-on-disabled: $green-500;
|
|
50
|
+
$text-attention: $orange-600;
|
|
51
|
+
$text-warning: $red-500;
|
|
52
|
+
$text-critical: $magenta-300;
|
|
53
|
+
$text-on-success-container-variant: $green-350;
|
|
54
|
+
$text-on-attention-container: $orange-600;
|
|
55
|
+
$text-on-success-container: $green-325;
|
|
56
|
+
$text-on-attention-container-variant: $orange-600;
|
|
57
|
+
$text-success: $green-325;
|
|
58
|
+
$text-on-warning-container: $red-500;
|
|
59
|
+
$text-on-warning-container-variant: $red-500;
|
|
60
|
+
$text-on-critical-container: $magenta-300;
|
|
61
|
+
$background-background: $green-600;
|
|
62
|
+
$background-inside-surface-2: $black-alpha-20;
|
|
63
|
+
$background-inside-surface-1: $white-alpha-7;
|
|
64
|
+
$background-surface-container-2: $white-alpha-7;
|
|
65
|
+
$background-surface-container-1: $white-alpha-5;
|
|
66
|
+
$background-input-fields: $white-alpha-7;
|
|
67
|
+
$background-success-container-variant: $green-550;
|
|
68
|
+
$background-attention-container: $orange-700;
|
|
69
|
+
$background-warning-container-variant: $red-700;
|
|
70
|
+
$background-success-container: $green-600;
|
|
71
|
+
$background-attention-container-variant: $orange-700;
|
|
72
|
+
$background-warning-container: $red-700;
|
|
73
|
+
$background-critical-container: $magenta-600;
|
|
74
|
+
$background-critical-container-variant: $magenta-500;
|
|
75
|
+
$background-action: $green-200;
|
|
76
|
+
$background-disabled: $white-alpha-30;
|
|
77
|
+
$background-action-hover: $green-50;
|
|
78
|
+
$background-neutral-container: $blue-350;
|
|
79
|
+
$background-surface-container-3: $white-alpha-15;
|
|
80
|
+
$chips-neutral-color-neutral: $neutral-0;
|
|
81
|
+
$chips-neutral-color-neutral-2: $neutral-0;
|
|
82
|
+
$chips-neutral-color-hover: $neutral-0;
|
|
83
|
+
$chips-neutral-color-checked: $neutral-0;
|
|
84
|
+
$icon-secondary: $white-alpha-65;
|
|
85
|
+
$icon-action: $green-200;
|
|
86
|
+
$icon-disabled: $white-alpha-30;
|
|
87
|
+
$icon-primary: $neutral-0;
|
|
88
|
+
$icon-on-action: $neutral-0;
|
|
89
|
+
$icon-attention: $orange-600;
|
|
90
|
+
$scrollbar: $white-alpha-30;
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
|
|
2
|
+
// Do not edit directly, this file was auto-generated.
|
|
3
|
+
|
|
4
|
+
$shadow-action-menu: rgba(0, 0, 0, 0.5);
|
|
5
|
+
$shadow-navigation: rgba(0, 0, 0, 0.5);
|
|
6
|
+
$shadow-card: #000000;
|
|
7
|
+
$shadow-popup-message: rgba(0, 0, 0, 0.7);
|
|
8
|
+
$shadow-submit-section: rgba(0, 0, 0, 0.8);
|
|
9
|
+
$shadow-chip: rgba(0, 0, 0, 0.5);
|
|
10
|
+
$chips-neutral-color-neutral-2: #474747;
|
|
11
|
+
$chips-neutral-color-hover: #545454;
|
|
12
|
+
$chips-neutral-color-checked: #6e6e6e;
|
|
13
|
+
$chips-attemtion-default: #8a5323;
|
|
14
|
+
$chips-attemtion-hover: #9d5416;
|
|
15
|
+
$chips-attemtion-selected: #df781f;
|
|
16
|
+
$chips-warning-default: #861313;
|
|
17
|
+
$chips-warning-hover: #b00202;
|
|
18
|
+
$chips-warning-selected: #e80303;
|
|
19
|
+
$chips-success-default: #2c5126;
|
|
20
|
+
$chips-success-hover: #317128;
|
|
21
|
+
$chips-success-selected: #3f9233;
|
|
22
|
+
$chips-critical-default: #772d6b;
|
|
23
|
+
$chips-critical-hover: #9a3289;
|
|
24
|
+
$chips-critical-selected: #b13a9e;
|
|
25
|
+
$chips-blue-default: #12597c;
|
|
26
|
+
$chips-blue-hover: #17709c;
|
|
27
|
+
$chips-blue-selected: #1a80b2;
|
|
28
|
+
$xtra-sergei-variables-bg-darker: $black-alpha-30;
|
|
29
|
+
$xtra-sergei-variables-bg-lighter: $white-alpha-5;
|
|
30
|
+
$xtra-sergei-variables-documet-line-formerly-on-bg-disabled: $white-alpha-30;
|
|
31
|
+
$xtra-sergei-variables-bg-accent: $white-alpha-5; // BG dark inverse
|
|
32
|
+
$xtra-sergei-variables-always-black: $neutral-10000;
|
|
33
|
+
$xtra-sergei-variables-always-white: $neutral-0;
|
|
34
|
+
$xtra-sergei-variables-bg-2: $neutral-400;
|
|
35
|
+
$xtra-sergei-variables-bg-accent-inverted: $black-alpha-30; // BG light inverse
|
|
36
|
+
$xtra-sergei-variables-on-action-hover: $neutral-500;
|
|
37
|
+
$xtra-sergei-variables-on-action-active: $neutral-10000;
|
|
38
|
+
$xtra-sergei-variables-bg-accent-2: $white-alpha-15; // BG light inverse
|
|
39
|
+
$border-primary: $white-alpha-25;
|
|
40
|
+
$border-secondary: $white-alpha-15;
|
|
41
|
+
$border-action: $blue-200;
|
|
42
|
+
$border-action-hover: $blue-100;
|
|
43
|
+
$border-attention: $orange-600;
|
|
44
|
+
$border-neutral: $blue-350;
|
|
45
|
+
$text-action: $blue-250;
|
|
46
|
+
$text-action-hover: $blue-100;
|
|
47
|
+
$text-primary: $neutral-0;
|
|
48
|
+
$text-secondary: $white-alpha-60;
|
|
49
|
+
$text-on-action: $neutral-100;
|
|
50
|
+
$text-action-active: $neutral-0;
|
|
51
|
+
$text-disabled: $white-alpha-30;
|
|
52
|
+
$text-on-disabled: $neutral-400;
|
|
53
|
+
$text-attention: $orange-600;
|
|
54
|
+
$text-warning: $red-350;
|
|
55
|
+
$text-critical: $magenta-300;
|
|
56
|
+
$text-on-success-container-variant: $green-350;
|
|
57
|
+
$text-on-attention-container: $orange-600;
|
|
58
|
+
$text-on-success-container: $green-325;
|
|
59
|
+
$text-on-attention-container-variant: $orange-600;
|
|
60
|
+
$text-success: $green-325;
|
|
61
|
+
$text-on-warning-container: $red-500;
|
|
62
|
+
$text-on-warning-container-variant: $red-500;
|
|
63
|
+
$text-on-critical-container: $magenta-300;
|
|
64
|
+
$background-background: $neutral-600;
|
|
65
|
+
$background-inside-surface-2: $black-alpha-20;
|
|
66
|
+
$background-inside-surface-1: $white-alpha-5;
|
|
67
|
+
$background-surface-container-2: $neutral-400;
|
|
68
|
+
$background-surface-container-1: $neutral-500;
|
|
69
|
+
$background-input-fields: $white-alpha-5;
|
|
70
|
+
$background-success-container-variant: $green-550;
|
|
71
|
+
$background-attention-container: $orange-700;
|
|
72
|
+
$background-warning-container-variant: $red-700;
|
|
73
|
+
$background-success-container: $green-600;
|
|
74
|
+
$background-attention-container-variant: $orange-700;
|
|
75
|
+
$background-warning-container: $red-700;
|
|
76
|
+
$background-critical-container: $magenta-600;
|
|
77
|
+
$background-critical-container-variant: $magenta-500;
|
|
78
|
+
$background-action: $blue-200;
|
|
79
|
+
$background-disabled: $white-alpha-30;
|
|
80
|
+
$background-action-hover: $blue-100;
|
|
81
|
+
$background-neutral-container: $blue-350;
|
|
82
|
+
$background-surface-container-3: $neutral-350;
|
|
83
|
+
$chips-neutral-color-neutral: $neutral-0;
|
|
84
|
+
$icon-secondary: $white-alpha-65;
|
|
85
|
+
$icon-action: $blue-200;
|
|
86
|
+
$icon-disabled: $white-alpha-30;
|
|
87
|
+
$icon-primary: $neutral-0;
|
|
88
|
+
$icon-on-action: $neutral-100;
|
|
89
|
+
$icon-attention: $orange-600;
|
|
90
|
+
$scrollbar: $white-alpha-30;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// Auto-generated from tokens.json — do not edit directly.
|
|
2
|
+
export { default as primitives } from './primitives/colors.js';
|
|
3
|
+
export { default as dGreen } from './themes/d-green/colors.js';
|
|
4
|
+
export { default as nGreen } from './themes/n-green/colors.js';
|
|
5
|
+
export { default as nGrey } from './themes/n-grey/colors.js';
|
|
6
|
+
export { default as nBlue } from './themes/n-blue/colors.js';
|
|
7
|
+
export { default as dGrey } from './themes/d-grey/colors.js';
|
|
8
|
+
export { default as webPlatform } from './platforms/web/tokens.js';
|
|
9
|
+
export { default as webPlatformTheme } from './platforms/web/theme.js';
|
|
10
|
+
export { default as desktopPlatform } from './platforms/desktop/tokens.js';
|
|
11
|
+
export { default as desktopPlatformTheme } from './platforms/desktop/theme.js';
|
|
12
|
+
export { default as ipadPlatform } from './platforms/ipad/tokens.js';
|
|
13
|
+
export { default as ipadPlatformTheme } from './platforms/ipad/theme.js';
|