@entur/tokens 3.12.0 → 3.13.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 +23 -1
- package/dist/base.css +133 -0
- package/dist/base.d.ts +150 -0
- package/dist/base.less +133 -0
- package/dist/base.scss +133 -0
- package/dist/componentColors.d.ts +2624 -0
- package/dist/data.css +41 -0
- package/dist/data.d.ts +46 -0
- package/dist/data.less +41 -0
- package/dist/data.scss +41 -0
- package/dist/index.d.ts +7 -276
- package/dist/legacy-tokens.d.ts +262 -0
- package/dist/primitive.css +128 -0
- package/dist/primitive.d.ts +147 -0
- package/dist/primitive.less +128 -0
- package/dist/primitive.scss +128 -0
- package/dist/semantic.css +131 -0
- package/dist/semantic.d.ts +186 -0
- package/dist/semantic.less +131 -0
- package/dist/semantic.scss +131 -0
- package/dist/styles.css +0 -1824
- package/dist/styles.less +0 -1824
- package/dist/styles.scss +1 -1825
- package/dist/tokens.cjs.development.js +3277 -1838
- package/dist/tokens.cjs.development.js.map +1 -1
- package/dist/tokens.cjs.production.min.js +1 -1
- package/dist/tokens.cjs.production.min.js.map +1 -1
- package/dist/tokens.esm.js +3273 -1839
- package/dist/tokens.esm.js.map +1 -1
- package/dist/transport.css +98 -0
- package/dist/transport.d.ts +101 -0
- package/dist/transport.less +98 -0
- package/dist/transport.scss +98 -0
- package/package.json +7 -5
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
export declare const semantic: {
|
|
2
|
+
fill: {
|
|
3
|
+
background: {
|
|
4
|
+
contrast: {
|
|
5
|
+
dark: string;
|
|
6
|
+
light: string;
|
|
7
|
+
lightalt: string;
|
|
8
|
+
lightalt2: string;
|
|
9
|
+
};
|
|
10
|
+
overlay: {
|
|
11
|
+
solid: string;
|
|
12
|
+
solidalt: string;
|
|
13
|
+
transparent: string;
|
|
14
|
+
transparentalt: string;
|
|
15
|
+
};
|
|
16
|
+
standard: {
|
|
17
|
+
colorless: string;
|
|
18
|
+
dark: string;
|
|
19
|
+
light: string;
|
|
20
|
+
};
|
|
21
|
+
subdued: {
|
|
22
|
+
dark: string;
|
|
23
|
+
light: string;
|
|
24
|
+
};
|
|
25
|
+
tint: {
|
|
26
|
+
dark: string;
|
|
27
|
+
light: string;
|
|
28
|
+
neutral: string;
|
|
29
|
+
transparent: string;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
boolean: {
|
|
33
|
+
false: {
|
|
34
|
+
contrast: string;
|
|
35
|
+
dark: string;
|
|
36
|
+
light: string;
|
|
37
|
+
};
|
|
38
|
+
true: {
|
|
39
|
+
contrast: string;
|
|
40
|
+
dark: string;
|
|
41
|
+
light: string;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
disabled: {
|
|
45
|
+
light: string;
|
|
46
|
+
transparent: string;
|
|
47
|
+
transparentalt: string;
|
|
48
|
+
};
|
|
49
|
+
information: {
|
|
50
|
+
contrast: string;
|
|
51
|
+
deep: string;
|
|
52
|
+
muted: string;
|
|
53
|
+
tint: string;
|
|
54
|
+
};
|
|
55
|
+
negative: {
|
|
56
|
+
contrast: string;
|
|
57
|
+
dark: string;
|
|
58
|
+
deep: string;
|
|
59
|
+
muted: string;
|
|
60
|
+
tint: string;
|
|
61
|
+
transparent: string;
|
|
62
|
+
};
|
|
63
|
+
primary: {
|
|
64
|
+
active: {
|
|
65
|
+
contrast: string;
|
|
66
|
+
light: string;
|
|
67
|
+
};
|
|
68
|
+
default: {
|
|
69
|
+
contrast: string;
|
|
70
|
+
light: string;
|
|
71
|
+
};
|
|
72
|
+
hover: {
|
|
73
|
+
contrast: string;
|
|
74
|
+
light: string;
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
secondary: {
|
|
78
|
+
active: {
|
|
79
|
+
contrast: string;
|
|
80
|
+
light: string;
|
|
81
|
+
};
|
|
82
|
+
default: {
|
|
83
|
+
colorless: string;
|
|
84
|
+
};
|
|
85
|
+
hover: {
|
|
86
|
+
contrast: string;
|
|
87
|
+
light: string;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
selected: {
|
|
91
|
+
default: {
|
|
92
|
+
contrast: string;
|
|
93
|
+
dark: string;
|
|
94
|
+
light: string;
|
|
95
|
+
neutral: string;
|
|
96
|
+
};
|
|
97
|
+
hover: {
|
|
98
|
+
contrast: string;
|
|
99
|
+
dark: string;
|
|
100
|
+
light: string;
|
|
101
|
+
neutral: string;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
success: {
|
|
105
|
+
contrast: string;
|
|
106
|
+
deep: string;
|
|
107
|
+
muted: string;
|
|
108
|
+
subdued: string;
|
|
109
|
+
tint: string;
|
|
110
|
+
};
|
|
111
|
+
warning: {
|
|
112
|
+
contrast: string;
|
|
113
|
+
deep: string;
|
|
114
|
+
muted: string;
|
|
115
|
+
tint: string;
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
shape: {
|
|
119
|
+
accent: string;
|
|
120
|
+
contrast: string;
|
|
121
|
+
dark: string;
|
|
122
|
+
darkalt: string;
|
|
123
|
+
disabled: string;
|
|
124
|
+
highlight: string;
|
|
125
|
+
highlightalt: string;
|
|
126
|
+
inactive: string;
|
|
127
|
+
information: string;
|
|
128
|
+
informationalt: string;
|
|
129
|
+
light: string;
|
|
130
|
+
lightalt: string;
|
|
131
|
+
negative: string;
|
|
132
|
+
negativealt: string;
|
|
133
|
+
neutral: string;
|
|
134
|
+
neutralalt: string;
|
|
135
|
+
neutralalt2: string;
|
|
136
|
+
subdued: string;
|
|
137
|
+
subduedalt: string;
|
|
138
|
+
success: string;
|
|
139
|
+
successalt: string;
|
|
140
|
+
warning: string;
|
|
141
|
+
warningalt: string;
|
|
142
|
+
};
|
|
143
|
+
stroke: {
|
|
144
|
+
accent: string;
|
|
145
|
+
colorless: string;
|
|
146
|
+
contrast: string;
|
|
147
|
+
contrastalt: string;
|
|
148
|
+
dark: string;
|
|
149
|
+
darkalt: string;
|
|
150
|
+
darkalt2: string;
|
|
151
|
+
highlight: string;
|
|
152
|
+
highlightalt: string;
|
|
153
|
+
information: string;
|
|
154
|
+
light: string;
|
|
155
|
+
lightalt: string;
|
|
156
|
+
negative: string;
|
|
157
|
+
negativealt: string;
|
|
158
|
+
neutral: string;
|
|
159
|
+
neutralalt: string;
|
|
160
|
+
subdued: string;
|
|
161
|
+
success: string;
|
|
162
|
+
successalt: string;
|
|
163
|
+
transparent: string;
|
|
164
|
+
transparentalt: string;
|
|
165
|
+
warning: string;
|
|
166
|
+
};
|
|
167
|
+
text: {
|
|
168
|
+
accent: string;
|
|
169
|
+
dark: string;
|
|
170
|
+
darkalt: string;
|
|
171
|
+
disabled: string;
|
|
172
|
+
highlight: string;
|
|
173
|
+
highlightalt: string;
|
|
174
|
+
light: string;
|
|
175
|
+
lightalt: string;
|
|
176
|
+
negative: string;
|
|
177
|
+
negativealt: string;
|
|
178
|
+
neutral: string;
|
|
179
|
+
neutralalt: string;
|
|
180
|
+
neutralalt2: string;
|
|
181
|
+
subdued: string;
|
|
182
|
+
subduedalt: string;
|
|
183
|
+
success: string;
|
|
184
|
+
successalt: string;
|
|
185
|
+
};
|
|
186
|
+
};
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
@import '~@entur/tokens/dist/primitive.less';
|
|
2
|
+
/* DO NOT CHANGE!*/
|
|
3
|
+
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
4
|
+
|
|
5
|
+
@fill-background-contrast-dark: @ebony-90;
|
|
6
|
+
@fill-background-contrast-light: @lavender-90;
|
|
7
|
+
@fill-background-contrast-lightalt: @blue-90;
|
|
8
|
+
@fill-background-contrast-lightalt-2: @blue-100;
|
|
9
|
+
@fill-background-overlay-solid: @ebony-80;
|
|
10
|
+
@fill-background-overlay-solidalt: @ebony-75;
|
|
11
|
+
@fill-background-overlay-transparent: @transparent-ebony-alpha15;
|
|
12
|
+
@fill-background-overlay-transparentalt: @transparent-ebony-alpha25;
|
|
13
|
+
@fill-background-standard-colorless: @white-alpha-0;
|
|
14
|
+
@fill-background-standard-dark: @ebony-100;
|
|
15
|
+
@fill-background-standard-light: @white-alpha-100;
|
|
16
|
+
@fill-background-subdued-dark: @ebony-85;
|
|
17
|
+
@fill-background-subdued-light: @blue-30;
|
|
18
|
+
@fill-background-tint-dark: @ebony-95;
|
|
19
|
+
@fill-background-tint-light: @blue-10;
|
|
20
|
+
@fill-background-tint-neutral: @grey-10;
|
|
21
|
+
@fill-background-tint-transparent: @transparent-blue-alpha10;
|
|
22
|
+
@fill-boolean-false-contrast: @blue-50;
|
|
23
|
+
@fill-boolean-false-dark: @transparent-ebony-alpha35;
|
|
24
|
+
@fill-boolean-false-light: @grey-60;
|
|
25
|
+
@fill-boolean-true-contrast: @mint-40;
|
|
26
|
+
@fill-boolean-true-dark: @mint-40;
|
|
27
|
+
@fill-boolean-true-light: @mint-60;
|
|
28
|
+
@fill-disabled-light: @grey-40;
|
|
29
|
+
@fill-disabled-transparent: @transparent-neutral-alpha15;
|
|
30
|
+
@fill-disabled-transparentalt: @transparent-neutral-alpha10;
|
|
31
|
+
@fill-information-contrast: @sky-30;
|
|
32
|
+
@fill-information-deep: @sky-50;
|
|
33
|
+
@fill-information-muted: @sky-10;
|
|
34
|
+
@fill-information-tint: @sky-20;
|
|
35
|
+
@fill-negative-contrast: @coral-40;
|
|
36
|
+
@fill-negative-dark: @coral-90;
|
|
37
|
+
@fill-negative-deep: @coral-60;
|
|
38
|
+
@fill-negative-muted: @coral-20;
|
|
39
|
+
@fill-negative-tint: @coral-30;
|
|
40
|
+
@fill-negative-transparent: @transparent-coral-alpha20;
|
|
41
|
+
@fill-primary-active-contrast: @lavender-50;
|
|
42
|
+
@fill-primary-active-light: @lavender-100;
|
|
43
|
+
@fill-primary-default-contrast: @lavender-40;
|
|
44
|
+
@fill-primary-default-light: @lavender-90;
|
|
45
|
+
@fill-primary-hover-contrast: @lavender-30;
|
|
46
|
+
@fill-primary-hover-light: @blue-90;
|
|
47
|
+
@fill-secondary-active-contrast: @lavender-50;
|
|
48
|
+
@fill-secondary-active-light: @lavender-40;
|
|
49
|
+
@fill-secondary-default-colorless: @white-alpha-0;
|
|
50
|
+
@fill-secondary-hover-contrast: @blue-70;
|
|
51
|
+
@fill-secondary-hover-light: @lavender-20;
|
|
52
|
+
@fill-selected-default-contrast: @blue-90;
|
|
53
|
+
@fill-selected-default-dark: @ebony-10;
|
|
54
|
+
@fill-selected-default-light: @blue-10;
|
|
55
|
+
@fill-selected-default-neutral: @grey-30;
|
|
56
|
+
@fill-selected-hover-contrast: @blue-80;
|
|
57
|
+
@fill-selected-hover-dark: @transparent-ebony-alpha35;
|
|
58
|
+
@fill-selected-hover-light: @blue-20;
|
|
59
|
+
@fill-selected-hover-neutral: @grey-20;
|
|
60
|
+
@fill-success-contrast: @mint-40;
|
|
61
|
+
@fill-success-deep: @mint-60;
|
|
62
|
+
@fill-success-muted: @mint-20;
|
|
63
|
+
@fill-success-subdued: @mint-50;
|
|
64
|
+
@fill-success-tint: @mint-30;
|
|
65
|
+
@fill-warning-contrast: @canary-40;
|
|
66
|
+
@fill-warning-deep: @canary-60;
|
|
67
|
+
@fill-warning-muted: @canary-20;
|
|
68
|
+
@fill-warning-tint: @canary-30;
|
|
69
|
+
@shape-accent: @lavender-90;
|
|
70
|
+
@shape-contrast: @lavender-40;
|
|
71
|
+
@shape-dark: @ebony-100;
|
|
72
|
+
@shape-darkalt: @ebony-30;
|
|
73
|
+
@shape-disabled: @grey-80;
|
|
74
|
+
@shape-highlight: @coral-40;
|
|
75
|
+
@shape-highlightalt: @coral-30;
|
|
76
|
+
@shape-inactive: @blue-40;
|
|
77
|
+
@shape-information: @sky-50;
|
|
78
|
+
@shape-informationalt: @sky-30;
|
|
79
|
+
@shape-light: @white-alpha-100;
|
|
80
|
+
@shape-lightalt: @ebony-10;
|
|
81
|
+
@shape-negative: @coral-60;
|
|
82
|
+
@shape-negativealt: @coral-30;
|
|
83
|
+
@shape-neutral: @grey-70;
|
|
84
|
+
@shape-neutralalt: @grey-50;
|
|
85
|
+
@shape-neutralalt2: @grey-60;
|
|
86
|
+
@shape-subdued: @blue-70;
|
|
87
|
+
@shape-subduedalt: @blue-30;
|
|
88
|
+
@shape-success: @mint-60;
|
|
89
|
+
@shape-successalt: @mint-40;
|
|
90
|
+
@shape-warning: @canary-60;
|
|
91
|
+
@shape-warningalt: @canary-40;
|
|
92
|
+
@stroke-accent: @lavender-90;
|
|
93
|
+
@stroke-colorless: @white-alpha-0;
|
|
94
|
+
@stroke-contrast: @lavender-40;
|
|
95
|
+
@stroke-contrastalt: @blue-80;
|
|
96
|
+
@stroke-dark: @ebony-30;
|
|
97
|
+
@stroke-darkalt: @ebony-50;
|
|
98
|
+
@stroke-darkalt-2: @ebony-100;
|
|
99
|
+
@stroke-highlight: @coral-40;
|
|
100
|
+
@stroke-highlightalt: @coral-30;
|
|
101
|
+
@stroke-information: @sky-50;
|
|
102
|
+
@stroke-light: @white-alpha-100;
|
|
103
|
+
@stroke-lightalt: @ebony-10;
|
|
104
|
+
@stroke-negative: @coral-60;
|
|
105
|
+
@stroke-negativealt: @coral-30;
|
|
106
|
+
@stroke-neutral: @grey-30;
|
|
107
|
+
@stroke-neutralalt: @grey-60;
|
|
108
|
+
@stroke-subdued: @blue-60;
|
|
109
|
+
@stroke-success: @mint-60;
|
|
110
|
+
@stroke-successalt: @mint-40;
|
|
111
|
+
@stroke-transparent: @transparent-blue-alpha40;
|
|
112
|
+
@stroke-transparentalt: @transparent-lavender-alpha70;
|
|
113
|
+
@stroke-warning: @canary-70;
|
|
114
|
+
@text-accent: @lavender-90;
|
|
115
|
+
@text-dark: @ebony-100;
|
|
116
|
+
@text-darkalt: @ebony-30;
|
|
117
|
+
@text-disabled: @grey-80;
|
|
118
|
+
@text-highlight: @lavender-40;
|
|
119
|
+
@text-highlightalt: @peach-40;
|
|
120
|
+
@text-light: @white-alpha-100;
|
|
121
|
+
@text-lightalt: @ebony-10;
|
|
122
|
+
@text-negative: @coral-60;
|
|
123
|
+
@text-negativealt: @coral-30;
|
|
124
|
+
@text-neutral: @grey-70;
|
|
125
|
+
@text-neutralalt: @grey-50;
|
|
126
|
+
@text-neutralalt2: @grey-60;
|
|
127
|
+
@text-subdued: @blue-70;
|
|
128
|
+
@text-subduedalt: @blue-30;
|
|
129
|
+
@text-success: @mint-60;
|
|
130
|
+
@text-successalt: @mint-40;
|
|
131
|
+
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
@use '~@entur/tokens/dist/primitive.scss';
|
|
2
|
+
/* DO NOT CHANGE!*/
|
|
3
|
+
/* This file is automatically generated from @entur/tokens! Changes will be overwritten. */
|
|
4
|
+
|
|
5
|
+
$fill-background-contrast-dark: $ebony-90;
|
|
6
|
+
$fill-background-contrast-light: $lavender-90;
|
|
7
|
+
$fill-background-contrast-lightalt: $blue-90;
|
|
8
|
+
$fill-background-contrast-lightalt-2: $blue-100;
|
|
9
|
+
$fill-background-overlay-solid: $ebony-80;
|
|
10
|
+
$fill-background-overlay-solidalt: $ebony-75;
|
|
11
|
+
$fill-background-overlay-transparent: $transparent-ebony-alpha15;
|
|
12
|
+
$fill-background-overlay-transparentalt: $transparent-ebony-alpha25;
|
|
13
|
+
$fill-background-standard-colorless: $white-alpha-0;
|
|
14
|
+
$fill-background-standard-dark: $ebony-100;
|
|
15
|
+
$fill-background-standard-light: $white-alpha-100;
|
|
16
|
+
$fill-background-subdued-dark: $ebony-85;
|
|
17
|
+
$fill-background-subdued-light: $blue-30;
|
|
18
|
+
$fill-background-tint-dark: $ebony-95;
|
|
19
|
+
$fill-background-tint-light: $blue-10;
|
|
20
|
+
$fill-background-tint-neutral: $grey-10;
|
|
21
|
+
$fill-background-tint-transparent: $transparent-blue-alpha10;
|
|
22
|
+
$fill-boolean-false-contrast: $blue-50;
|
|
23
|
+
$fill-boolean-false-dark: $transparent-ebony-alpha35;
|
|
24
|
+
$fill-boolean-false-light: $grey-60;
|
|
25
|
+
$fill-boolean-true-contrast: $mint-40;
|
|
26
|
+
$fill-boolean-true-dark: $mint-40;
|
|
27
|
+
$fill-boolean-true-light: $mint-60;
|
|
28
|
+
$fill-disabled-light: $grey-40;
|
|
29
|
+
$fill-disabled-transparent: $transparent-neutral-alpha15;
|
|
30
|
+
$fill-disabled-transparentalt: $transparent-neutral-alpha10;
|
|
31
|
+
$fill-information-contrast: $sky-30;
|
|
32
|
+
$fill-information-deep: $sky-50;
|
|
33
|
+
$fill-information-muted: $sky-10;
|
|
34
|
+
$fill-information-tint: $sky-20;
|
|
35
|
+
$fill-negative-contrast: $coral-40;
|
|
36
|
+
$fill-negative-dark: $coral-90;
|
|
37
|
+
$fill-negative-deep: $coral-60;
|
|
38
|
+
$fill-negative-muted: $coral-20;
|
|
39
|
+
$fill-negative-tint: $coral-30;
|
|
40
|
+
$fill-negative-transparent: $transparent-coral-alpha20;
|
|
41
|
+
$fill-primary-active-contrast: $lavender-50;
|
|
42
|
+
$fill-primary-active-light: $lavender-100;
|
|
43
|
+
$fill-primary-default-contrast: $lavender-40;
|
|
44
|
+
$fill-primary-default-light: $lavender-90;
|
|
45
|
+
$fill-primary-hover-contrast: $lavender-30;
|
|
46
|
+
$fill-primary-hover-light: $blue-90;
|
|
47
|
+
$fill-secondary-active-contrast: $lavender-50;
|
|
48
|
+
$fill-secondary-active-light: $lavender-40;
|
|
49
|
+
$fill-secondary-default-colorless: $white-alpha-0;
|
|
50
|
+
$fill-secondary-hover-contrast: $blue-70;
|
|
51
|
+
$fill-secondary-hover-light: $lavender-20;
|
|
52
|
+
$fill-selected-default-contrast: $blue-90;
|
|
53
|
+
$fill-selected-default-dark: $ebony-10;
|
|
54
|
+
$fill-selected-default-light: $blue-10;
|
|
55
|
+
$fill-selected-default-neutral: $grey-30;
|
|
56
|
+
$fill-selected-hover-contrast: $blue-80;
|
|
57
|
+
$fill-selected-hover-dark: $transparent-ebony-alpha35;
|
|
58
|
+
$fill-selected-hover-light: $blue-20;
|
|
59
|
+
$fill-selected-hover-neutral: $grey-20;
|
|
60
|
+
$fill-success-contrast: $mint-40;
|
|
61
|
+
$fill-success-deep: $mint-60;
|
|
62
|
+
$fill-success-muted: $mint-20;
|
|
63
|
+
$fill-success-subdued: $mint-50;
|
|
64
|
+
$fill-success-tint: $mint-30;
|
|
65
|
+
$fill-warning-contrast: $canary-40;
|
|
66
|
+
$fill-warning-deep: $canary-60;
|
|
67
|
+
$fill-warning-muted: $canary-20;
|
|
68
|
+
$fill-warning-tint: $canary-30;
|
|
69
|
+
$shape-accent: $lavender-90;
|
|
70
|
+
$shape-contrast: $lavender-40;
|
|
71
|
+
$shape-dark: $ebony-100;
|
|
72
|
+
$shape-darkalt: $ebony-30;
|
|
73
|
+
$shape-disabled: $grey-80;
|
|
74
|
+
$shape-highlight: $coral-40;
|
|
75
|
+
$shape-highlightalt: $coral-30;
|
|
76
|
+
$shape-inactive: $blue-40;
|
|
77
|
+
$shape-information: $sky-50;
|
|
78
|
+
$shape-informationalt: $sky-30;
|
|
79
|
+
$shape-light: $white-alpha-100;
|
|
80
|
+
$shape-lightalt: $ebony-10;
|
|
81
|
+
$shape-negative: $coral-60;
|
|
82
|
+
$shape-negativealt: $coral-30;
|
|
83
|
+
$shape-neutral: $grey-70;
|
|
84
|
+
$shape-neutralalt: $grey-50;
|
|
85
|
+
$shape-neutralalt2: $grey-60;
|
|
86
|
+
$shape-subdued: $blue-70;
|
|
87
|
+
$shape-subduedalt: $blue-30;
|
|
88
|
+
$shape-success: $mint-60;
|
|
89
|
+
$shape-successalt: $mint-40;
|
|
90
|
+
$shape-warning: $canary-60;
|
|
91
|
+
$shape-warningalt: $canary-40;
|
|
92
|
+
$stroke-accent: $lavender-90;
|
|
93
|
+
$stroke-colorless: $white-alpha-0;
|
|
94
|
+
$stroke-contrast: $lavender-40;
|
|
95
|
+
$stroke-contrastalt: $blue-80;
|
|
96
|
+
$stroke-dark: $ebony-30;
|
|
97
|
+
$stroke-darkalt: $ebony-50;
|
|
98
|
+
$stroke-darkalt-2: $ebony-100;
|
|
99
|
+
$stroke-highlight: $coral-40;
|
|
100
|
+
$stroke-highlightalt: $coral-30;
|
|
101
|
+
$stroke-information: $sky-50;
|
|
102
|
+
$stroke-light: $white-alpha-100;
|
|
103
|
+
$stroke-lightalt: $ebony-10;
|
|
104
|
+
$stroke-negative: $coral-60;
|
|
105
|
+
$stroke-negativealt: $coral-30;
|
|
106
|
+
$stroke-neutral: $grey-30;
|
|
107
|
+
$stroke-neutralalt: $grey-60;
|
|
108
|
+
$stroke-subdued: $blue-60;
|
|
109
|
+
$stroke-success: $mint-60;
|
|
110
|
+
$stroke-successalt: $mint-40;
|
|
111
|
+
$stroke-transparent: $transparent-blue-alpha40;
|
|
112
|
+
$stroke-transparentalt: $transparent-lavender-alpha70;
|
|
113
|
+
$stroke-warning: $canary-70;
|
|
114
|
+
$text-accent: $lavender-90;
|
|
115
|
+
$text-dark: $ebony-100;
|
|
116
|
+
$text-darkalt: $ebony-30;
|
|
117
|
+
$text-disabled: $grey-80;
|
|
118
|
+
$text-highlight: $lavender-40;
|
|
119
|
+
$text-highlightalt: $peach-40;
|
|
120
|
+
$text-light: $white-alpha-100;
|
|
121
|
+
$text-lightalt: $ebony-10;
|
|
122
|
+
$text-negative: $coral-60;
|
|
123
|
+
$text-negativealt: $coral-30;
|
|
124
|
+
$text-neutral: $grey-70;
|
|
125
|
+
$text-neutralalt: $grey-50;
|
|
126
|
+
$text-neutralalt2: $grey-60;
|
|
127
|
+
$text-subdued: $blue-70;
|
|
128
|
+
$text-subduedalt: $blue-30;
|
|
129
|
+
$text-success: $mint-60;
|
|
130
|
+
$text-successalt: $mint-40;
|
|
131
|
+
|