@progress/kendo-theme-bootstrap 13.1.2-dev.0 → 13.2.0-dev.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/dist/all.css +1 -1
- package/dist/bootstrap-3-dark.css +1 -1
- package/dist/bootstrap-3-dark.scss +118 -118
- package/dist/bootstrap-3.css +1 -1
- package/dist/bootstrap-3.scss +106 -106
- package/dist/bootstrap-4-dark.css +1 -1
- package/dist/bootstrap-4-dark.scss +117 -117
- package/dist/bootstrap-4.css +1 -1
- package/dist/bootstrap-4.scss +105 -105
- package/dist/bootstrap-dataviz-v4.css +1 -1
- package/dist/bootstrap-dataviz-v4.scss +30 -30
- package/dist/bootstrap-main-dark.css +1 -1
- package/dist/bootstrap-main-dark.scss +147 -147
- package/dist/bootstrap-main.css +1 -1
- package/dist/bootstrap-nordic.css +1 -1
- package/dist/bootstrap-nordic.scss +105 -105
- package/dist/bootstrap-turquoise-dark.css +1 -1
- package/dist/bootstrap-turquoise-dark.scss +117 -117
- package/dist/bootstrap-turquoise.css +1 -1
- package/dist/bootstrap-turquoise.scss +105 -105
- package/dist/bootstrap-urban.css +1 -1
- package/dist/bootstrap-urban.scss +105 -105
- package/dist/bootstrap-vintage.css +1 -1
- package/dist/bootstrap-vintage.scss +105 -105
- package/dist/meta/sassdoc-data.json +2754 -3598
- package/dist/meta/sassdoc-raw-data.json +1303 -1516
- package/dist/meta/variables.json +492 -761
- package/lib/swatches/bootstrap-3-dark.json +124 -124
- package/lib/swatches/bootstrap-3.json +112 -112
- package/lib/swatches/bootstrap-4-dark.json +123 -123
- package/lib/swatches/bootstrap-4.json +111 -111
- package/lib/swatches/bootstrap-dataviz-v4.json +36 -36
- package/lib/swatches/bootstrap-main-dark.json +153 -153
- package/lib/swatches/bootstrap-main.json +6 -6
- package/lib/swatches/bootstrap-nordic.json +111 -111
- package/lib/swatches/bootstrap-turquoise-dark.json +123 -123
- package/lib/swatches/bootstrap-turquoise.json +111 -111
- package/lib/swatches/bootstrap-urban.json +111 -111
- package/lib/swatches/bootstrap-vintage.json +111 -111
- package/package.json +4 -4
- package/scss/button/_variables.scss +20 -0
- package/scss/core/_index.scss +7 -0
- package/scss/core/border-radii/index.scss +11 -12
- package/scss/core/color-system/_swatch.scss +177 -158
- package/scss/core/spacing/index.scss +36 -38
- package/scss/core/typography/index.scss +74 -3
- package/scss/dataviz/_variables.scss +1 -1
- package/scss/grid/_theme.scss +1 -0
- package/scss/grid/_variables.scss +11 -3
- package/scss/core/color-system/_palettes.scss +0 -195
|
@@ -1,46 +1,44 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
|
|
3
|
+
/// The base spacing step used to generate the Spacing map.
|
|
4
|
+
/// @group spacing
|
|
5
|
+
$kendo-spacing-base: 0.25rem !default;
|
|
6
|
+
|
|
3
7
|
$_default-spacing: (
|
|
4
8
|
0: 0px,
|
|
5
9
|
1px: 1px,
|
|
6
|
-
0.5: .
|
|
7
|
-
1:
|
|
8
|
-
1.5: .
|
|
9
|
-
2:
|
|
10
|
-
2.5: .
|
|
11
|
-
3:
|
|
12
|
-
3.5: .
|
|
13
|
-
4:
|
|
14
|
-
4.5:
|
|
15
|
-
5:
|
|
16
|
-
5.5:
|
|
17
|
-
6:
|
|
18
|
-
6.5:
|
|
19
|
-
7:
|
|
20
|
-
7.5:
|
|
21
|
-
8:
|
|
22
|
-
9:
|
|
23
|
-
10:
|
|
24
|
-
11:
|
|
25
|
-
12:
|
|
26
|
-
13:
|
|
27
|
-
14:
|
|
28
|
-
15:
|
|
29
|
-
16:
|
|
30
|
-
17:
|
|
31
|
-
18:
|
|
32
|
-
19:
|
|
33
|
-
20:
|
|
34
|
-
21:
|
|
35
|
-
22:
|
|
36
|
-
23:
|
|
37
|
-
24:
|
|
38
|
-
25: 7rem,
|
|
39
|
-
26: 8rem,
|
|
40
|
-
27: 9rem,
|
|
41
|
-
28: 10rem,
|
|
42
|
-
29: 11rem,
|
|
43
|
-
30: 12rem
|
|
10
|
+
0.5: calc(0.5 * var(--kendo-spacing-base)),
|
|
11
|
+
1: calc(1 * var(--kendo-spacing-base)),
|
|
12
|
+
1.5: calc(1.5 * var(--kendo-spacing-base)),
|
|
13
|
+
2: calc(2 * var(--kendo-spacing-base)),
|
|
14
|
+
2.5: calc(2.5 * var(--kendo-spacing-base)),
|
|
15
|
+
3: calc(3 * var(--kendo-spacing-base)),
|
|
16
|
+
3.5: calc(3.5 * var(--kendo-spacing-base)),
|
|
17
|
+
4: calc(4 * var(--kendo-spacing-base)),
|
|
18
|
+
4.5: calc(4.5 * var(--kendo-spacing-base)),
|
|
19
|
+
5: calc(5 * var(--kendo-spacing-base)),
|
|
20
|
+
5.5: calc(5.5 * var(--kendo-spacing-base)),
|
|
21
|
+
6: calc(6 * var(--kendo-spacing-base)),
|
|
22
|
+
6.5: calc(6.5 * var(--kendo-spacing-base)),
|
|
23
|
+
7: calc(7 * var(--kendo-spacing-base)),
|
|
24
|
+
7.5: calc(7.5 * var(--kendo-spacing-base)),
|
|
25
|
+
8: calc(8 * var(--kendo-spacing-base)),
|
|
26
|
+
9: calc(9 * var(--kendo-spacing-base)),
|
|
27
|
+
10: calc(10 * var(--kendo-spacing-base)),
|
|
28
|
+
11: calc(11 * var(--kendo-spacing-base)),
|
|
29
|
+
12: calc(12 * var(--kendo-spacing-base)),
|
|
30
|
+
13: calc(13 * var(--kendo-spacing-base)),
|
|
31
|
+
14: calc(14 * var(--kendo-spacing-base)),
|
|
32
|
+
15: calc(15 * var(--kendo-spacing-base)),
|
|
33
|
+
16: calc(16 * var(--kendo-spacing-base)),
|
|
34
|
+
17: calc(17 * var(--kendo-spacing-base)),
|
|
35
|
+
18: calc(18 * var(--kendo-spacing-base)),
|
|
36
|
+
19: calc(19 * var(--kendo-spacing-base)),
|
|
37
|
+
20: calc(20 * var(--kendo-spacing-base)),
|
|
38
|
+
21: calc(21 * var(--kendo-spacing-base)),
|
|
39
|
+
22: calc(22 * var(--kendo-spacing-base)),
|
|
40
|
+
23: calc(23 * var(--kendo-spacing-base)),
|
|
41
|
+
24: calc(24 * var(--kendo-spacing-base)),
|
|
44
42
|
) !default;
|
|
45
43
|
|
|
46
44
|
/// The global default Spacing map.
|
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
/// The base font size across all components.
|
|
4
4
|
/// @group typography
|
|
5
5
|
$kendo-font-size: 1rem !default;
|
|
6
|
+
/// The extra extra small font size across all components.
|
|
7
|
+
/// @group typography
|
|
8
|
+
$kendo-font-size-xxs: ( $kendo-font-size * .5 ) !default;
|
|
6
9
|
/// The extra small font size across all components.
|
|
7
10
|
/// @group typography
|
|
8
11
|
$kendo-font-size-xs: ( $kendo-font-size * .75 ) !default;
|
|
@@ -38,12 +41,21 @@ $kendo-line-height-lg: 2 !default;
|
|
|
38
41
|
/// @group typography
|
|
39
42
|
$kendo-line-height-em: calc( #{$kendo-line-height} * 1em ) !default;
|
|
40
43
|
|
|
44
|
+
/// The base font weight across all components.
|
|
45
|
+
/// @group typography
|
|
46
|
+
$kendo-font-weight: 400 !default;
|
|
47
|
+
/// The thin font weight across all components.
|
|
48
|
+
/// @group typography
|
|
49
|
+
$kendo-font-weight-thin: 100 !default;
|
|
50
|
+
/// The extra light font weight across all components.
|
|
51
|
+
/// @group typography
|
|
52
|
+
$kendo-font-weight-extra-light: 200 !default;
|
|
41
53
|
/// The light font weight across all components.
|
|
42
54
|
/// @group typography
|
|
43
55
|
$kendo-font-weight-light: 300 !default;
|
|
44
|
-
/// The
|
|
56
|
+
/// The normal font weight across all components.
|
|
45
57
|
/// @group typography
|
|
46
|
-
$kendo-font-weight-normal:
|
|
58
|
+
$kendo-font-weight-normal: $kendo-font-weight !default;
|
|
47
59
|
/// The medium font weight across all components.
|
|
48
60
|
/// @group typography
|
|
49
61
|
$kendo-font-weight-medium: 500 !default;
|
|
@@ -53,7 +65,44 @@ $kendo-font-weight-semibold: 600 !default;
|
|
|
53
65
|
/// The bold font weight across all components.
|
|
54
66
|
/// @group typography
|
|
55
67
|
$kendo-font-weight-bold: 700 !default;
|
|
68
|
+
/// The extra bold font weight across all components.
|
|
69
|
+
/// @group typography
|
|
70
|
+
$kendo-font-weight-extra-bold: 800 !default;
|
|
71
|
+
/// The most pronounced font weight across all components.
|
|
72
|
+
/// @group typography
|
|
73
|
+
$kendo-font-weight-black: 900 !default;
|
|
56
74
|
|
|
75
|
+
/// The base letter spacing across all components.
|
|
76
|
+
/// @group typography
|
|
77
|
+
$kendo-letter-spacing: null !default;
|
|
78
|
+
/// The tightest letter spacing across all components.
|
|
79
|
+
/// @group typography
|
|
80
|
+
$kendo-letter-spacing-tightest: -.15px !default;
|
|
81
|
+
/// Slightly looser than the tighter letter spacing across all components.
|
|
82
|
+
/// @group typography
|
|
83
|
+
$kendo-letter-spacing-tighter: -.10px !default;
|
|
84
|
+
/// Moderately tight letter spacing across all components.
|
|
85
|
+
/// @group typography
|
|
86
|
+
$kendo-letter-spacing-tight: -.5px !default;
|
|
87
|
+
/// The normal letter spacing across all components.
|
|
88
|
+
/// @group typography
|
|
89
|
+
$kendo-letter-spacing-normal: 0px !default;
|
|
90
|
+
/// Wide letter spacing across all components.
|
|
91
|
+
/// @group typography
|
|
92
|
+
$kendo-letter-spacing-wide: .5px !default;
|
|
93
|
+
/// Slightly wider than the wide letter spacing across all components.
|
|
94
|
+
/// @group typography
|
|
95
|
+
$kendo-letter-spacing-wider: .10px !default;
|
|
96
|
+
/// The widest letter spacing across all components.
|
|
97
|
+
/// @group typography
|
|
98
|
+
$kendo-letter-spacing-widest: .15px !default;
|
|
99
|
+
|
|
100
|
+
/// The sans font family across all components.
|
|
101
|
+
/// @group typography
|
|
102
|
+
$kendo-font-family-sans: Arial, Verdana, Tahoma, "Trebuchet MS", Helvetica, Impact, Gill Sans !default;
|
|
103
|
+
/// The serif font family across all components.
|
|
104
|
+
/// @group typography
|
|
105
|
+
$kendo-font-family-serif: "Times New Roman", Georgia, Garamond, Palatino, Baskerville !default;
|
|
57
106
|
/// The sans-serif font family across all components.
|
|
58
107
|
/// @group typography
|
|
59
108
|
$kendo-font-family-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
|
|
@@ -65,6 +114,7 @@ $kendo-font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberati
|
|
|
65
114
|
$kendo-font-family: $kendo-font-family-sans-serif !default;
|
|
66
115
|
|
|
67
116
|
$_default-font-sizes: (
|
|
117
|
+
xxs: $kendo-font-size-xxs,
|
|
68
118
|
xs: $kendo-font-size-xs,
|
|
69
119
|
sm: $kendo-font-size-sm,
|
|
70
120
|
md: $kendo-font-size-md,
|
|
@@ -80,14 +130,30 @@ $_default-line-heights: (
|
|
|
80
130
|
) !default;
|
|
81
131
|
|
|
82
132
|
$_default-font-weights: (
|
|
133
|
+
thin: $kendo-font-weight-thin,
|
|
134
|
+
extra-light: $kendo-font-weight-extra-light,
|
|
83
135
|
light: $kendo-font-weight-light,
|
|
84
136
|
normal: $kendo-font-weight-normal,
|
|
85
137
|
medium: $kendo-font-weight-medium,
|
|
86
138
|
semibold: $kendo-font-weight-semibold,
|
|
87
|
-
bold: $kendo-font-weight-bold
|
|
139
|
+
bold: $kendo-font-weight-bold,
|
|
140
|
+
extra-bold: $kendo-font-weight-extra-bold,
|
|
141
|
+
"black": $kendo-font-weight-black
|
|
142
|
+
) !default;
|
|
143
|
+
|
|
144
|
+
$_default-letter-spacings: (
|
|
145
|
+
tightest: $kendo-letter-spacing-tightest,
|
|
146
|
+
tighter: $kendo-letter-spacing-tighter,
|
|
147
|
+
tight: $kendo-letter-spacing-tight,
|
|
148
|
+
normal: $kendo-letter-spacing-normal,
|
|
149
|
+
wide: $kendo-letter-spacing-wide,
|
|
150
|
+
wider: $kendo-letter-spacing-wider,
|
|
151
|
+
widest: $kendo-letter-spacing-widest
|
|
88
152
|
) !default;
|
|
89
153
|
|
|
90
154
|
$_default-font-families: (
|
|
155
|
+
sans: $kendo-font-family-sans,
|
|
156
|
+
serif: $kendo-font-family-serif,
|
|
91
157
|
sans-serif: $kendo-font-family-sans-serif,
|
|
92
158
|
monospace: $kendo-font-family-monospace
|
|
93
159
|
) !default;
|
|
@@ -107,6 +173,11 @@ $kendo-line-heights: map.merge( $_default-line-heights, $kendo-line-heights );
|
|
|
107
173
|
$kendo-font-weights: $_default-font-weights !default;
|
|
108
174
|
$kendo-font-weights: map.merge( $_default-font-weights, $kendo-font-weights );
|
|
109
175
|
|
|
176
|
+
/// The letter spacings map
|
|
177
|
+
/// @group typography
|
|
178
|
+
$kendo-letter-spacings: $_default-letter-spacings !default;
|
|
179
|
+
$kendo-letter-spacings: map.merge( $_default-letter-spacings, $kendo-letter-spacings );
|
|
180
|
+
|
|
110
181
|
/// The font families map
|
|
111
182
|
/// @group typography
|
|
112
183
|
$kendo-font-families: $_default-font-families !default;
|
|
@@ -362,7 +362,7 @@ $kendo-chart-no-data-font-size: var(--kendo-font-size-lg) !default;
|
|
|
362
362
|
$kendo-chart-no-data-font-weight: var(--kendo-font-weight) !default;
|
|
363
363
|
/// The vertical padding of the Chart.
|
|
364
364
|
/// @group charts
|
|
365
|
-
$kendo-chart-no-data-padding-y:
|
|
365
|
+
$kendo-chart-no-data-padding-y: 7rem !default;
|
|
366
366
|
|
|
367
367
|
// Gauge
|
|
368
368
|
/// The background color of the Gauge.
|
package/scss/grid/_theme.scss
CHANGED
|
@@ -353,11 +353,17 @@ $kendo-grid-sticky-footer-hover-bg: $kendo-grid-sticky-footer-bg !default;
|
|
|
353
353
|
|
|
354
354
|
/// The box shadow of the sticky container in the Grid.
|
|
355
355
|
/// @group grid
|
|
356
|
-
$kendo-grid-sticky-container-shadow:
|
|
356
|
+
$kendo-grid-sticky-container-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08) !default;
|
|
357
|
+
/// The box shadow of the sticky container positioned at the bottom in the Grid.
|
|
358
|
+
/// @group grid
|
|
359
|
+
$kendo-grid-sticky-container-bottom-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.08) !default;
|
|
357
360
|
|
|
358
361
|
/// The box shadow of the pinned container in the Grid.
|
|
359
362
|
/// @group grid
|
|
360
|
-
$kendo-grid-pinned-container-shadow:
|
|
363
|
+
$kendo-grid-pinned-container-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08) !default;
|
|
364
|
+
/// The box shadow of the pinned container positioned at the bottom in the Grid.
|
|
365
|
+
/// @group grid
|
|
366
|
+
$kendo-grid-pinned-container-bottom-shadow: 0 -4px 8px 0 rgba(0, 0, 0, 0.08) !default;
|
|
361
367
|
|
|
362
368
|
/// The width of the Grid column menu.
|
|
363
369
|
/// @group grid
|
|
@@ -647,5 +653,7 @@ $kendo-grid-pinned-source-font-weight: var(--kendo-font-weight-bold) !default;
|
|
|
647
653
|
$kendo-grid-stack-expandable-shadow: $kendo-grid-stack-expandable-shadow,
|
|
648
654
|
$kendo-grid-pinned-source-font-weight: $kendo-grid-pinned-source-font-weight,
|
|
649
655
|
$kendo-grid-sticky-container-shadow: $kendo-grid-sticky-container-shadow,
|
|
650
|
-
$kendo-grid-
|
|
656
|
+
$kendo-grid-sticky-container-bottom-shadow: $kendo-grid-sticky-container-bottom-shadow,
|
|
657
|
+
$kendo-grid-pinned-container-shadow: $kendo-grid-pinned-container-shadow,
|
|
658
|
+
$kendo-grid-pinned-container-bottom-shadow: $kendo-grid-pinned-container-bottom-shadow
|
|
651
659
|
);
|
|
@@ -1,195 +0,0 @@
|
|
|
1
|
-
@use "sass:map";
|
|
2
|
-
|
|
3
|
-
$_default-palette-gray: (
|
|
4
|
-
"white": #ffffff,
|
|
5
|
-
1: #f8f9fa,
|
|
6
|
-
2: #e9ecef,
|
|
7
|
-
3: #dee2e6,
|
|
8
|
-
4: #ced4da,
|
|
9
|
-
5: #bdc4cb,
|
|
10
|
-
6: #adb5bd,
|
|
11
|
-
7: #a7acb1,
|
|
12
|
-
8: #6c757d,
|
|
13
|
-
9: #5c636a,
|
|
14
|
-
10: #565e64,
|
|
15
|
-
11: #495057,
|
|
16
|
-
12: #343a40,
|
|
17
|
-
13: #2B2F32,
|
|
18
|
-
14: #212529,
|
|
19
|
-
15: #1a1d20,
|
|
20
|
-
"black": #000000,
|
|
21
|
-
);
|
|
22
|
-
$_default-palette-blue: (
|
|
23
|
-
1: #ecf4ff,
|
|
24
|
-
2: #cfe2ff,
|
|
25
|
-
3: #B9d6fe,
|
|
26
|
-
4: #9ec5fe,
|
|
27
|
-
5: #86b6fe,
|
|
28
|
-
6: #6ea8fe,
|
|
29
|
-
7: #3d8bfd,
|
|
30
|
-
8: #0d6efd,
|
|
31
|
-
9: #0b5ed7,
|
|
32
|
-
10: #0a58ca,
|
|
33
|
-
11: #094cae,
|
|
34
|
-
12: #084298,
|
|
35
|
-
13: #052c65,
|
|
36
|
-
14: #012151,
|
|
37
|
-
15: #031633,
|
|
38
|
-
);
|
|
39
|
-
$_default-palette-yellow: (
|
|
40
|
-
1: #fff9e6,
|
|
41
|
-
2: #fff3cd,
|
|
42
|
-
3: #ffecb5,
|
|
43
|
-
4: #ffe69c,
|
|
44
|
-
5: #ffda6a,
|
|
45
|
-
6: #ffcd39,
|
|
46
|
-
7: #ffca2c,
|
|
47
|
-
8: #ffc107,
|
|
48
|
-
9: #cc9a06,
|
|
49
|
-
10: #b38705,
|
|
50
|
-
11: #997404,
|
|
51
|
-
12: #806104,
|
|
52
|
-
13: #664d03,
|
|
53
|
-
14: #523e02,
|
|
54
|
-
15: #332701,
|
|
55
|
-
);
|
|
56
|
-
$_default-palette-red: (
|
|
57
|
-
1: #fceeef,
|
|
58
|
-
2: #f8d7da,
|
|
59
|
-
3: #f5c2c7,
|
|
60
|
-
4: #f1aeb5,
|
|
61
|
-
5: #ed969f,
|
|
62
|
-
6: #ea868f,
|
|
63
|
-
7: #e35d6a,
|
|
64
|
-
8: #dc3545,
|
|
65
|
-
9: #bb2d3b,
|
|
66
|
-
10: #b02a37,
|
|
67
|
-
11: #842029,
|
|
68
|
-
12: #6e1b23,
|
|
69
|
-
13: #58151c,
|
|
70
|
-
14: #421015,
|
|
71
|
-
15: #2c0b0e,
|
|
72
|
-
);
|
|
73
|
-
$_default-palette-cyan: (
|
|
74
|
-
1: #e7fafe,
|
|
75
|
-
2: #cff4fc,
|
|
76
|
-
3: #b7eefa,
|
|
77
|
-
4: #9eeaf9,
|
|
78
|
-
5: #6edff6,
|
|
79
|
-
6: #3dd5f3,
|
|
80
|
-
7: #31d2f2,
|
|
81
|
-
8: #0dcaf0,
|
|
82
|
-
9: #0aa2c0,
|
|
83
|
-
10: #098da8,
|
|
84
|
-
11: #087990,
|
|
85
|
-
12: #076578,
|
|
86
|
-
13: #055160,
|
|
87
|
-
14: #04414d,
|
|
88
|
-
15: #032830,
|
|
89
|
-
);
|
|
90
|
-
$_default-palette-green: (
|
|
91
|
-
1: #e8f3ee,
|
|
92
|
-
2: #d1e7dd,
|
|
93
|
-
3: #badbcc,
|
|
94
|
-
4: #a3cfbb,
|
|
95
|
-
5: #8cc3aa,
|
|
96
|
-
6: #75b798,
|
|
97
|
-
7: #5BAE87,
|
|
98
|
-
8: #479F76,
|
|
99
|
-
9: #319064,
|
|
100
|
-
10: #198754,
|
|
101
|
-
11: #157347,
|
|
102
|
-
12: #146c43,
|
|
103
|
-
13: #0f5132,
|
|
104
|
-
14: #0A3622,
|
|
105
|
-
15: #051b11,
|
|
106
|
-
);
|
|
107
|
-
$_default-palette-indigo: (
|
|
108
|
-
1: #f0e7fe,
|
|
109
|
-
2: #e2d9f3,
|
|
110
|
-
3: #d3c5ec,
|
|
111
|
-
4: #c5b3e6,
|
|
112
|
-
5: #b9a3e1,
|
|
113
|
-
6: #a98eda,
|
|
114
|
-
7: #8c68cd,
|
|
115
|
-
8: #7e58c6,
|
|
116
|
-
9: #6f42c1,
|
|
117
|
-
10: #59359a,
|
|
118
|
-
11: #432874,
|
|
119
|
-
12: #36215f,
|
|
120
|
-
13: #2c1a4d,
|
|
121
|
-
14: #21143b,
|
|
122
|
-
15: #160d27,
|
|
123
|
-
);
|
|
124
|
-
$_default-palette-teal: (
|
|
125
|
-
1: #ebfaf6,
|
|
126
|
-
2: #e8dbfd,
|
|
127
|
-
3: #d2f4ea,
|
|
128
|
-
4: #c1f0e2,
|
|
129
|
-
5: #a6e9d5,
|
|
130
|
-
6: #79dfc1,
|
|
131
|
-
7: #4dd4ac,
|
|
132
|
-
8: #20c997,
|
|
133
|
-
9: #1aa179,
|
|
134
|
-
10: #178c69,
|
|
135
|
-
11: #13795b,
|
|
136
|
-
12: #10654c,
|
|
137
|
-
13: #0d503c,
|
|
138
|
-
14: #0a3e2e,
|
|
139
|
-
15: #06281e,
|
|
140
|
-
);
|
|
141
|
-
$_default-palette-greige: (
|
|
142
|
-
1: #fcfcfd,
|
|
143
|
-
2: #ececec,
|
|
144
|
-
3: #e2e3e5,
|
|
145
|
-
4: #d3d4d5,
|
|
146
|
-
5: #c6c7c8,
|
|
147
|
-
6: #b4b5b6,
|
|
148
|
-
7: #a1a3a5,
|
|
149
|
-
8: #939597,
|
|
150
|
-
9: #727577,
|
|
151
|
-
10: #5f6163,
|
|
152
|
-
11: #4d5154,
|
|
153
|
-
12: #424649,
|
|
154
|
-
13: #2e2f2f,
|
|
155
|
-
14: #242526,
|
|
156
|
-
15: #141415,
|
|
157
|
-
);
|
|
158
|
-
// stylelint-disable scss/no-global-function-names
|
|
159
|
-
/// The Gray Palette provides colors to the Base, Secondary, Light, Dark, and Inverse variable groups.
|
|
160
|
-
/// @group palette
|
|
161
|
-
$kendo-palette-gray: $_default-palette-gray !default;
|
|
162
|
-
$kendo-palette-gray: map.merge($_default-palette-gray, $kendo-palette-gray);
|
|
163
|
-
/// The Blue Palette provides colors to the Primary and Series A variable groups.
|
|
164
|
-
/// @group palette
|
|
165
|
-
$kendo-palette-blue: $_default-palette-blue !default;
|
|
166
|
-
$kendo-palette-blue: map.merge($_default-palette-blue, $kendo-palette-blue);
|
|
167
|
-
/// The Yellow Palette provides colors to the Warning and Series F variable groups.
|
|
168
|
-
/// @group palette
|
|
169
|
-
$kendo-palette-yellow: $_default-palette-yellow !default;
|
|
170
|
-
$kendo-palette-yellow: map.merge($_default-palette-yellow, $kendo-palette-yellow);
|
|
171
|
-
/// The Red Palette provides colors to the Error and Series E variable groups.
|
|
172
|
-
/// @group palette
|
|
173
|
-
$kendo-palette-red: $_default-palette-red !default;
|
|
174
|
-
$kendo-palette-red: map.merge($_default-palette-red, $kendo-palette-red);
|
|
175
|
-
/// The Cyan Palette provides colors to the Info variable group.
|
|
176
|
-
/// @group palette
|
|
177
|
-
$kendo-palette-cyan: $_default-palette-cyan !default;
|
|
178
|
-
$kendo-palette-cyan: map.merge($_default-palette-cyan, $kendo-palette-cyan);
|
|
179
|
-
/// The Green Palette provides colors to the Success and Series D variable groups.
|
|
180
|
-
/// @group palette
|
|
181
|
-
$kendo-palette-green: $_default-palette-green !default;
|
|
182
|
-
$kendo-palette-green: map.merge($_default-palette-green, $kendo-palette-green);
|
|
183
|
-
/// The Indigo Palette provides colors to the Tertiary and Series B variable groups.
|
|
184
|
-
/// @group palette
|
|
185
|
-
$kendo-palette-indigo: $_default-palette-indigo !default;
|
|
186
|
-
$kendo-palette-indigo: map.merge($_default-palette-indigo, $kendo-palette-indigo);
|
|
187
|
-
/// The Teal Palette provides colors to the Series C variable group.
|
|
188
|
-
/// @group palette
|
|
189
|
-
$kendo-palette-teal: $_default-palette-teal !default;
|
|
190
|
-
$kendo-palette-teal: map.merge($_default-palette-teal, $kendo-palette-teal);
|
|
191
|
-
/// The Greige Palette provides colors to the Light and Dark variable groups.
|
|
192
|
-
/// @group palette
|
|
193
|
-
$kendo-palette-greige: $_default-palette-greige !default;
|
|
194
|
-
$kendo-palette-greige: map.merge($_default-palette-greige, $kendo-palette-greige);
|
|
195
|
-
// stylelint-enable scss/no-global-function-names
|