@siemens/element-theme 51.0.0-rc.9 → 51.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/package.json +1 -1
- package/src/styles/bootstrap/_badges.scss +1 -1
- package/src/styles/bootstrap/_list-group.scss +39 -1
- package/src/styles/bootstrap/_utilities.scss +2 -1
- package/src/styles/bootstrap/_variables.scss +6 -8
- package/src/styles/bootstrap/forms/_form-control.scss +1 -1
- package/src/styles/components/_list-item.scss +4 -9
- package/src/styles/components/_search-bar.scss +1 -1
- package/src/styles/mixins/_utilities.scss +12 -0
- package/src/styles/variables/_system-tokens.scss +22 -12
- package/src/theme/_theme-element.scss +24 -0
package/package.json
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
// @deprecated The Bootstrap list group is deprecated in favor of the Element list
|
|
2
|
+
// (`.list` / `.list-item`, see `../components/_list-item.scss`).
|
|
3
|
+
|
|
4
|
+
// The list group predates the Element list and is only a thin container with
|
|
5
|
+
// borders. It has no notion of the Element list anatomy (indicator, title,
|
|
6
|
+
// description, metadata, quick actions) and therefore cannot express the current
|
|
7
|
+
// design. Do not use it for new code.
|
|
8
|
+
|
|
9
|
+
// Rough mapping, the markup has to be restructured, this is not a class rename:
|
|
10
|
+
// `.list-group` -> `.list`, optionally with `.list-divider`, `.list-filled` or `.list-outline`
|
|
11
|
+
// `.list-group-item` -> `.list-item`, children need explicit slot classes
|
|
12
|
+
// (`.list-item-title`, `.list-item-description`, ...)
|
|
13
|
+
// `.list-group-item-action` -> `.list-item.list-item-action`
|
|
14
|
+
// `.list-group-flush` -> `.list.list-divider` to preserve dividers; otherwise
|
|
15
|
+
// `.list`, which has no outer border
|
|
16
|
+
// `.list-group-md` / `.list-group-lg` -> no replacement, the item height follows its content
|
|
17
|
+
// `.list-group-horizontal*` -> no replacement, use flex or grid utilities
|
|
18
|
+
// `.list-group-numbered` -> no replacement, use an ordered list with a custom counter
|
|
19
|
+
// because `.list-item` removes list markers
|
|
20
|
+
// `.list-group-item-*` -> no replacement, use background and text utilities
|
|
21
|
+
// `.list-header` -> no replacement, use a heading element
|
|
22
|
+
|
|
23
|
+
// These styles remain available for existing applications and there is no removal
|
|
24
|
+
// planned at this point. They will not receive further design updates and may be
|
|
25
|
+
// removed in a future major version.
|
|
26
|
+
|
|
1
27
|
@use 'sass:map';
|
|
2
28
|
|
|
3
29
|
@use '../variables/focus';
|
|
@@ -6,6 +32,7 @@
|
|
|
6
32
|
@use 'mixins/breakpoints';
|
|
7
33
|
@use 'variables';
|
|
8
34
|
|
|
35
|
+
// @deprecated Use `.list` instead.
|
|
9
36
|
.list-group {
|
|
10
37
|
display: flex;
|
|
11
38
|
flex-direction: column;
|
|
@@ -13,6 +40,8 @@
|
|
|
13
40
|
border-radius: variables.$list-group-border-radius;
|
|
14
41
|
}
|
|
15
42
|
|
|
43
|
+
// @deprecated No replacement, use an ordered list with a custom counter because
|
|
44
|
+
// `.list-item` removes list markers.
|
|
16
45
|
.list-group-numbered {
|
|
17
46
|
list-style-type: none;
|
|
18
47
|
counter-reset: section;
|
|
@@ -24,6 +53,7 @@
|
|
|
24
53
|
}
|
|
25
54
|
}
|
|
26
55
|
|
|
56
|
+
// @deprecated Use `.list-item.list-item-action` instead.
|
|
27
57
|
.list-group-item-action {
|
|
28
58
|
inline-size: 100%; // For `<button>`s (anchors become 100% by default though)
|
|
29
59
|
color: variables.$list-group-action-color;
|
|
@@ -47,6 +77,7 @@
|
|
|
47
77
|
}
|
|
48
78
|
}
|
|
49
79
|
|
|
80
|
+
// @deprecated Use `.list-item` instead.
|
|
50
81
|
.list-group-item {
|
|
51
82
|
position: relative;
|
|
52
83
|
display: block;
|
|
@@ -100,14 +131,17 @@
|
|
|
100
131
|
}
|
|
101
132
|
}
|
|
102
133
|
|
|
134
|
+
// @deprecated No replacement, the height of a `.list-item` follows its content.
|
|
103
135
|
.list-group-lg .list-group-item {
|
|
104
136
|
min-block-size: calc(3rem + 2 * variables.$list-group-item-padding-y);
|
|
105
137
|
}
|
|
106
138
|
|
|
139
|
+
// @deprecated No replacement, the height of a `.list-item` follows its content.
|
|
107
140
|
.list-group-md .list-group-item {
|
|
108
141
|
min-block-size: calc(2rem + 2 * variables.$list-group-item-padding-y);
|
|
109
142
|
}
|
|
110
143
|
|
|
144
|
+
// @deprecated No replacement, use a heading element.
|
|
111
145
|
.list-header {
|
|
112
146
|
font-size: typography.$si-font-size-body-sm;
|
|
113
147
|
padding-block: variables.$list-group-item-padding-y;
|
|
@@ -117,6 +151,7 @@
|
|
|
117
151
|
border: 1px solid variables.$list-group-border-color;
|
|
118
152
|
}
|
|
119
153
|
|
|
154
|
+
// @deprecated No replacement, use flex or grid utilities.
|
|
120
155
|
@each $breakpoint in map.keys(variables.$grid-breakpoints) {
|
|
121
156
|
@include breakpoints.media-breakpoint-up($breakpoint) {
|
|
122
157
|
$infix: breakpoints.breakpoint-infix($breakpoint, variables.$grid-breakpoints);
|
|
@@ -154,6 +189,7 @@
|
|
|
154
189
|
}
|
|
155
190
|
}
|
|
156
191
|
|
|
192
|
+
// @deprecated Use `.list` instead, the Element list has no outer border.
|
|
157
193
|
.list-group-flush {
|
|
158
194
|
border-radius: 0;
|
|
159
195
|
|
|
@@ -167,9 +203,11 @@
|
|
|
167
203
|
}
|
|
168
204
|
}
|
|
169
205
|
|
|
206
|
+
// @deprecated No replacement for the `.list-group-item-*` variants below,
|
|
207
|
+
// use the background and text utilities on a `.list-item` instead.
|
|
170
208
|
.list-group-item-secondary {
|
|
171
209
|
background-color: system-tokens.$si-sys-background-neutral;
|
|
172
|
-
color: system-tokens.$si-sys-text-
|
|
210
|
+
color: system-tokens.$si-sys-text-on-neutral;
|
|
173
211
|
}
|
|
174
212
|
|
|
175
213
|
.list-group-item-success {
|
|
@@ -92,7 +92,8 @@ $status-colors: (
|
|
|
92
92
|
'caution-contrast': system-tokens.$si-sys-text-on-caution,
|
|
93
93
|
'warning-contrast': system-tokens.$si-sys-text-on-warning,
|
|
94
94
|
'danger-contrast': system-tokens.$si-sys-text-on-danger,
|
|
95
|
-
'critical-contrast': system-tokens.$si-sys-text-on-critical
|
|
95
|
+
'critical-contrast': system-tokens.$si-sys-text-on-critical,
|
|
96
|
+
'neutral-contrast': system-tokens.$si-sys-text-on-neutral
|
|
96
97
|
) !default;
|
|
97
98
|
|
|
98
99
|
@each $color, $value in $status-colors {
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
@use '../variables/system-tokens';
|
|
3
3
|
@use '../variables/semantic-tokens';
|
|
4
4
|
@use '../variables/spacers';
|
|
5
|
+
@use '../variables/sizing';
|
|
5
6
|
@use '../variables/typography';
|
|
6
7
|
@use './functions';
|
|
7
8
|
|
|
@@ -363,15 +364,10 @@ $input-plaintext-color: $body-color !default;
|
|
|
363
364
|
|
|
364
365
|
$input-height-border: $input-border-width * 2 !default;
|
|
365
366
|
|
|
366
|
-
$input-height:
|
|
367
|
+
$input-height: map.get(sizing.$sizing, 80);
|
|
367
368
|
|
|
368
369
|
// don't derive from $input-height as it generates a nested calc() expression
|
|
369
|
-
$input-height-inner: calc(
|
|
370
|
-
// Wrap in parenthesis: `*` binds tighter than `-`, so without them only the border term gets multiplied.
|
|
371
|
-
// DEPRECATED: Calculate it yourself using $input-height-inner
|
|
372
|
-
$input-height-inner-half: calc((#{$input-height-inner}) * 0.5) !default;
|
|
373
|
-
// DEPRECATED: Calculate it yourself using $input-height-inner
|
|
374
|
-
$input-height-inner-quarter: calc((#{$input-height-inner}) * 0.25) !default;
|
|
370
|
+
$input-height-inner: calc(map.get(sizing.$sizing, 80) - (2 * 1px)) !default;
|
|
375
371
|
|
|
376
372
|
$input-transition:
|
|
377
373
|
border-color 0.15s ease-in-out,
|
|
@@ -464,7 +460,7 @@ $dropdown-font-size: $font-size-base !default;
|
|
|
464
460
|
// this is to have room for icon and badges
|
|
465
461
|
$dropdown-line-height: $badge-height;
|
|
466
462
|
$dropdown-color: $body-color !default;
|
|
467
|
-
$dropdown-bg: system-tokens.$si-sys-background-
|
|
463
|
+
$dropdown-bg: system-tokens.$si-sys-background-3 !default;
|
|
468
464
|
$dropdown-border-radius: semantic-tokens.$element-radius-2 !default;
|
|
469
465
|
$dropdown-divider-bg: system-tokens.$si-sys-border-4 !default;
|
|
470
466
|
$dropdown-divider-margin-y: 4px !default;
|
|
@@ -610,6 +606,8 @@ $progress-bar-animation-timing: 1s linear infinite !default;
|
|
|
610
606
|
$progress-bar-transition: width animations.element-transition-duration(0.6s) ease;
|
|
611
607
|
|
|
612
608
|
// List group
|
|
609
|
+
// @deprecated All `$list-group-*` variables below belong to the deprecated
|
|
610
|
+
// Bootstrap list group. Use the Element list (`.list` / `.list-item`) instead.
|
|
613
611
|
|
|
614
612
|
$list-group-color: system-tokens.$si-sys-text-primary !default;
|
|
615
613
|
$list-group-bg: system-tokens.$si-sys-background-1 !default;
|
|
@@ -197,7 +197,6 @@ select:is(.form-control, .form-select):not([multiple]) {
|
|
|
197
197
|
)
|
|
198
198
|
center,
|
|
199
199
|
right calc(map.get(spacers.$spacers-block, 2) - variables.$input-border-width) top 50%;
|
|
200
|
-
background-size: si-vars.$si-icon-font-size, variables.$form-feedback-icon-size;
|
|
201
200
|
|
|
202
201
|
@include utilities.rtl {
|
|
203
202
|
background-position: left
|
|
@@ -215,6 +214,7 @@ select:is(.form-control, .form-select)[multiple] {
|
|
|
215
214
|
border-start-end-radius: 0;
|
|
216
215
|
border-end-end-radius: 0;
|
|
217
216
|
padding: 0;
|
|
217
|
+
block-size: unset;
|
|
218
218
|
|
|
219
219
|
option {
|
|
220
220
|
padding: map.get(spacers.$spacers-block, 4) map.get(spacers.$spacers-inline, 4);
|
|
@@ -89,19 +89,14 @@ ol:has(.list-item) {
|
|
|
89
89
|
margin-block-end: 0;
|
|
90
90
|
|
|
91
91
|
@include typography.si-font(
|
|
92
|
-
typography.$si-font-size-
|
|
93
|
-
typography.$si-line-height-
|
|
94
|
-
typography.$si-font-weight-
|
|
92
|
+
typography.$si-font-size-body-sbold,
|
|
93
|
+
typography.$si-line-height-body-sbold,
|
|
94
|
+
typography.$si-font-weight-body-sbold
|
|
95
95
|
);
|
|
96
96
|
|
|
97
97
|
&.unread {
|
|
98
98
|
position: relative;
|
|
99
|
-
|
|
100
|
-
@include typography.si-font(
|
|
101
|
-
typography.$si-font-size-h5-bold,
|
|
102
|
-
typography.$si-line-height-h5-bold,
|
|
103
|
-
typography.$si-font-weight-h5-bold
|
|
104
|
-
);
|
|
99
|
+
font-weight: typography.$si-font-weight-bold;
|
|
105
100
|
|
|
106
101
|
&::before {
|
|
107
102
|
content: '';
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
.search-bar.variant-background-0 & {
|
|
48
|
-
background-color: system-tokens.$si-sys-background-
|
|
48
|
+
background-color: system-tokens.$si-sys-background-2 !important; // stylelint-disable-line declaration-no-important
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
|
|
@@ -37,6 +37,9 @@
|
|
|
37
37
|
.#{$prefix}accent-secondary-hover {
|
|
38
38
|
background-color: tokens.$si-sys-background-accent-secondary-hover !important;
|
|
39
39
|
}
|
|
40
|
+
.#{$prefix}active {
|
|
41
|
+
background-color: tokens.$si-sys-background-active !important;
|
|
42
|
+
}
|
|
40
43
|
.#{$prefix}caution {
|
|
41
44
|
background-color: tokens.$si-sys-background-caution !important;
|
|
42
45
|
}
|
|
@@ -97,6 +100,12 @@
|
|
|
97
100
|
.#{$prefix}neutral {
|
|
98
101
|
background-color: tokens.$si-sys-background-neutral !important;
|
|
99
102
|
}
|
|
103
|
+
.#{$prefix}neutral-active {
|
|
104
|
+
background-color: tokens.$si-sys-background-neutral-active !important;
|
|
105
|
+
}
|
|
106
|
+
.#{$prefix}neutral-hover {
|
|
107
|
+
background-color: tokens.$si-sys-background-neutral-hover !important;
|
|
108
|
+
}
|
|
100
109
|
.#{$prefix}success {
|
|
101
110
|
background-color: tokens.$si-sys-background-success !important;
|
|
102
111
|
}
|
|
@@ -181,6 +190,9 @@
|
|
|
181
190
|
.#{$prefix}on-information {
|
|
182
191
|
color: tokens.$si-sys-text-on-information !important;
|
|
183
192
|
}
|
|
193
|
+
.#{$prefix}on-neutral {
|
|
194
|
+
color: tokens.$si-sys-text-on-neutral !important;
|
|
195
|
+
}
|
|
184
196
|
.#{$prefix}on-success {
|
|
185
197
|
color: tokens.$si-sys-text-on-success !important;
|
|
186
198
|
}
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Siemens 2026
|
|
3
|
+
* Siemens Design Language Tokens
|
|
4
|
+
* Version 0.11.0
|
|
5
|
+
* Do not edit directly, this file was auto-generated.
|
|
6
|
+
*/
|
|
7
|
+
|
|
1
8
|
$si-sys-background-0: var(--si-sys-background-0);
|
|
2
9
|
$si-sys-background-1: var(--si-sys-background-1);
|
|
3
10
|
$si-sys-background-2: var(--si-sys-background-2);
|
|
@@ -9,6 +16,7 @@ $si-sys-background-accent-hover: var(--si-sys-background-accent-hover);
|
|
|
9
16
|
$si-sys-background-accent-secondary: var(--si-sys-background-accent-secondary);
|
|
10
17
|
$si-sys-background-accent-secondary-active: var(--si-sys-background-accent-secondary-active);
|
|
11
18
|
$si-sys-background-accent-secondary-hover: var(--si-sys-background-accent-secondary-hover);
|
|
19
|
+
$si-sys-background-active: var(--si-sys-background-active);
|
|
12
20
|
$si-sys-background-caution: var(--si-sys-background-caution);
|
|
13
21
|
$si-sys-background-caution-active: var(--si-sys-background-caution-active);
|
|
14
22
|
$si-sys-background-caution-hover: var(--si-sys-background-caution-hover);
|
|
@@ -29,7 +37,8 @@ $si-sys-background-information-hover: var(--si-sys-background-information-hover)
|
|
|
29
37
|
$si-sys-background-information-subtle: var(--si-sys-background-information-subtle);
|
|
30
38
|
$si-sys-background-inverse: var(--si-sys-background-inverse);
|
|
31
39
|
$si-sys-background-neutral: var(--si-sys-background-neutral);
|
|
32
|
-
$si-sys-background-active: var(--si-sys-background-active);
|
|
40
|
+
$si-sys-background-neutral-active: var(--si-sys-background-neutral-active);
|
|
41
|
+
$si-sys-background-neutral-hover: var(--si-sys-background-neutral-hover);
|
|
33
42
|
$si-sys-background-success: var(--si-sys-background-success);
|
|
34
43
|
$si-sys-background-success-active: var(--si-sys-background-success-active);
|
|
35
44
|
$si-sys-background-success-hover: var(--si-sys-background-success-hover);
|
|
@@ -57,9 +66,6 @@ $si-sys-border-success: var(--si-sys-border-success);
|
|
|
57
66
|
$si-sys-border-warning: var(--si-sys-border-warning);
|
|
58
67
|
$si-sys-border-warning-secondary: var(--si-sys-border-warning-secondary);
|
|
59
68
|
$si-sys-code-1: var(--si-sys-code-1);
|
|
60
|
-
$si-sys-code-10: var(--si-sys-code-10);
|
|
61
|
-
$si-sys-code-11: var(--si-sys-code-11);
|
|
62
|
-
$si-sys-code-12: var(--si-sys-code-12);
|
|
63
69
|
$si-sys-code-2: var(--si-sys-code-2);
|
|
64
70
|
$si-sys-code-3: var(--si-sys-code-3);
|
|
65
71
|
$si-sys-code-4: var(--si-sys-code-4);
|
|
@@ -68,15 +74,10 @@ $si-sys-code-6: var(--si-sys-code-6);
|
|
|
68
74
|
$si-sys-code-7: var(--si-sys-code-7);
|
|
69
75
|
$si-sys-code-8: var(--si-sys-code-8);
|
|
70
76
|
$si-sys-code-9: var(--si-sys-code-9);
|
|
77
|
+
$si-sys-code-10: var(--si-sys-code-10);
|
|
78
|
+
$si-sys-code-11: var(--si-sys-code-11);
|
|
79
|
+
$si-sys-code-12: var(--si-sys-code-12);
|
|
71
80
|
$si-sys-data-categorical-1: var(--si-sys-data-categorical-1);
|
|
72
|
-
$si-sys-data-categorical-10: var(--si-sys-data-categorical-10);
|
|
73
|
-
$si-sys-data-categorical-11: var(--si-sys-data-categorical-11);
|
|
74
|
-
$si-sys-data-categorical-12: var(--si-sys-data-categorical-12);
|
|
75
|
-
$si-sys-data-categorical-13: var(--si-sys-data-categorical-13);
|
|
76
|
-
$si-sys-data-categorical-14: var(--si-sys-data-categorical-14);
|
|
77
|
-
$si-sys-data-categorical-15: var(--si-sys-data-categorical-15);
|
|
78
|
-
$si-sys-data-categorical-16: var(--si-sys-data-categorical-16);
|
|
79
|
-
$si-sys-data-categorical-17: var(--si-sys-data-categorical-17);
|
|
80
81
|
$si-sys-data-categorical-2: var(--si-sys-data-categorical-2);
|
|
81
82
|
$si-sys-data-categorical-3: var(--si-sys-data-categorical-3);
|
|
82
83
|
$si-sys-data-categorical-4: var(--si-sys-data-categorical-4);
|
|
@@ -85,6 +86,14 @@ $si-sys-data-categorical-6: var(--si-sys-data-categorical-6);
|
|
|
85
86
|
$si-sys-data-categorical-7: var(--si-sys-data-categorical-7);
|
|
86
87
|
$si-sys-data-categorical-8: var(--si-sys-data-categorical-8);
|
|
87
88
|
$si-sys-data-categorical-9: var(--si-sys-data-categorical-9);
|
|
89
|
+
$si-sys-data-categorical-10: var(--si-sys-data-categorical-10);
|
|
90
|
+
$si-sys-data-categorical-11: var(--si-sys-data-categorical-11);
|
|
91
|
+
$si-sys-data-categorical-12: var(--si-sys-data-categorical-12);
|
|
92
|
+
$si-sys-data-categorical-13: var(--si-sys-data-categorical-13);
|
|
93
|
+
$si-sys-data-categorical-14: var(--si-sys-data-categorical-14);
|
|
94
|
+
$si-sys-data-categorical-15: var(--si-sys-data-categorical-15);
|
|
95
|
+
$si-sys-data-categorical-16: var(--si-sys-data-categorical-16);
|
|
96
|
+
$si-sys-data-categorical-17: var(--si-sys-data-categorical-17);
|
|
88
97
|
$si-sys-data-rating-average: var(--si-sys-data-rating-average);
|
|
89
98
|
$si-sys-data-rating-bad: var(--si-sys-data-rating-bad);
|
|
90
99
|
$si-sys-data-rating-excellent: var(--si-sys-data-rating-excellent);
|
|
@@ -171,6 +180,7 @@ $si-sys-text-on-critical: var(--si-sys-text-on-critical);
|
|
|
171
180
|
$si-sys-text-on-danger: var(--si-sys-text-on-danger);
|
|
172
181
|
$si-sys-text-on-danger-secondary: var(--si-sys-text-on-danger-secondary);
|
|
173
182
|
$si-sys-text-on-information: var(--si-sys-text-on-information);
|
|
183
|
+
$si-sys-text-on-neutral: var(--si-sys-text-on-neutral);
|
|
174
184
|
$si-sys-text-on-success: var(--si-sys-text-on-success);
|
|
175
185
|
$si-sys-text-on-warning: var(--si-sys-text-on-warning);
|
|
176
186
|
$si-sys-text-on-warning-secondary: var(--si-sys-text-on-warning-secondary);
|
|
@@ -305,6 +305,18 @@ $theme-element-light: (
|
|
|
305
305
|
si-sys-text-on-danger-secondary: base.$color-red-500,
|
|
306
306
|
si-sys-text-critical: data.$color-data-orchid-700,
|
|
307
307
|
si-sys-text-on-critical: base.$color-white,
|
|
308
|
+
si-sys-code-1: data.$color-data-royal-blue-900,
|
|
309
|
+
si-sys-code-2: base.$color-teal,
|
|
310
|
+
si-sys-code-3: data.$color-data-blue-900,
|
|
311
|
+
si-sys-code-4: data.$color-data-yellow-900,
|
|
312
|
+
si-sys-code-5: data.$color-data-yellow-900,
|
|
313
|
+
si-sys-code-6: data.$color-data-turquoise-700,
|
|
314
|
+
si-sys-code-7: data.$color-data-orchid-500,
|
|
315
|
+
si-sys-code-8: base.$color-deep-blue-600,
|
|
316
|
+
si-sys-code-9: base.$color-deep-blue-600,
|
|
317
|
+
si-sys-code-10: data.$color-data-purple-900,
|
|
318
|
+
si-sys-code-11: data.$color-data-interactive-coral-700,
|
|
319
|
+
si-sys-code-12: base.$color-red-700,
|
|
308
320
|
si-sys-border-1: base.$color-deep-blue-900,
|
|
309
321
|
si-sys-border-2: base.$color-deep-blue-600,
|
|
310
322
|
si-sys-border-3: base.$color-deep-blue-400,
|
|
@@ -636,6 +648,18 @@ $theme-element-dark: (
|
|
|
636
648
|
si-sys-text-on-danger-secondary: base.$color-red-300,
|
|
637
649
|
si-sys-text-critical: data.$color-data-orchid-100,
|
|
638
650
|
si-sys-text-on-critical: base.$color-white,
|
|
651
|
+
si-sys-code-1: data.$color-data-deep-blue-100,
|
|
652
|
+
si-sys-code-2: data.$color-data-royal-blue-200,
|
|
653
|
+
si-sys-code-3: data.$color-data-blue-200,
|
|
654
|
+
si-sys-code-4: data.$color-data-orange-200,
|
|
655
|
+
si-sys-code-5: data.$color-data-yellow-200,
|
|
656
|
+
si-sys-code-6: data.$color-data-green-200,
|
|
657
|
+
si-sys-code-7: data.$color-data-orchid-200,
|
|
658
|
+
si-sys-code-8: data.$color-data-sand-500,
|
|
659
|
+
si-sys-code-9: base.$color-deep-blue-500,
|
|
660
|
+
si-sys-code-10: data.$color-data-purple-400,
|
|
661
|
+
si-sys-code-11: data.$color-data-turquoise-100,
|
|
662
|
+
si-sys-code-12: base.$color-red-300,
|
|
639
663
|
si-sys-border-1: base.$color-white,
|
|
640
664
|
si-sys-border-2: base.$color-deep-blue-400,
|
|
641
665
|
si-sys-border-3: base.$color-deep-blue-600,
|