@siemens/element-theme 47.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.
Files changed (92) hide show
  1. package/package.json +28 -0
  2. package/src/styles/_accessibility.scss +9 -0
  3. package/src/styles/_all-variables.scss +7 -0
  4. package/src/styles/_bootstrap.scss +26 -0
  5. package/src/styles/_themes.scss +35 -0
  6. package/src/styles/_variables.scss +10 -0
  7. package/src/styles/bootstrap/_alert.scss +60 -0
  8. package/src/styles/bootstrap/_badges.scss +115 -0
  9. package/src/styles/bootstrap/_breadcrumb.scss +32 -0
  10. package/src/styles/bootstrap/_button-group.scss +101 -0
  11. package/src/styles/bootstrap/_buttons.scss +244 -0
  12. package/src/styles/bootstrap/_card.scss +208 -0
  13. package/src/styles/bootstrap/_containers.scss +44 -0
  14. package/src/styles/bootstrap/_dropdowns.scss +216 -0
  15. package/src/styles/bootstrap/_forms.scss +10 -0
  16. package/src/styles/bootstrap/_functions.scss +188 -0
  17. package/src/styles/bootstrap/_grid.scss +33 -0
  18. package/src/styles/bootstrap/_helpers.scss +6 -0
  19. package/src/styles/bootstrap/_images.scss +45 -0
  20. package/src/styles/bootstrap/_list-group.scss +197 -0
  21. package/src/styles/bootstrap/_mixins.scss +30 -0
  22. package/src/styles/bootstrap/_modals.scss +234 -0
  23. package/src/styles/bootstrap/_nav.scss +155 -0
  24. package/src/styles/bootstrap/_pagination.scss +58 -0
  25. package/src/styles/bootstrap/_popovers.scss +188 -0
  26. package/src/styles/bootstrap/_progress.scss +42 -0
  27. package/src/styles/bootstrap/_reboot.scss +618 -0
  28. package/src/styles/bootstrap/_root.scss +22 -0
  29. package/src/styles/bootstrap/_tables.scss +186 -0
  30. package/src/styles/bootstrap/_tooltip.scss +145 -0
  31. package/src/styles/bootstrap/_transitions.scss +28 -0
  32. package/src/styles/bootstrap/_type.scss +235 -0
  33. package/src/styles/bootstrap/_utilities.scss +105 -0
  34. package/src/styles/bootstrap/_variables.scss +654 -0
  35. package/src/styles/bootstrap/forms/_form-check.scss +249 -0
  36. package/src/styles/bootstrap/forms/_form-control.scss +151 -0
  37. package/src/styles/bootstrap/forms/_form-file.scss +29 -0
  38. package/src/styles/bootstrap/forms/_form-label.scss +39 -0
  39. package/src/styles/bootstrap/forms/_form-range.scss +68 -0
  40. package/src/styles/bootstrap/forms/_input-group.scss +103 -0
  41. package/src/styles/bootstrap/forms/_validation.scss +95 -0
  42. package/src/styles/bootstrap/helpers/_clearfix.scss +5 -0
  43. package/src/styles/bootstrap/helpers/_position.scss +34 -0
  44. package/src/styles/bootstrap/helpers/_stacks.scss +13 -0
  45. package/src/styles/bootstrap/helpers/_stretched-link.scss +14 -0
  46. package/src/styles/bootstrap/helpers/_text-truncation.scss +9 -0
  47. package/src/styles/bootstrap/helpers/_visually-hidden.scss +10 -0
  48. package/src/styles/bootstrap/mixins/_backdrop.scss +19 -0
  49. package/src/styles/bootstrap/mixins/_breakpoints.scss +136 -0
  50. package/src/styles/bootstrap/mixins/_clearfix.scss +7 -0
  51. package/src/styles/bootstrap/mixins/_container.scss +7 -0
  52. package/src/styles/bootstrap/mixins/_deprecate.scss +12 -0
  53. package/src/styles/bootstrap/mixins/_gradients.scss +14 -0
  54. package/src/styles/bootstrap/mixins/_grid.scss +171 -0
  55. package/src/styles/bootstrap/mixins/_image.scss +15 -0
  56. package/src/styles/bootstrap/mixins/_lists.scss +5 -0
  57. package/src/styles/bootstrap/mixins/_reset-text.scss +18 -0
  58. package/src/styles/bootstrap/mixins/_table-row.scss +31 -0
  59. package/src/styles/bootstrap/mixins/_text-truncate.scss +7 -0
  60. package/src/styles/bootstrap/mixins/_transition.scss +28 -0
  61. package/src/styles/bootstrap/mixins/_utilities.scss +86 -0
  62. package/src/styles/bootstrap/mixins/_visually-hidden.scss +29 -0
  63. package/src/styles/components/_application-header.scss +244 -0
  64. package/src/styles/components/_container-grid.scss +99 -0
  65. package/src/styles/components/_datatable.scss +328 -0
  66. package/src/styles/components/_drag_drop.scss +105 -0
  67. package/src/styles/components/_electron-titlebar.scss +5 -0
  68. package/src/styles/components/_elevation.scss +21 -0
  69. package/src/styles/components/_focus.scss +21 -0
  70. package/src/styles/components/_icons.scss +25 -0
  71. package/src/styles/components/_layout.scss +105 -0
  72. package/src/styles/components/_links.scss +34 -0
  73. package/src/styles/components/_pills.scss +45 -0
  74. package/src/styles/components/_scrollbar.scss +10 -0
  75. package/src/styles/components/_skeleton.scss +42 -0
  76. package/src/styles/components/_switch.scss +77 -0
  77. package/src/styles/components/_system-banner.scss +5 -0
  78. package/src/styles/components/_widgets.scss +58 -0
  79. package/src/styles/variables/_animations.scss +7 -0
  80. package/src/styles/variables/_elevation.scss +25 -0
  81. package/src/styles/variables/_focus.scss +55 -0
  82. package/src/styles/variables/_layout.scss +6 -0
  83. package/src/styles/variables/_semantic-tokens.scss +178 -0
  84. package/src/styles/variables/_si-vars.scss +19 -0
  85. package/src/styles/variables/_spacers.scss +28 -0
  86. package/src/styles/variables/_typography.scss +66 -0
  87. package/src/styles/variables/_utilities.scss +599 -0
  88. package/src/styles/variables/_zindex.scss +20 -0
  89. package/src/theme/_base-colors.scss +79 -0
  90. package/src/theme/_data-colors.scss +105 -0
  91. package/src/theme/_theme-element.scss +339 -0
  92. package/src/theme.scss +49 -0
@@ -0,0 +1,599 @@
1
+ @use 'sass:map';
2
+
3
+ @use '../bootstrap/variables';
4
+ @use 'spacers';
5
+
6
+ $negative-spacers: (
7
+ // -2px
8
+ n1: spacers.$spacer * -0.125,
9
+ // -4px
10
+ n2: spacers.$spacer * -0.25,
11
+ // -6px
12
+ n3: spacers.$spacer * -0.375,
13
+ // -8px
14
+ n4: spacers.$spacer * -0.5,
15
+ // -12px
16
+ n5: spacers.$spacer * -0.75,
17
+ // -16px
18
+ n6: spacers.$spacer * -1,
19
+ // -20px
20
+ n7: spacers.$spacer * -1.25,
21
+ // -24px
22
+ n8: spacers.$spacer * -1.5,
23
+ // -32px
24
+ n9: spacers.$spacer * -2,
25
+ // -64px
26
+ n10: spacers.$spacer * -4,
27
+ // -96px
28
+ n11: spacers.$spacer * -6
29
+ );
30
+
31
+ $_margins: map.merge(
32
+ spacers.$spacers,
33
+ (
34
+ auto: auto
35
+ )
36
+ );
37
+
38
+ $utilities: (
39
+ 'align': (
40
+ property: vertical-align,
41
+ class: align,
42
+ values: baseline top middle bottom text-bottom text-top
43
+ ),
44
+ 'float': (
45
+ responsive: true,
46
+ property: float,
47
+ values: (
48
+ start: inline-start,
49
+ end: inline-end,
50
+ none: none
51
+ )
52
+ ),
53
+ 'opacity': (
54
+ property: opacity,
55
+ values: (
56
+ 0: 0,
57
+ 25: 0.25,
58
+ 50: 0.5,
59
+ 75: 0.75,
60
+ 100: 1
61
+ )
62
+ ),
63
+ 'overflow': (
64
+ property: overflow,
65
+ values: auto hidden visible scroll
66
+ ),
67
+ 'display': (
68
+ responsive: true,
69
+ print: true,
70
+ property: display,
71
+ class: d,
72
+ values: inline inline-block block grid table table-row table-cell flex inline-flex contents none
73
+ ),
74
+ 'shadow': (
75
+ property: box-shadow,
76
+ class: shadow,
77
+ values: (
78
+ null: variables.$box-shadow,
79
+ sm: variables.$box-shadow-sm,
80
+ lg: variables.$box-shadow-lg,
81
+ none: none
82
+ )
83
+ ),
84
+ 'position': (
85
+ property: position,
86
+ values: static relative absolute fixed sticky
87
+ ),
88
+ 'top': (
89
+ property: inset-block-start,
90
+ class: top,
91
+ values: variables.$position-values
92
+ ),
93
+ 'bottom': (
94
+ property: inset-block-end,
95
+ class: bottom,
96
+ values: variables.$position-values
97
+ ),
98
+ 'start': (
99
+ property: inset-inline-start,
100
+ class: start,
101
+ values: variables.$position-values
102
+ ),
103
+ 'end': (
104
+ property: inset-inline-end,
105
+ class: end,
106
+ values: variables.$position-values
107
+ ),
108
+ 'translate-middle': (
109
+ property: transform,
110
+ class: translate-middle,
111
+ values: (
112
+ null: translate(-50%, -50%),
113
+ x: translateX(-50%),
114
+ y: translateY(-50%)
115
+ )
116
+ ),
117
+ 'border': (
118
+ property: border,
119
+ values: (
120
+ null: variables.$border-width solid variables.$border-color,
121
+ 0: 0
122
+ )
123
+ ),
124
+ 'border-top': (
125
+ property: border-block-start,
126
+ class: border-top,
127
+ values: (
128
+ null: variables.$border-width solid variables.$border-color,
129
+ 0: 0
130
+ )
131
+ ),
132
+ 'border-bottom': (
133
+ property: border-block-end,
134
+ class: border-bottom,
135
+ values: (
136
+ null: variables.$border-width solid variables.$border-color,
137
+ 0: 0
138
+ )
139
+ ),
140
+ 'border-end': (
141
+ property: border-inline-end,
142
+ class: border-end,
143
+ values: (
144
+ null: variables.$border-width solid variables.$border-color,
145
+ 0: 0
146
+ )
147
+ ),
148
+ 'border-start': (
149
+ property: border-inline-start,
150
+ class: border-start,
151
+ values: (
152
+ null: variables.$border-width solid variables.$border-color,
153
+ 0: 0
154
+ )
155
+ ),
156
+ // Sizing utilities
157
+ 'width': (
158
+ property: inline-size,
159
+ class: w,
160
+ values: (
161
+ 25: 25%,
162
+ 50: 50%,
163
+ 75: 75%,
164
+ 100: 100%,
165
+ auto: auto
166
+ )
167
+ ),
168
+ 'max-width': (
169
+ property: max-inline-size,
170
+ class: mw,
171
+ values: (
172
+ 100: 100%
173
+ )
174
+ ),
175
+ 'viewport-width': (
176
+ property: inline-size,
177
+ class: vw,
178
+ values: (
179
+ 100: 100vw
180
+ )
181
+ ),
182
+ 'min-viewport-width': (
183
+ property: min-inline-size,
184
+ class: min-vw,
185
+ values: (
186
+ 100: 100vw
187
+ )
188
+ ),
189
+ 'height': (
190
+ property: block-size,
191
+ class: h,
192
+ values: (
193
+ 25: 25%,
194
+ 50: 50%,
195
+ 75: 75%,
196
+ 100: 100%,
197
+ auto: auto
198
+ )
199
+ ),
200
+ 'max-height': (
201
+ property: max-block-size,
202
+ class: mh,
203
+ values: (
204
+ 100: 100%
205
+ )
206
+ ),
207
+ 'viewport-height': (
208
+ property: block-size,
209
+ class: vh,
210
+ values: (
211
+ 100: 100vh
212
+ )
213
+ ),
214
+ 'min-viewport-height': (
215
+ property: min-block-size,
216
+ class: min-vh,
217
+ values: (
218
+ 100: 100vh
219
+ )
220
+ ),
221
+ // Flex utilities
222
+ 'flex': (
223
+ responsive: true,
224
+ property: flex,
225
+ values: (
226
+ fill: 1 1 auto
227
+ )
228
+ ),
229
+ 'flex-direction': (
230
+ responsive: true,
231
+ property: flex-direction,
232
+ class: flex,
233
+ values: row column row-reverse column-reverse
234
+ ),
235
+ 'flex-grow': (
236
+ responsive: true,
237
+ property: flex-grow,
238
+ class: flex,
239
+ values: (
240
+ grow-0: 0,
241
+ grow-1: 1
242
+ )
243
+ ),
244
+ 'flex-shrink': (
245
+ responsive: true,
246
+ property: flex-shrink,
247
+ class: flex,
248
+ values: (
249
+ shrink-0: 0,
250
+ shrink-1: 1
251
+ )
252
+ ),
253
+ 'flex-wrap': (
254
+ responsive: true,
255
+ property: flex-wrap,
256
+ class: flex,
257
+ values: wrap nowrap wrap-reverse
258
+ ),
259
+ 'gap': (
260
+ responsive: true,
261
+ property: gap,
262
+ class: gap,
263
+ values: spacers.$spacers
264
+ ),
265
+ 'justify-content': (
266
+ responsive: true,
267
+ property: justify-content,
268
+ values: (
269
+ start: flex-start,
270
+ end: flex-end,
271
+ center: center,
272
+ between: space-between,
273
+ around: space-around,
274
+ evenly: space-evenly
275
+ )
276
+ ),
277
+ 'align-items': (
278
+ responsive: true,
279
+ property: align-items,
280
+ values: (
281
+ start: flex-start,
282
+ end: flex-end,
283
+ center: center,
284
+ baseline: baseline,
285
+ stretch: stretch
286
+ )
287
+ ),
288
+ 'align-content': (
289
+ responsive: true,
290
+ property: align-content,
291
+ values: (
292
+ start: flex-start,
293
+ end: flex-end,
294
+ center: center,
295
+ between: space-between,
296
+ around: space-around,
297
+ stretch: stretch
298
+ )
299
+ ),
300
+ 'align-self': (
301
+ responsive: true,
302
+ property: align-self,
303
+ values: (
304
+ auto: auto,
305
+ start: flex-start,
306
+ end: flex-end,
307
+ center: center,
308
+ baseline: baseline,
309
+ stretch: stretch
310
+ )
311
+ ),
312
+ 'order': (
313
+ responsive: true,
314
+ property: order,
315
+ values: (
316
+ first: -1,
317
+ 0: 0,
318
+ 1: 1,
319
+ 2: 2,
320
+ 3: 3,
321
+ 4: 4,
322
+ 5: 5,
323
+ last: 6
324
+ )
325
+ ),
326
+ // Margin utilities
327
+ 'margin': (
328
+ responsive: true,
329
+ property: margin,
330
+ class: m,
331
+ values: $_margins
332
+ ),
333
+ 'margin-x': (
334
+ responsive: true,
335
+ property: margin-inline,
336
+ class: mx,
337
+ values: $_margins
338
+ ),
339
+ 'margin-y': (
340
+ responsive: true,
341
+ property: margin-block,
342
+ class: my,
343
+ values: $_margins
344
+ ),
345
+ 'margin-top': (
346
+ responsive: true,
347
+ property: margin-block-start,
348
+ class: mt,
349
+ values: $_margins
350
+ ),
351
+ 'margin-end': (
352
+ responsive: true,
353
+ property: margin-inline-end,
354
+ class: me,
355
+ values: $_margins
356
+ ),
357
+ 'margin-bottom': (
358
+ responsive: true,
359
+ property: margin-block-end,
360
+ class: mb,
361
+ values: $_margins
362
+ ),
363
+ 'margin-start': (
364
+ responsive: true,
365
+ property: margin-inline-start,
366
+ class: ms,
367
+ values: $_margins
368
+ ),
369
+ // Negative margin utilities
370
+ 'negative-margin': (
371
+ responsive: true,
372
+ property: margin,
373
+ class: m,
374
+ values: $negative-spacers
375
+ ),
376
+ 'negative-margin-x': (
377
+ responsive: true,
378
+ property: margin-inline,
379
+ class: mx,
380
+ values: $negative-spacers
381
+ ),
382
+ 'negative-margin-y': (
383
+ responsive: true,
384
+ property: margin-block,
385
+ class: my,
386
+ values: $negative-spacers
387
+ ),
388
+ 'negative-margin-top': (
389
+ responsive: true,
390
+ property: margin-block-start,
391
+ class: mt,
392
+ values: $negative-spacers
393
+ ),
394
+ 'negative-margin-end': (
395
+ responsive: true,
396
+ property: margin-inline-end,
397
+ class: me,
398
+ values: $negative-spacers
399
+ ),
400
+ 'negative-margin-start': (
401
+ responsive: true,
402
+ property: margin-inline-start,
403
+ class: ms,
404
+ values: $negative-spacers
405
+ ),
406
+ 'negative-margin-bottom': (
407
+ responsive: true,
408
+ property: margin-block-end,
409
+ class: mb,
410
+ values: $negative-spacers
411
+ ),
412
+ // Padding utilities
413
+ 'padding': (
414
+ responsive: true,
415
+ property: padding,
416
+ class: p,
417
+ values: spacers.$spacers
418
+ ),
419
+ 'padding-x': (
420
+ responsive: true,
421
+ property: padding-inline,
422
+ class: px,
423
+ values: spacers.$spacers
424
+ ),
425
+ 'padding-y': (
426
+ responsive: true,
427
+ property: padding-block,
428
+ class: py,
429
+ values: spacers.$spacers
430
+ ),
431
+ 'padding-top': (
432
+ responsive: true,
433
+ property: padding-block-start,
434
+ class: pt,
435
+ values: spacers.$spacers
436
+ ),
437
+ 'padding-end': (
438
+ responsive: true,
439
+ property: padding-inline-end,
440
+ class: pe,
441
+ values: spacers.$spacers
442
+ ),
443
+ 'padding-bottom': (
444
+ responsive: true,
445
+ property: padding-block-end,
446
+ class: pb,
447
+ values: spacers.$spacers
448
+ ),
449
+ 'padding-start': (
450
+ responsive: true,
451
+ property: padding-inline-start,
452
+ class: ps,
453
+ values: spacers.$spacers
454
+ ),
455
+ // Text
456
+ 'font-family': (
457
+ property: font-family,
458
+ class: font,
459
+ values: (
460
+ monospace: var(--#{variables.$variable-prefix}font-monospace)
461
+ )
462
+ ),
463
+ 'font-size': (
464
+ rfs: true,
465
+ property: font-size,
466
+ class: fs,
467
+ values: variables.$font-sizes
468
+ ),
469
+ 'font-style': (
470
+ property: font-style,
471
+ class: fst,
472
+ values: italic normal
473
+ ),
474
+ 'font-weight': (
475
+ property: font-weight,
476
+ class: fw,
477
+ values: (
478
+ light: variables.$font-weight-light,
479
+ lighter: variables.$font-weight-lighter,
480
+ normal: variables.$font-weight-normal,
481
+ bold: variables.$font-weight-bold,
482
+ bolder: variables.$font-weight-bolder
483
+ )
484
+ ),
485
+ 'line-height': (
486
+ property: line-height,
487
+ class: lh,
488
+ values: (
489
+ 1: 1,
490
+ sm: variables.$line-height-sm,
491
+ base: variables.$line-height-base,
492
+ lg: variables.$line-height-lg
493
+ )
494
+ ),
495
+ 'text-align': (
496
+ responsive: true,
497
+ property: text-align,
498
+ class: text,
499
+ values: (
500
+ start: start,
501
+ end: end,
502
+ center: center
503
+ )
504
+ ),
505
+ 'text-decoration': (
506
+ property: text-decoration,
507
+ values: none underline line-through
508
+ ),
509
+ 'text-transform': (
510
+ property: text-transform,
511
+ class: text,
512
+ values: lowercase uppercase capitalize
513
+ ),
514
+ 'white-space': (
515
+ property: white-space,
516
+ class: text,
517
+ values: (
518
+ wrap: normal,
519
+ nowrap: nowrap
520
+ )
521
+ ),
522
+ 'word-wrap': (
523
+ property: word-wrap word-break,
524
+ class: text,
525
+ values: (
526
+ break: break-word
527
+ )
528
+ ),
529
+ 'user-select': (
530
+ property: user-select,
531
+ values: all auto none
532
+ ),
533
+ 'pointer-events': (
534
+ property: pointer-events,
535
+ class: pe,
536
+ values: none auto
537
+ ),
538
+ 'rounded': (
539
+ property: border-radius,
540
+ class: rounded,
541
+ values: (
542
+ null: variables.$border-radius,
543
+ 0: 0,
544
+ 1: variables.$border-radius-sm,
545
+ 2: variables.$border-radius,
546
+ 3: variables.$border-radius-lg,
547
+ circle: 50%,
548
+ pill: variables.$border-radius-pill
549
+ )
550
+ ),
551
+ 'rounded-top': (
552
+ property: border-start-start-radius border-start-end-radius,
553
+ class: rounded-top,
554
+ values: (
555
+ null: variables.$border-radius
556
+ )
557
+ ),
558
+ 'rounded-end': (
559
+ property: border-end-start-radius border-end-end-radius,
560
+ class: rounded-end,
561
+ values: (
562
+ null: variables.$border-radius
563
+ )
564
+ ),
565
+ 'rounded-bottom': (
566
+ property: border-end-start-radius border-end-end-radius,
567
+ class: rounded-bottom,
568
+ values: (
569
+ null: variables.$border-radius
570
+ )
571
+ ),
572
+ 'rounded-start': (
573
+ property: border-start-start-radius border-end-start-radius,
574
+ class: rounded-start,
575
+ values: (
576
+ null: variables.$border-radius
577
+ )
578
+ ),
579
+ 'visibility': (
580
+ property: visibility,
581
+ class: null,
582
+ values: (
583
+ visible: visible,
584
+ invisible: hidden
585
+ )
586
+ )
587
+ );
588
+
589
+ @mixin rtl {
590
+ // for WebKit/Blink based browsers, not (yet) supporting :dir
591
+ [dir='rtl'] #{if(&, "&","")} {
592
+ @content;
593
+ }
594
+
595
+ // Spec and Firefox
596
+ :dir(rtl) #{if(&, "&","")} {
597
+ @content;
598
+ }
599
+ }
@@ -0,0 +1,20 @@
1
+ $zindex-card: 900 !default;
2
+ // needs to be higher than modal so that dropdowns attached to body work inside modals
3
+ $zindex-dropdown: 1065 !default;
4
+ $zindex-sticky: 1020 !default;
5
+ $zindex-fixed: 1030 !default;
6
+ $zindex-modal-backdrop: 1040 !default;
7
+ $zindex-offcanvas-backdrop: 1040 !default;
8
+ $zindex-offcanvas: 1050 !default;
9
+ $zindex-modal: 1060 !default;
10
+ $zindex-popover: 1070 !default;
11
+ $zindex-tooltip: 1080 !default;
12
+
13
+ $zindex-statusbar: $zindex-fixed - 2; // below navbar, vertical-nav and side-panel
14
+ $zindex-sidepanel: $zindex-fixed - 1;
15
+ $zindex-sidepanel-responsive: $zindex-fixed + 1; // above vertical-nav
16
+ $zindex-vertical-nav: $zindex-fixed + 1;
17
+ $zindex-vertical-nav-collapsed: $zindex-fixed;
18
+ $zindex-application-header: $zindex-fixed + 3;
19
+ $zindex-launchpad: $zindex-application-header;
20
+ $zindex-application-header-backdrop: $zindex-launchpad - 1;
@@ -0,0 +1,79 @@
1
+ // stylelint-disable color-no-hex, color-hex-length
2
+
3
+ $color-interactive-blue-100: #ece9ff;
4
+ $color-interactive-blue-300: #b5b3f4;
5
+ $color-interactive-blue-500: #7353e5;
6
+ $color-interactive-blue-700: #4c3fbf;
7
+ $color-interactive-blue-900: #553ba3;
8
+
9
+ $color-deep-blue-50: #eeeeee;
10
+ $color-deep-blue-100: #e9e9e9;
11
+ $color-deep-blue-200: #d4d4d4;
12
+ $color-deep-blue-300: #c4c4c4;
13
+ $color-deep-blue-400: #a9a9a9;
14
+ $color-deep-blue-500: #999999;
15
+ $color-deep-blue-600: #4e4e4e;
16
+ $color-deep-blue-700: #383838;
17
+ $color-deep-blue-800: #1a1a1a;
18
+ $color-deep-blue-900: #000000;
19
+
20
+ $color-white: #ffffff;
21
+ $color-black: #000000;
22
+ $color-light-sand: #f3f3f3;
23
+ $color-sand: #e8e8e8;
24
+ $color-dark-grayish-navy: #343434;
25
+ $color-grayish-navy: #2f2f2f;
26
+
27
+ $color-bold-green: #7c8cff;
28
+ $color-light-bold-green: #d6d5ff;
29
+ $color-dark-bold-green: #1c144f;
30
+ $color-interactive-coral: #6477ff;
31
+ $color-interactive-coral-db55: #404b8c;
32
+ $color-teal: #2e3a70;
33
+ $color-petrol: #5a5daa;
34
+ $color-focus: #9fabff;
35
+ $color-diesel: #6c7be3;
36
+
37
+ $color-blue-100: #d6e7ff;
38
+ $color-blue-300: #84b9ff;
39
+ $color-blue-500: #297dff;
40
+ $color-blue-700: #1a4fb5;
41
+ $color-blue-900: #153366;
42
+
43
+ $color-green-100: #d6f5e7;
44
+ $color-green-300: #72e6a3;
45
+ $color-green-500: #6ed9a2;
46
+ $color-green-700: #2cbd72;
47
+ $color-green-900: #0e3b28;
48
+
49
+ $color-orange-100: #ffe7d1;
50
+ $color-orange-300: #ffb168;
51
+ $color-orange-500: #f78b1f;
52
+ $color-orange-700: #d1731b;
53
+ $color-orange-900: #734213;
54
+
55
+ $color-red-100: #ffe0e5;
56
+ $color-red-300: #ff9999;
57
+ $color-red-500: #e53935;
58
+ $color-red-700: #b71c1c;
59
+ $color-red-900: #7f0a0a;
60
+
61
+ $color-yellow-100: #fff7d6;
62
+ $color-yellow-300: #ffe066;
63
+ $color-yellow-500: #ffcc00;
64
+ $color-yellow-700: #b88a00;
65
+ $color-yellow-900: #7a5a00;
66
+
67
+ $color-gradient-bold-dynamic: linear-gradient(
68
+ 114.59deg,
69
+ $color-bold-green 15.81%,
70
+ $color-interactive-coral 84.42%
71
+ );
72
+ $color-gradient-bold-dynamic-90: linear-gradient(
73
+ 180deg,
74
+ $color-bold-green 15.81%,
75
+ $color-interactive-coral 84.42%
76
+ );
77
+ $color-gradient-deep-blue-petrol: linear-gradient(180deg, $color-deep-blue-900, $color-petrol);
78
+ $color-gradient-deep-blue-green: linear-gradient(180deg, $color-deep-blue-900, $color-green-700);
79
+ $color-gradient-deep-blue-blue: linear-gradient(180deg, $color-deep-blue-900, $color-blue-500);