@inera/ids-design 7.1.3 → 7.2.1
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/components/header-inera/header-inera-item-lit.js +1 -1
- package/components/header-inera/header-inera-item.css +1 -0
- package/components/header-inera-admin/composite-header-inera-admin.css +98 -39
- package/components/header-inera-admin/header-inera-admin-item-lit.js +1 -1
- package/components/header-inera-admin/header-inera-admin-item.css +1 -0
- package/components/header-inera-admin/header-inera-admin-lit.js +1 -1
- package/components/header-inera-admin/header-inera-admin.css +97 -39
- package/components/tabs/tabs-lit.js +1 -1
- package/components/tabs/tabs.css +3 -0
- package/package.json +1 -1
- package/tokens/themes/1177-admin-tokens.css +300 -0
- package/tokens/themes/1177-pro-tokens.css +300 -0
- package/tokens/themes/1177-tokens.css +300 -0
- package/tokens/themes/inera-admin-tokens.css +290 -0
- package/tokens/themes/inera-tokens.css +290 -0
|
@@ -0,0 +1,300 @@
|
|
|
1
|
+
.ids--1177.ids--light,
|
|
2
|
+
.ids--1177.ids--dark {
|
|
3
|
+
--ids-palette-primary-30: #6a0032;
|
|
4
|
+
--ids-palette-primary-35: #a00b36;
|
|
5
|
+
--ids-palette-primary-40: #c12143;
|
|
6
|
+
--ids-palette-primary-60: #da254c;
|
|
7
|
+
--ids-palette-primary-90: #faeef0;
|
|
8
|
+
--ids-palette-secondary-95: #faf8f6;
|
|
9
|
+
--ids-palette-accent-30: #3b4266;
|
|
10
|
+
--ids-palette-accent-40: #396291;
|
|
11
|
+
--ids-palette-accent-50: #166ed4;
|
|
12
|
+
--ids-palette-accent-60: #79aeec;
|
|
13
|
+
--ids-palette-accent-90: #c6d2df;
|
|
14
|
+
--ids-palette-accent-95: #f1f1f5;
|
|
15
|
+
--ids-palette-neutral-10: #151515;
|
|
16
|
+
--ids-palette-neutral-15: #252525;
|
|
17
|
+
--ids-palette-neutral-20: #353535;
|
|
18
|
+
--ids-palette-neutral-40: #636466;
|
|
19
|
+
--ids-palette-neutral-50: #808285;
|
|
20
|
+
--ids-palette-neutral-90: #dadbdc;
|
|
21
|
+
--ids-palette-neutral-99: #f1f2f2;
|
|
22
|
+
--ids-palette-neutral-100: #ffffff;
|
|
23
|
+
--ids-palette-success-30: #395428;
|
|
24
|
+
--ids-palette-success-40: #419002;
|
|
25
|
+
--ids-palette-success-99: #eef8ee;
|
|
26
|
+
--ids-palette-attention-40: #ffc100;
|
|
27
|
+
--ids-palette-attention-95: #fff8e0;
|
|
28
|
+
--ids-palette-error-35: #a00b36;
|
|
29
|
+
--ids-palette-error-40: #c12143;
|
|
30
|
+
--ids-palette-error-60: #da254c;
|
|
31
|
+
--ids-palette-error-99: #faeef0;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.ids--1177.ids--light {
|
|
35
|
+
--ids-input-height: 3rem;
|
|
36
|
+
--ids-input-padding-x: 1.25rem;
|
|
37
|
+
--ids-textarea-padding-x: 1.25rem;
|
|
38
|
+
--ids-select-height: 3rem;
|
|
39
|
+
--ids-select-padding-x: 1.25rem;
|
|
40
|
+
--ids-search-button-small-padding-x: 1.75rem;
|
|
41
|
+
--ids-search-button-small-padding-y: 0.75rem;
|
|
42
|
+
--ids-search-button-small-font-seize: 1.125rem;
|
|
43
|
+
--ids-search-button-small-line-height: 1.5rem;
|
|
44
|
+
--ids-font-family-primary: Open sans;
|
|
45
|
+
--ids-font-family-secondary: Inter;
|
|
46
|
+
--ids-color-surface-background-default: #ffffff;
|
|
47
|
+
--ids-color-surface-border-default: #808285;
|
|
48
|
+
--ids-color-surface-text-on-default: #353535;
|
|
49
|
+
--ids-color-surface-text-subtle-on-default: #636466;
|
|
50
|
+
--ids-color-surface-background-elevated-1: #ffffff;
|
|
51
|
+
--ids-color-surface-border-elevated-1: #dadbdc;
|
|
52
|
+
--ids-color-surface-text-on-elevated-1: #353535;
|
|
53
|
+
--ids-color-surface-text-subtle-on-elevated-1: #636466;
|
|
54
|
+
--ids-color-surface-background-elevated-1-hover: #ffffff;
|
|
55
|
+
--ids-color-surface-background-elevated-1-active: #ffffff;
|
|
56
|
+
--ids-color-surface-background-elevated-2: #ffffff;
|
|
57
|
+
--ids-color-surface-border-elevated-2: #dadbdc;
|
|
58
|
+
--ids-color-surface-text-on-elevated-2: #353535;
|
|
59
|
+
--ids-color-surface-background-alternative: #faf8f6;
|
|
60
|
+
--ids-color-surface-text-on-alternative: #353535;
|
|
61
|
+
--ids-color-surface-background-alternative-elevated-1: #faf8f6;
|
|
62
|
+
--ids-color-brand-background-primary: #c12143;
|
|
63
|
+
--ids-color-brand-border-primary: #c12143;
|
|
64
|
+
--ids-color-brand-text-primary: #c12143;
|
|
65
|
+
--ids-color-brand-text-primary-subtle: #6a0032;
|
|
66
|
+
--ids-color-brand-text-on-primary: #ffffff;
|
|
67
|
+
--ids-color-brand-background-secondary: #faeef0;
|
|
68
|
+
--ids-color-brand-text-secondary: #6a0032;
|
|
69
|
+
--ids-color-brand-text-on-secondary: #353535;
|
|
70
|
+
--ids-color-brand-region-logo: #ffffff;
|
|
71
|
+
--ids-color-navigation-background-default: #c12143;
|
|
72
|
+
--ids-color-navigation-border-default: #a00b36;
|
|
73
|
+
--ids-color-navigation-text-default: #a00b36;
|
|
74
|
+
--ids-color-navigation-icon-default: #c12143;
|
|
75
|
+
--ids-color-navigation-text-on-default: #ffffff;
|
|
76
|
+
--ids-color-navigation-background-hover: #6a0032;
|
|
77
|
+
--ids-color-navigation-border-hover: #6a0032;
|
|
78
|
+
--ids-color-navigation-text-hover: #6a0032;
|
|
79
|
+
--ids-color-navigation-text-on-hover: #ffffff;
|
|
80
|
+
--ids-color-navigation-background-active: #6a0032;
|
|
81
|
+
--ids-color-navigation-border-active: #6a0032;
|
|
82
|
+
--ids-color-navigation-text-active: #6a0032;
|
|
83
|
+
--ids-color-navigation-text-on-active: #ffffff;
|
|
84
|
+
--ids-color-navigation-text-on-secondary: #353535;
|
|
85
|
+
--ids-color-interactive-background-default: #396291;
|
|
86
|
+
--ids-color-interactive-border-default: #396291;
|
|
87
|
+
--ids-color-interactive-text-default: #396291;
|
|
88
|
+
--ids-color-interactive-text-on-default: #ffffff;
|
|
89
|
+
--ids-color-interactive-background-hover: #3b4266;
|
|
90
|
+
--ids-color-interactive-border-hover: #3b4266;
|
|
91
|
+
--ids-color-interactive-text-hover: #3b4266;
|
|
92
|
+
--ids-color-interactive-text-on-hover: #ffffff;
|
|
93
|
+
--ids-color-interactive-background-active: #3b4266;
|
|
94
|
+
--ids-color-interactive-border-active: #3b4266;
|
|
95
|
+
--ids-color-interactive-text-active: #3b4266;
|
|
96
|
+
--ids-color-interactive-text-on-active: #ffffff;
|
|
97
|
+
--ids-color-interactive-background-disabled: #ffffff;
|
|
98
|
+
--ids-color-interactive-border-disabled: #808285;
|
|
99
|
+
--ids-color-interactive-text-disabled: #636466;
|
|
100
|
+
--ids-color-interactive-text-on-disabled: #636466;
|
|
101
|
+
--ids-color-interactive-focus-outline: #636466;
|
|
102
|
+
--ids-color-interactive-focus-outline-on: #ffffff;
|
|
103
|
+
--ids-color-feedback-background-information: #f1f1f5;
|
|
104
|
+
--ids-color-feedback-border-information: #396291;
|
|
105
|
+
--ids-color-feedback-text-on-information: #353535;
|
|
106
|
+
--ids-color-feedback-text-information: #3b4266;
|
|
107
|
+
--ids-color-feedback-background-success: #eef8ee;
|
|
108
|
+
--ids-color-feedback-border-success: #419002;
|
|
109
|
+
--ids-color-feedback-text-on-success: #353535;
|
|
110
|
+
--ids-color-feedback-text-success: #395428;
|
|
111
|
+
--ids-color-feedback-background-attention: #fff8e0;
|
|
112
|
+
--ids-color-feedback-border-attention: #808285;
|
|
113
|
+
--ids-color-feedback-text-on-attention: #353535;
|
|
114
|
+
--ids-color-feedback-text-attention: #636466;
|
|
115
|
+
--ids-color-feedback-background-error: #faeef0;
|
|
116
|
+
--ids-color-feedback-border-error: #c12143;
|
|
117
|
+
--ids-color-feedback-text-on-error: #353535;
|
|
118
|
+
--ids-color-feedback-text-error: #a00b36;
|
|
119
|
+
--ids-color-feedback-background-notification: #c12143;
|
|
120
|
+
--ids-color-feedback-text-on-notification: #ffffff;
|
|
121
|
+
--ids-color-form-background-default: #f1f1f5;
|
|
122
|
+
--ids-color-form-border-default: #396291;
|
|
123
|
+
--ids-color-form-text-on-default: #353535;
|
|
124
|
+
--ids-color-form-placeholder-text-on-default: #636466;
|
|
125
|
+
--ids-color-form-background-light-default: #ffffff;
|
|
126
|
+
--ids-color-form-border-light-default: #396291;
|
|
127
|
+
--ids-color-form-text-on-light-default: #353535;
|
|
128
|
+
--ids-color-form-placeholder-text-on-light-default: #636466;
|
|
129
|
+
--ids-color-form-background-active: #f1f1f5;
|
|
130
|
+
--ids-color-form-border-active: #396291;
|
|
131
|
+
--ids-color-form-text-on-active: #353535;
|
|
132
|
+
--ids-color-form-placeholder-text-on-active: #636466;
|
|
133
|
+
--ids-color-form-background-light-active: #ffffff;
|
|
134
|
+
--ids-color-form-border-light-active: #396291;
|
|
135
|
+
--ids-color-form-text-on-light-active: #353535;
|
|
136
|
+
--ids-color-form-placeholder-text-on-light-active: #636466;
|
|
137
|
+
--ids-color-form-background-disabled: #f1f2f2;
|
|
138
|
+
--ids-color-form-border-disabled: #636466;
|
|
139
|
+
--ids-color-form-text-on-light-disabled: #636466;
|
|
140
|
+
--ids-color-form-placeholder-text-on-light-disabled: #636466;
|
|
141
|
+
--ids-color-form-background-light-disabled: #f1f2f2;
|
|
142
|
+
--ids-color-form-border-light-disabled: #636466;
|
|
143
|
+
--ids-color-form-text-on-disabled: #636466;
|
|
144
|
+
--ids-color-form-placeholder-text-on-disabled: #636466;
|
|
145
|
+
--ids-color-form-background-invalid: #faeef0;
|
|
146
|
+
--ids-color-form-border-invalid: #c12143;
|
|
147
|
+
--ids-color-form-text-on-invalid: #353535;
|
|
148
|
+
--ids-color-form-placeholder-text-on-invalid: #636466;
|
|
149
|
+
--ids-color-form-message-background-invalid: #ffffff;
|
|
150
|
+
--ids-color-form-message-border-invalid: #c12143;
|
|
151
|
+
--ids-color-form-message-text-on-invalid: #c12143;
|
|
152
|
+
--ids-color-form-background-light-invalid: #faeef0;
|
|
153
|
+
--ids-color-form-border-light-invalid: #c12143;
|
|
154
|
+
--ids-color-form-text-on-light-invalid: #353535;
|
|
155
|
+
--ids-color-form-placeholder-text-on-light-invalid: #636466;
|
|
156
|
+
--ids-color-heading-text-xxl: #c12143;
|
|
157
|
+
--ids-color-heading-text-xl: #c12143;
|
|
158
|
+
--ids-color-heading-text-l: #c12143;
|
|
159
|
+
--ids-color-heading-text-m: #c12143;
|
|
160
|
+
--ids-color-heading-text-s: #353535;
|
|
161
|
+
--ids-color-heading-text-xs: #353535;
|
|
162
|
+
--ids-border-radius-primary: 0.625rem;
|
|
163
|
+
--ids-border-radius-secondary: 0.3125rem;
|
|
164
|
+
--ids-border-width-general: 0.0625rem;
|
|
165
|
+
--ids-border-width-invalid: 0.125rem;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.ids--1177.ids--dark {
|
|
169
|
+
--ids-input-height: 3rem;
|
|
170
|
+
--ids-input-padding-x: 1.25rem;
|
|
171
|
+
--ids-textarea-padding-x: 1.25rem;
|
|
172
|
+
--ids-select-height: 3rem;
|
|
173
|
+
--ids-select-padding-x: 1.25rem;
|
|
174
|
+
--ids-search-button-small-padding-x: 1.75rem;
|
|
175
|
+
--ids-search-button-small-padding-y: 0.75rem;
|
|
176
|
+
--ids-search-button-small-font-seize: 1.125rem;
|
|
177
|
+
--ids-search-button-small-line-height: 1.5rem;
|
|
178
|
+
--ids-font-family-primary: Open sans;
|
|
179
|
+
--ids-font-family-secondary: Inter;
|
|
180
|
+
--ids-color-surface-background-default: #151515;
|
|
181
|
+
--ids-color-surface-border-default: #808285;
|
|
182
|
+
--ids-color-surface-text-on-default: #ffffff;
|
|
183
|
+
--ids-color-surface-text-subtle-on-default: #f1f2f2;
|
|
184
|
+
--ids-color-surface-background-elevated-1: #252525;
|
|
185
|
+
--ids-color-surface-border-elevated-1: #808285;
|
|
186
|
+
--ids-color-surface-text-on-elevated-1: #ffffff;
|
|
187
|
+
--ids-color-surface-text-subtle-on-elevated-1: #f1f2f2;
|
|
188
|
+
--ids-color-surface-background-elevated-1-hover: #353535;
|
|
189
|
+
--ids-color-surface-background-elevated-1-active: #353535;
|
|
190
|
+
--ids-color-surface-background-elevated-2: #353535;
|
|
191
|
+
--ids-color-surface-border-elevated-2: #808285;
|
|
192
|
+
--ids-color-surface-text-on-elevated-2: #ffffff;
|
|
193
|
+
--ids-color-surface-background-alternative: #151515;
|
|
194
|
+
--ids-color-surface-text-on-alternative: #ffffff;
|
|
195
|
+
--ids-color-surface-background-alternative-elevated-1: #252525;
|
|
196
|
+
--ids-color-brand-background-primary: #353535;
|
|
197
|
+
--ids-color-brand-border-primary: #da254c;
|
|
198
|
+
--ids-color-brand-text-primary: #da254c;
|
|
199
|
+
--ids-color-brand-text-primary-subtle: #dadbdc;
|
|
200
|
+
--ids-color-brand-text-on-primary: #da254c;
|
|
201
|
+
--ids-color-brand-background-secondary: #252525;
|
|
202
|
+
--ids-color-brand-text-secondary: #faeef0;
|
|
203
|
+
--ids-color-brand-text-on-secondary: #ffffff;
|
|
204
|
+
--ids-color-brand-region-logo: #ffffff;
|
|
205
|
+
--ids-color-navigation-background-default: #151515;
|
|
206
|
+
--ids-color-navigation-border-default: #faeef0;
|
|
207
|
+
--ids-color-navigation-text-default: #faeef0;
|
|
208
|
+
--ids-color-navigation-icon-default: #faeef0;
|
|
209
|
+
--ids-color-navigation-text-on-default: #faeef0;
|
|
210
|
+
--ids-color-navigation-background-hover: #da254c;
|
|
211
|
+
--ids-color-navigation-border-hover: #da254c;
|
|
212
|
+
--ids-color-navigation-text-hover: #ffffff;
|
|
213
|
+
--ids-color-navigation-text-on-hover: #faeef0;
|
|
214
|
+
--ids-color-navigation-background-active: #da254c;
|
|
215
|
+
--ids-color-navigation-border-active: #da254c;
|
|
216
|
+
--ids-color-navigation-text-active: #ffffff;
|
|
217
|
+
--ids-color-navigation-text-on-active: #faeef0;
|
|
218
|
+
--ids-color-navigation-text-on-secondary: #ffffff;
|
|
219
|
+
--ids-color-interactive-background-default: #79aeec;
|
|
220
|
+
--ids-color-interactive-border-default: #c6d2df;
|
|
221
|
+
--ids-color-interactive-text-default: #79aeec;
|
|
222
|
+
--ids-color-interactive-text-on-default: #151515;
|
|
223
|
+
--ids-color-interactive-background-hover: #ffffff;
|
|
224
|
+
--ids-color-interactive-border-hover: #ffffff;
|
|
225
|
+
--ids-color-interactive-text-hover: #ffffff;
|
|
226
|
+
--ids-color-interactive-text-on-hover: #3b4266;
|
|
227
|
+
--ids-color-interactive-background-active: #ffffff;
|
|
228
|
+
--ids-color-interactive-border-active: #ffffff;
|
|
229
|
+
--ids-color-interactive-text-active: #ffffff;
|
|
230
|
+
--ids-color-interactive-text-on-active: #3b4266;
|
|
231
|
+
--ids-color-interactive-background-disabled: #dadbdc;
|
|
232
|
+
--ids-color-interactive-border-disabled: #808285;
|
|
233
|
+
--ids-color-interactive-text-disabled: #dadbdc;
|
|
234
|
+
--ids-color-interactive-text-on-disabled: #636466;
|
|
235
|
+
--ids-color-interactive-focus-outline: #f1f2f2;
|
|
236
|
+
--ids-color-interactive-focus-outline-on: #353535;
|
|
237
|
+
--ids-color-feedback-background-information: #252525;
|
|
238
|
+
--ids-color-feedback-border-information: #166ed4;
|
|
239
|
+
--ids-color-feedback-text-on-information: #ffffff;
|
|
240
|
+
--ids-color-feedback-text-information: #166ed4;
|
|
241
|
+
--ids-color-feedback-background-success: #252525;
|
|
242
|
+
--ids-color-feedback-border-success: #419002;
|
|
243
|
+
--ids-color-feedback-text-on-success: #ffffff;
|
|
244
|
+
--ids-color-feedback-text-success: #419002;
|
|
245
|
+
--ids-color-feedback-background-attention: #252525;
|
|
246
|
+
--ids-color-feedback-border-attention: #ffc100;
|
|
247
|
+
--ids-color-feedback-text-on-attention: #ffffff;
|
|
248
|
+
--ids-color-feedback-text-attention: #ffc100;
|
|
249
|
+
--ids-color-feedback-background-error: #252525;
|
|
250
|
+
--ids-color-feedback-border-error: #c12143;
|
|
251
|
+
--ids-color-feedback-text-on-error: #ffffff;
|
|
252
|
+
--ids-color-feedback-text-error: #da254c;
|
|
253
|
+
--ids-color-feedback-background-notification: #da254c;
|
|
254
|
+
--ids-color-feedback-text-on-notification: #ffffff;
|
|
255
|
+
--ids-color-form-background-default: #151515;
|
|
256
|
+
--ids-color-form-border-default: #c6d2df;
|
|
257
|
+
--ids-color-form-text-on-default: #ffffff;
|
|
258
|
+
--ids-color-form-placeholder-text-on-default: #f1f2f2;
|
|
259
|
+
--ids-color-form-background-light-default: #151515;
|
|
260
|
+
--ids-color-form-border-light-default: #c6d2df;
|
|
261
|
+
--ids-color-form-text-on-light-default: #ffffff;
|
|
262
|
+
--ids-color-form-placeholder-text-on-light-default: #f1f2f2;
|
|
263
|
+
--ids-color-form-background-active: #151515;
|
|
264
|
+
--ids-color-form-border-active: #ffffff;
|
|
265
|
+
--ids-color-form-text-on-active: #ffffff;
|
|
266
|
+
--ids-color-form-placeholder-text-on-active: #f1f2f2;
|
|
267
|
+
--ids-color-form-background-light-active: #151515;
|
|
268
|
+
--ids-color-form-border-light-active: #ffffff;
|
|
269
|
+
--ids-color-form-text-on-light-active: #ffffff;
|
|
270
|
+
--ids-color-form-placeholder-text-on-light-active: #f1f2f2;
|
|
271
|
+
--ids-color-form-background-disabled: #151515;
|
|
272
|
+
--ids-color-form-border-disabled: #dadbdc;
|
|
273
|
+
--ids-color-form-text-on-light-disabled: #f1f2f2;
|
|
274
|
+
--ids-color-form-placeholder-text-on-light-disabled: #f1f2f2;
|
|
275
|
+
--ids-color-form-background-light-disabled: #151515;
|
|
276
|
+
--ids-color-form-border-light-disabled: #dadbdc;
|
|
277
|
+
--ids-color-form-text-on-disabled: #f1f2f2;
|
|
278
|
+
--ids-color-form-placeholder-text-on-disabled: #f1f2f2;
|
|
279
|
+
--ids-color-form-background-invalid: #151515;
|
|
280
|
+
--ids-color-form-border-invalid: #c12143;
|
|
281
|
+
--ids-color-form-text-on-invalid: #ffffff;
|
|
282
|
+
--ids-color-form-placeholder-text-on-invalid: #f1f2f2;
|
|
283
|
+
--ids-color-form-message-background-invalid: #353535;
|
|
284
|
+
--ids-color-form-message-border-invalid: #da254c;
|
|
285
|
+
--ids-color-form-message-text-on-invalid: #ffffff;
|
|
286
|
+
--ids-color-form-background-light-invalid: #151515;
|
|
287
|
+
--ids-color-form-border-light-invalid: #da254c;
|
|
288
|
+
--ids-color-form-text-on-light-invalid: #ffffff;
|
|
289
|
+
--ids-color-form-placeholder-text-on-light-invalid: #f1f2f2;
|
|
290
|
+
--ids-color-heading-text-xxl: #ffffff;
|
|
291
|
+
--ids-color-heading-text-xl: #ffffff;
|
|
292
|
+
--ids-color-heading-text-l: #ffffff;
|
|
293
|
+
--ids-color-heading-text-m: #ffffff;
|
|
294
|
+
--ids-color-heading-text-s: #ffffff;
|
|
295
|
+
--ids-color-heading-text-xs: #ffffff;
|
|
296
|
+
--ids-border-radius-primary: 0.625rem;
|
|
297
|
+
--ids-border-radius-secondary: 0.3125rem;
|
|
298
|
+
--ids-border-width-general: 0.125rem;
|
|
299
|
+
--ids-border-width-invalid: 0.125rem;
|
|
300
|
+
}
|
|
@@ -0,0 +1,290 @@
|
|
|
1
|
+
.ids--inera-admin.ids--light,
|
|
2
|
+
.ids--inera-admin.ids--dark {
|
|
3
|
+
--ids-palette-primary-30: #7e2a4c;
|
|
4
|
+
--ids-palette-primary-40: #a33662;
|
|
5
|
+
--ids-palette-primary-50: #c03f73;
|
|
6
|
+
--ids-palette-primary-60: #e481a9;
|
|
7
|
+
--ids-palette-primary-90: #e3abc1;
|
|
8
|
+
--ids-palette-secondary-40: #e7dac5;
|
|
9
|
+
--ids-palette-secondary-90: #f6f1e9;
|
|
10
|
+
--ids-palette-secondary-95: #f9f6f1;
|
|
11
|
+
--ids-palette-accent-30: #305a47;
|
|
12
|
+
--ids-palette-accent-40: #40775e;
|
|
13
|
+
--ids-palette-accent-90: #94d1b6;
|
|
14
|
+
--ids-palette-neutral-10: #151515;
|
|
15
|
+
--ids-palette-neutral-15: #252525;
|
|
16
|
+
--ids-palette-neutral-20: #353636;
|
|
17
|
+
--ids-palette-neutral-40: #727373;
|
|
18
|
+
--ids-palette-neutral-90: #cccccc;
|
|
19
|
+
--ids-palette-neutral-99: #f0f0f0;
|
|
20
|
+
--ids-palette-neutral-100: #ffffff;
|
|
21
|
+
--ids-palette-success-40: #2c863f;
|
|
22
|
+
--ids-palette-success-99: #e7f7ea;
|
|
23
|
+
--ids-palette-attention-40: #ffd748;
|
|
24
|
+
--ids-palette-attention-95: #fff7d9;
|
|
25
|
+
--ids-palette-error-40: #db0f00;
|
|
26
|
+
--ids-palette-error-60: #f52819;
|
|
27
|
+
--ids-palette-error-99: #ffeceb;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.ids--inera-admin.ids--light {
|
|
31
|
+
--ids-input-height: 2.25rem;
|
|
32
|
+
--ids-input-padding-x: 1rem;
|
|
33
|
+
--ids-textarea-padding-x: 1rem;
|
|
34
|
+
--ids-select-height: 2.25rem;
|
|
35
|
+
--ids-select-padding-x: 1rem;
|
|
36
|
+
--ids-search-button-small-padding-x: 1.5rem;
|
|
37
|
+
--ids-search-button-small-padding-y: 0.5rem;
|
|
38
|
+
--ids-search-button-small-font-seize: 1rem;
|
|
39
|
+
--ids-search-button-small-line-height: 1.25rem;
|
|
40
|
+
--ids-font-family-primary: Open sans;
|
|
41
|
+
--ids-font-family-secondary: Poppins;
|
|
42
|
+
--ids-color-surface-background-default: #ffffff;
|
|
43
|
+
--ids-color-surface-border-default: #727373;
|
|
44
|
+
--ids-color-surface-text-on-default: #353636;
|
|
45
|
+
--ids-color-surface-background-elevated-1: #ffffff;
|
|
46
|
+
--ids-color-surface-border-elevated-1: #cccccc;
|
|
47
|
+
--ids-color-surface-text-on-elevated-1: #353636;
|
|
48
|
+
--ids-color-surface-text-subtle-on-elevated-1: #727373;
|
|
49
|
+
--ids-color-surface-background-elevated-2: #ffffff;
|
|
50
|
+
--ids-color-surface-text-on-elevated-2: #353636;
|
|
51
|
+
--ids-color-surface-border-elevated-2: #cccccc;
|
|
52
|
+
--ids-color-surface-background-alternative: #f9f6f1;
|
|
53
|
+
--ids-color-surface-text-on-alternative: #353636;
|
|
54
|
+
--ids-color-surface-background-alternative-elevated-1: #f9f6f1;
|
|
55
|
+
--ids-color-surface-text-on-alternative-elevated-1: #353636;
|
|
56
|
+
--ids-color-brand-text-logo: #a33662;
|
|
57
|
+
--ids-color-brand-text-primary: #a33662;
|
|
58
|
+
--ids-color-brand-background-primary: #a33662;
|
|
59
|
+
--ids-color-brand-background-primary-subtle: #7e2a4c;
|
|
60
|
+
--ids-color-brand-background-primary-subtle-2: #c03f73;
|
|
61
|
+
--ids-color-brand-border-primary: #a33662;
|
|
62
|
+
--ids-color-brand-text-on-primary: #ffffff;
|
|
63
|
+
--ids-color-brand-background-secondary: #f9f6f1;
|
|
64
|
+
--ids-color-brand-text-on-secondary: #353636;
|
|
65
|
+
--ids-color-navigation-background-default: #a33662;
|
|
66
|
+
--ids-color-navigation-border-default: #a33662;
|
|
67
|
+
--ids-color-navigation-text-default: #7e2a4c;
|
|
68
|
+
--ids-color-navigation-icon-default: #a33662;
|
|
69
|
+
--ids-color-navigation-text-on-default: #ffffff;
|
|
70
|
+
--ids-color-navigation-background-hover: #7e2a4c;
|
|
71
|
+
--ids-color-navigation-border-hover: #7e2a4c;
|
|
72
|
+
--ids-color-navigation-text-hover: #7e2a4c;
|
|
73
|
+
--ids-color-navigation-text-on-hover: #ffffff;
|
|
74
|
+
--ids-color-navigation-background-active: #7e2a4c;
|
|
75
|
+
--ids-color-navigation-border-active: #7e2a4c;
|
|
76
|
+
--ids-color-navigation-text-active: #7e2a4c;
|
|
77
|
+
--ids-color-navigation-text-on-active: #ffffff;
|
|
78
|
+
--ids-color-interactive-background-default: #40775e;
|
|
79
|
+
--ids-color-interactive-border-default: #40775e;
|
|
80
|
+
--ids-color-interactive-text-default: #40775e;
|
|
81
|
+
--ids-color-interactive-text-on-default: #ffffff;
|
|
82
|
+
--ids-color-interactive-background-hover: #305a47;
|
|
83
|
+
--ids-color-interactive-border-hover: #305a47;
|
|
84
|
+
--ids-color-interactive-text-hover: #305a47;
|
|
85
|
+
--ids-color-interactive-text-on-hover: #ffffff;
|
|
86
|
+
--ids-color-interactive-background-active: #305a47;
|
|
87
|
+
--ids-color-interactive-border-active: #305a47;
|
|
88
|
+
--ids-color-interactive-text-active: #305a47;
|
|
89
|
+
--ids-color-interactive-text-on-active: #ffffff;
|
|
90
|
+
--ids-color-interactive-background-disabled: #ffffff;
|
|
91
|
+
--ids-color-interactive-border-disabled: #cccccc;
|
|
92
|
+
--ids-color-interactive-text-disabled: #727373;
|
|
93
|
+
--ids-color-interactive-text-on-disabled: #727373;
|
|
94
|
+
--ids-color-interactive-focus-outline: #353636;
|
|
95
|
+
--ids-color-interactive-focus-outline-on: #ffffff;
|
|
96
|
+
--ids-color-feedback-background-information: #f0f0f0;
|
|
97
|
+
--ids-color-feedback-border-information: #727373;
|
|
98
|
+
--ids-color-feedback-text-on-information: #353636;
|
|
99
|
+
--ids-color-feedback-text-information: #353636;
|
|
100
|
+
--ids-color-feedback-background-success: #e7f7ea;
|
|
101
|
+
--ids-color-feedback-border-success: #2c863f;
|
|
102
|
+
--ids-color-feedback-text-on-success: #353636;
|
|
103
|
+
--ids-color-feedback-text-success: #2c863f;
|
|
104
|
+
--ids-color-feedback-background-attention: #fff7d9;
|
|
105
|
+
--ids-color-feedback-border-attention: #727373;
|
|
106
|
+
--ids-color-feedback-text-on-attention: #353636;
|
|
107
|
+
--ids-color-feedback-text-attention: #353636;
|
|
108
|
+
--ids-color-feedback-background-error: #ffeceb;
|
|
109
|
+
--ids-color-feedback-border-error: #db0f00;
|
|
110
|
+
--ids-color-feedback-text-on-error: #353636;
|
|
111
|
+
--ids-color-feedback-text-error: #db0f00;
|
|
112
|
+
--ids-color-feedback-background-notification: #a33662;
|
|
113
|
+
--ids-color-feedback-text-on-notification: #ffffff;
|
|
114
|
+
--ids-color-form-background-default: #f9f6f1;
|
|
115
|
+
--ids-color-form-border-default: #40775e;
|
|
116
|
+
--ids-color-form-text-on-default: #353636;
|
|
117
|
+
--ids-color-form-placeholder-text-on-default: #727373;
|
|
118
|
+
--ids-color-form-background-light-default: #ffffff;
|
|
119
|
+
--ids-color-form-border-light-default: #40775e;
|
|
120
|
+
--ids-color-form-text-on-light-default: #353636;
|
|
121
|
+
--ids-color-form-placeholder-text-on-light-default: #727373;
|
|
122
|
+
--ids-color-form-background-active: #f9f6f1;
|
|
123
|
+
--ids-color-form-border-active: #40775e;
|
|
124
|
+
--ids-color-form-text-on-active: #353636;
|
|
125
|
+
--ids-color-form-placeholder-text-on-active: #727373;
|
|
126
|
+
--ids-color-form-background-light-active: #ffffff;
|
|
127
|
+
--ids-color-form-border-light-active: #40775e;
|
|
128
|
+
--ids-color-form-text-on-light-active: #353636;
|
|
129
|
+
--ids-color-form-placeholder-text-on-light-active: #727373;
|
|
130
|
+
--ids-color-form-background-disabled: #f0f0f0;
|
|
131
|
+
--ids-color-form-border-disabled: #727373;
|
|
132
|
+
--ids-color-form-text-on-light-disabled: #727373;
|
|
133
|
+
--ids-color-form-placeholder-text-on-light-disabled: #727373;
|
|
134
|
+
--ids-color-form-background-light-disabled: #f0f0f0;
|
|
135
|
+
--ids-color-form-border-light-disabled: #727373;
|
|
136
|
+
--ids-color-form-text-on-disabled: #727373;
|
|
137
|
+
--ids-color-form-placeholder-text-on-disabled: #727373;
|
|
138
|
+
--ids-color-form-background-invalid: #ffeceb;
|
|
139
|
+
--ids-color-form-border-invalid: #db0f00;
|
|
140
|
+
--ids-color-form-text-on-invalid: #353636;
|
|
141
|
+
--ids-color-form-placeholder-text-on-invalid: #727373;
|
|
142
|
+
--ids-color-form-message-background-invalid: #ffffff;
|
|
143
|
+
--ids-color-form-message-border-invalid: #db0f00;
|
|
144
|
+
--ids-color-form-message-text-on-invalid: #db0f00;
|
|
145
|
+
--ids-color-form-background-light-invalid: #ffeceb;
|
|
146
|
+
--ids-color-form-border-light-invalid: #db0f00;
|
|
147
|
+
--ids-color-form-text-on-light-invalid: #353636;
|
|
148
|
+
--ids-color-form-placeholder-text-on-light-invalid: #727373;
|
|
149
|
+
--ids-color-heading-text-xxl: #a33662;
|
|
150
|
+
--ids-color-heading-text-xl: #a33662;
|
|
151
|
+
--ids-color-heading-text-l: #a33662;
|
|
152
|
+
--ids-color-heading-text-m: #a33662;
|
|
153
|
+
--ids-color-heading-text-s: #353636;
|
|
154
|
+
--ids-color-heading-text-xs: #353636;
|
|
155
|
+
--ids-border-radius-primary: 0.1875rem;
|
|
156
|
+
--ids-border-radius-secondary: 0.3125rem;
|
|
157
|
+
--ids-border-width-general: 0.0625rem;
|
|
158
|
+
--ids-border-width-invalid: 0.125rem;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.ids--inera-admin.ids--dark {
|
|
162
|
+
--ids-input-height: 2.25rem;
|
|
163
|
+
--ids-input-padding-x: 1rem;
|
|
164
|
+
--ids-textarea-padding-x: 1rem;
|
|
165
|
+
--ids-select-height: 2.25rem;
|
|
166
|
+
--ids-select-padding-x: 1rem;
|
|
167
|
+
--ids-search-button-small-padding-x: 1.5rem;
|
|
168
|
+
--ids-search-button-small-padding-y: 0.5rem;
|
|
169
|
+
--ids-search-button-small-font-seize: 1rem;
|
|
170
|
+
--ids-search-button-small-line-height: 1.25rem;
|
|
171
|
+
--ids-font-family-primary: Open sans;
|
|
172
|
+
--ids-font-family-secondary: Poppins;
|
|
173
|
+
--ids-color-surface-background-default: #151515;
|
|
174
|
+
--ids-color-surface-border-default: #727373;
|
|
175
|
+
--ids-color-surface-text-on-default: #ffffff;
|
|
176
|
+
--ids-color-surface-background-elevated-1: #252525;
|
|
177
|
+
--ids-color-surface-border-elevated-1: #727373;
|
|
178
|
+
--ids-color-surface-text-on-elevated-1: #ffffff;
|
|
179
|
+
--ids-color-surface-text-subtle-on-elevated-1: #f0f0f0;
|
|
180
|
+
--ids-color-surface-background-elevated-2: #353636;
|
|
181
|
+
--ids-color-surface-text-on-elevated-2: #ffffff;
|
|
182
|
+
--ids-color-surface-border-elevated-2: #727373;
|
|
183
|
+
--ids-color-surface-background-alternative: #151515;
|
|
184
|
+
--ids-color-surface-text-on-alternative: #ffffff;
|
|
185
|
+
--ids-color-surface-background-alternative-elevated-1: #252525;
|
|
186
|
+
--ids-color-surface-text-on-alternative-elevated-1: #ffffff;
|
|
187
|
+
--ids-color-brand-text-logo: #c03f73;
|
|
188
|
+
--ids-color-brand-text-primary: #e481a9;
|
|
189
|
+
--ids-color-brand-background-primary: #252525;
|
|
190
|
+
--ids-color-brand-background-primary-subtle: #7e2a4c;
|
|
191
|
+
--ids-color-brand-background-primary-subtle-2: #151515;
|
|
192
|
+
--ids-color-brand-border-primary: #c03f73;
|
|
193
|
+
--ids-color-brand-text-on-primary: #ffffff;
|
|
194
|
+
--ids-color-brand-background-secondary: #252525;
|
|
195
|
+
--ids-color-brand-text-on-secondary: #ffffff;
|
|
196
|
+
--ids-color-navigation-background-default: #151515;
|
|
197
|
+
--ids-color-navigation-border-default: #e3abc1;
|
|
198
|
+
--ids-color-navigation-text-default: #ffffff;
|
|
199
|
+
--ids-color-navigation-icon-default: #e3abc1;
|
|
200
|
+
--ids-color-navigation-text-on-default: #e3abc1;
|
|
201
|
+
--ids-color-navigation-background-hover: #e481a9;
|
|
202
|
+
--ids-color-navigation-border-hover: #e481a9;
|
|
203
|
+
--ids-color-navigation-text-hover: #ffffff;
|
|
204
|
+
--ids-color-navigation-text-on-hover: #e3abc1;
|
|
205
|
+
--ids-color-navigation-background-active: #e481a9;
|
|
206
|
+
--ids-color-navigation-border-active: #e481a9;
|
|
207
|
+
--ids-color-navigation-text-active: #ffffff;
|
|
208
|
+
--ids-color-navigation-text-on-active: #e3abc1;
|
|
209
|
+
--ids-color-interactive-background-default: #94d1b6;
|
|
210
|
+
--ids-color-interactive-border-default: #94d1b6;
|
|
211
|
+
--ids-color-interactive-text-default: #94d1b6;
|
|
212
|
+
--ids-color-interactive-text-on-default: #151515;
|
|
213
|
+
--ids-color-interactive-background-hover: #ffffff;
|
|
214
|
+
--ids-color-interactive-border-hover: #ffffff;
|
|
215
|
+
--ids-color-interactive-text-hover: #ffffff;
|
|
216
|
+
--ids-color-interactive-text-on-hover: #305a47;
|
|
217
|
+
--ids-color-interactive-background-active: #ffffff;
|
|
218
|
+
--ids-color-interactive-border-active: #ffffff;
|
|
219
|
+
--ids-color-interactive-text-active: #ffffff;
|
|
220
|
+
--ids-color-interactive-text-on-active: #305a47;
|
|
221
|
+
--ids-color-interactive-background-disabled: #cccccc;
|
|
222
|
+
--ids-color-interactive-border-disabled: #cccccc;
|
|
223
|
+
--ids-color-interactive-text-disabled: #cccccc;
|
|
224
|
+
--ids-color-interactive-text-on-disabled: #727373;
|
|
225
|
+
--ids-color-interactive-focus-outline: #f0f0f0;
|
|
226
|
+
--ids-color-interactive-focus-outline-on: #353636;
|
|
227
|
+
--ids-color-feedback-background-information: #252525;
|
|
228
|
+
--ids-color-feedback-border-information: #727373;
|
|
229
|
+
--ids-color-feedback-text-on-information: #ffffff;
|
|
230
|
+
--ids-color-feedback-text-information: #cccccc;
|
|
231
|
+
--ids-color-feedback-background-success: #252525;
|
|
232
|
+
--ids-color-feedback-border-success: #2c863f;
|
|
233
|
+
--ids-color-feedback-text-on-success: #ffffff;
|
|
234
|
+
--ids-color-feedback-text-success: #2c863f;
|
|
235
|
+
--ids-color-feedback-background-attention: #252525;
|
|
236
|
+
--ids-color-feedback-border-attention: #ffd748;
|
|
237
|
+
--ids-color-feedback-text-on-attention: #ffffff;
|
|
238
|
+
--ids-color-feedback-text-attention: #ffd748;
|
|
239
|
+
--ids-color-feedback-background-error: #252525;
|
|
240
|
+
--ids-color-feedback-border-error: #f52819;
|
|
241
|
+
--ids-color-feedback-text-on-error: #ffffff;
|
|
242
|
+
--ids-color-feedback-text-error: #f52819;
|
|
243
|
+
--ids-color-feedback-background-notification: #c03f73;
|
|
244
|
+
--ids-color-feedback-text-on-notification: #ffffff;
|
|
245
|
+
--ids-color-form-background-default: #151515;
|
|
246
|
+
--ids-color-form-border-default: #94d1b6;
|
|
247
|
+
--ids-color-form-text-on-default: #ffffff;
|
|
248
|
+
--ids-color-form-placeholder-text-on-default: #f0f0f0;
|
|
249
|
+
--ids-color-form-background-light-default: #151515;
|
|
250
|
+
--ids-color-form-border-light-default: #94d1b6;
|
|
251
|
+
--ids-color-form-text-on-light-default: #ffffff;
|
|
252
|
+
--ids-color-form-placeholder-text-on-light-default: #f0f0f0;
|
|
253
|
+
--ids-color-form-background-active: #151515;
|
|
254
|
+
--ids-color-form-border-active: #ffffff;
|
|
255
|
+
--ids-color-form-text-on-active: #ffffff;
|
|
256
|
+
--ids-color-form-placeholder-text-on-active: #f0f0f0;
|
|
257
|
+
--ids-color-form-background-light-active: #151515;
|
|
258
|
+
--ids-color-form-border-light-active: #ffffff;
|
|
259
|
+
--ids-color-form-text-on-light-active: #ffffff;
|
|
260
|
+
--ids-color-form-placeholder-text-on-light-active: #f0f0f0;
|
|
261
|
+
--ids-color-form-background-disabled: #151515;
|
|
262
|
+
--ids-color-form-border-disabled: #cccccc;
|
|
263
|
+
--ids-color-form-text-on-light-disabled: #f0f0f0;
|
|
264
|
+
--ids-color-form-placeholder-text-on-light-disabled: #f0f0f0;
|
|
265
|
+
--ids-color-form-background-light-disabled: #151515;
|
|
266
|
+
--ids-color-form-border-light-disabled: #cccccc;
|
|
267
|
+
--ids-color-form-text-on-disabled: #f0f0f0;
|
|
268
|
+
--ids-color-form-placeholder-text-on-disabled: #f0f0f0;
|
|
269
|
+
--ids-color-form-background-invalid: #151515;
|
|
270
|
+
--ids-color-form-border-invalid: #f52819;
|
|
271
|
+
--ids-color-form-text-on-invalid: #ffffff;
|
|
272
|
+
--ids-color-form-placeholder-text-on-invalid: #f0f0f0;
|
|
273
|
+
--ids-color-form-message-background-invalid: #353636;
|
|
274
|
+
--ids-color-form-message-border-invalid: #f52819;
|
|
275
|
+
--ids-color-form-message-text-on-invalid: #ffffff;
|
|
276
|
+
--ids-color-form-background-light-invalid: #151515;
|
|
277
|
+
--ids-color-form-border-light-invalid: #f52819;
|
|
278
|
+
--ids-color-form-text-on-light-invalid: #ffffff;
|
|
279
|
+
--ids-color-form-placeholder-text-on-light-invalid: #f0f0f0;
|
|
280
|
+
--ids-color-heading-text-xxl: #ffffff;
|
|
281
|
+
--ids-color-heading-text-xl: #ffffff;
|
|
282
|
+
--ids-color-heading-text-l: #ffffff;
|
|
283
|
+
--ids-color-heading-text-m: #ffffff;
|
|
284
|
+
--ids-color-heading-text-s: #ffffff;
|
|
285
|
+
--ids-color-heading-text-xs: #ffffff;
|
|
286
|
+
--ids-border-radius-primary: 0.1875rem;
|
|
287
|
+
--ids-border-radius-secondary: 0.3125rem;
|
|
288
|
+
--ids-border-width-general: 0.125rem;
|
|
289
|
+
--ids-border-width-invalid: 0.125rem;
|
|
290
|
+
}
|