@progress/kendo-theme-fluent 13.1.2-dev.0 → 13.2.0-dev.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/dist/all.css +1 -1
- package/dist/fluent-1-dark.css +1 -1
- package/dist/fluent-1-dark.scss +147 -147
- package/dist/fluent-1.css +1 -1
- package/dist/fluent-1.scss +147 -147
- package/dist/fluent-main-dark.css +1 -1
- package/dist/fluent-main-dark.scss +147 -147
- package/dist/fluent-main.css +1 -1
- package/dist/meta/sassdoc-data.json +2814 -4078
- package/dist/meta/sassdoc-raw-data.json +2531 -2944
- package/dist/meta/variables.json +460 -749
- package/lib/swatches/all.json +6 -6
- package/lib/swatches/fluent-1-dark.json +153 -153
- package/lib/swatches/fluent-1.json +153 -153
- package/lib/swatches/fluent-main-dark.json +153 -153
- package/lib/swatches/fluent-main.json +6 -6
- package/package.json +4 -4
- package/scss/button/_layout.scss +5 -0
- package/scss/button/_variables.scss +20 -0
- package/scss/core/_index.scss +10 -0
- package/scss/core/border-radii/_index.scss +13 -10
- package/scss/core/color-system/_swatch.scss +174 -155
- package/scss/core/spacing/_index.scss +36 -38
- package/scss/core/typography/_index.scss +96 -4
- package/scss/dataviz/_variables.scss +1 -1
- package/scss/imageeditor/_variables.scss +2 -2
- package/scss/typography/_variables.scss +4 -3
- package/scss/core/color-system/_palettes.scss +0 -305
|
@@ -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.
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@use "sass:map";
|
|
1
2
|
@use "sass:math";
|
|
2
3
|
|
|
3
4
|
/// The base font size across all components.
|
|
@@ -5,6 +6,9 @@
|
|
|
5
6
|
$kendo-font-size: 0.875rem !default;
|
|
6
7
|
/// The extra extra small font size across all components.
|
|
7
8
|
/// @group typography
|
|
9
|
+
$kendo-font-size-xxs: 0.5rem !default;
|
|
10
|
+
/// The extra extra small font size across all components.
|
|
11
|
+
/// @group typography
|
|
8
12
|
$kendo-font-size-xs: 0.625rem !default;
|
|
9
13
|
/// The small font size across all components.
|
|
10
14
|
/// @group typography
|
|
@@ -38,12 +42,21 @@ $kendo-line-height-lg: 1.33 !default;
|
|
|
38
42
|
/// @group typography
|
|
39
43
|
$kendo-line-height-em: calc( #{$kendo-line-height} * 1em) !default;
|
|
40
44
|
|
|
45
|
+
/// The base font weight across all components.
|
|
46
|
+
/// @group typography
|
|
47
|
+
$kendo-font-weight: 400 !default;
|
|
48
|
+
/// The thin font weight across all components.
|
|
49
|
+
/// @group typography
|
|
50
|
+
$kendo-font-weight-thin: 100 !default;
|
|
51
|
+
/// The extra light font weight across all components.
|
|
52
|
+
/// @group typography
|
|
53
|
+
$kendo-font-weight-extra-light: 200 !default;
|
|
41
54
|
/// The light font weight across all components.
|
|
42
55
|
/// @group typography
|
|
43
56
|
$kendo-font-weight-light: 300 !default;
|
|
44
|
-
/// The
|
|
57
|
+
/// The normal font weight across all components.
|
|
45
58
|
/// @group typography
|
|
46
|
-
$kendo-font-weight-normal:
|
|
59
|
+
$kendo-font-weight-normal: $kendo-font-weight !default;
|
|
47
60
|
/// The medium font weight across all components.
|
|
48
61
|
/// @group typography
|
|
49
62
|
$kendo-font-weight-medium: 500 !default;
|
|
@@ -53,16 +66,57 @@ $kendo-font-weight-semibold: 600 !default;
|
|
|
53
66
|
/// The bold font weight across all components.
|
|
54
67
|
/// @group typography
|
|
55
68
|
$kendo-font-weight-bold: 700 !default;
|
|
69
|
+
/// The extra bold font weight across all components.
|
|
70
|
+
/// @group typography
|
|
71
|
+
$kendo-font-weight-extra-bold: 800 !default;
|
|
72
|
+
/// The most pronounced font weight across all components.
|
|
73
|
+
/// @group typography
|
|
74
|
+
$kendo-font-weight-black: 900 !default;
|
|
56
75
|
|
|
57
76
|
/// The base letter spacing across all components.
|
|
58
77
|
/// @group typography
|
|
59
78
|
$kendo-letter-spacing: normal !default;
|
|
79
|
+
/// The tightest letter spacing across all components.
|
|
80
|
+
/// @group typography
|
|
81
|
+
$kendo-letter-spacing-tightest: -.15px !default;
|
|
82
|
+
/// Slightly looser than the tighter letter spacing across all components.
|
|
83
|
+
/// @group typography
|
|
84
|
+
$kendo-letter-spacing-tighter: -.10px !default;
|
|
85
|
+
/// Moderately tight letter spacing across all components.
|
|
86
|
+
/// @group typography
|
|
87
|
+
$kendo-letter-spacing-tight: -.5px !default;
|
|
88
|
+
/// The normal letter spacing across all components.
|
|
89
|
+
/// @group typography
|
|
90
|
+
$kendo-letter-spacing-normal: 0px !default;
|
|
91
|
+
/// Wide letter spacing across all components.
|
|
92
|
+
/// @group typography
|
|
93
|
+
$kendo-letter-spacing-wide: .5px !default;
|
|
94
|
+
/// Slightly wider than the wide letter spacing across all components.
|
|
95
|
+
/// @group typography
|
|
96
|
+
$kendo-letter-spacing-wider: .10px !default;
|
|
97
|
+
/// The widest letter spacing across all components.
|
|
98
|
+
/// @group typography
|
|
99
|
+
$kendo-letter-spacing-widest: .15px !default;
|
|
60
100
|
|
|
61
|
-
/// The font family across all components.
|
|
101
|
+
/// The sans font family across all components.
|
|
102
|
+
/// @group typography
|
|
103
|
+
$kendo-font-family-sans: Arial, Verdana, Tahoma, "Trebuchet MS", Helvetica, Impact, Gill Sans !default;
|
|
104
|
+
/// The serif font family across all components.
|
|
105
|
+
/// @group typography
|
|
106
|
+
$kendo-font-family-serif: "Times New Roman", Georgia, Garamond, Palatino, Baskerville !default;
|
|
107
|
+
/// The sans-serif font family across all components.
|
|
108
|
+
/// @group typography
|
|
109
|
+
$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;
|
|
110
|
+
/// The monospace font family across all components.
|
|
111
|
+
/// @group typography
|
|
112
|
+
$kendo-font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Roboto Mono", "Ubuntu Mono", "Lucida Console", "Courier New", monospace !default;
|
|
113
|
+
|
|
114
|
+
/// The base font family across all components.
|
|
62
115
|
/// @group typography
|
|
63
116
|
$kendo-font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif !default;
|
|
64
117
|
|
|
65
118
|
$_default-font-sizes: (
|
|
119
|
+
xxs: $kendo-font-size-xxs,
|
|
66
120
|
xs: $kendo-font-size-xs,
|
|
67
121
|
sm: $kendo-font-size-sm,
|
|
68
122
|
md: $kendo-font-size-md,
|
|
@@ -78,17 +132,55 @@ $_default-line-heights: (
|
|
|
78
132
|
) !default;
|
|
79
133
|
|
|
80
134
|
$_default-font-weights: (
|
|
135
|
+
thin: $kendo-font-weight-thin,
|
|
136
|
+
extra-light: $kendo-font-weight-extra-light,
|
|
81
137
|
light: $kendo-font-weight-light,
|
|
82
138
|
normal: $kendo-font-weight-normal,
|
|
83
139
|
medium: $kendo-font-weight-medium,
|
|
84
140
|
semibold: $kendo-font-weight-semibold,
|
|
85
|
-
bold: $kendo-font-weight-bold
|
|
141
|
+
bold: $kendo-font-weight-bold,
|
|
142
|
+
extra-bold: $kendo-font-weight-extra-bold,
|
|
143
|
+
"black": $kendo-font-weight-black
|
|
144
|
+
) !default;
|
|
145
|
+
|
|
146
|
+
$_default-letter-spacings: (
|
|
147
|
+
tightest: $kendo-letter-spacing-tightest,
|
|
148
|
+
tighter: $kendo-letter-spacing-tighter,
|
|
149
|
+
tight: $kendo-letter-spacing-tight,
|
|
150
|
+
normal: $kendo-letter-spacing-normal,
|
|
151
|
+
wide: $kendo-letter-spacing-wide,
|
|
152
|
+
wider: $kendo-letter-spacing-wider,
|
|
153
|
+
widest: $kendo-letter-spacing-widest
|
|
154
|
+
) !default;
|
|
155
|
+
|
|
156
|
+
$_default-font-families: (
|
|
157
|
+
sans: $kendo-font-family-sans,
|
|
158
|
+
serif: $kendo-font-family-serif,
|
|
159
|
+
sans-serif: $kendo-font-family-sans-serif,
|
|
160
|
+
monospace: $kendo-font-family-monospace
|
|
86
161
|
) !default;
|
|
87
162
|
|
|
88
163
|
/// The font sizes map
|
|
89
164
|
/// @group typography
|
|
90
165
|
$kendo-font-sizes: $_default-font-sizes !default;
|
|
166
|
+
$kendo-font-sizes: map.merge( $_default-font-sizes, $kendo-font-sizes );
|
|
91
167
|
|
|
92
168
|
/// The line heights map
|
|
93
169
|
/// @group typography
|
|
94
170
|
$kendo-line-heights: $_default-line-heights !default;
|
|
171
|
+
$kendo-line-heights: map.merge( $_default-line-heights, $kendo-line-heights );
|
|
172
|
+
|
|
173
|
+
/// The font weights map
|
|
174
|
+
/// @group typography
|
|
175
|
+
$kendo-font-weights: $_default-font-weights !default;
|
|
176
|
+
$kendo-font-weights: map.merge( $_default-font-weights, $kendo-font-weights );
|
|
177
|
+
|
|
178
|
+
/// The letter spacings map
|
|
179
|
+
/// @group typography
|
|
180
|
+
$kendo-letter-spacings: $_default-letter-spacings !default;
|
|
181
|
+
$kendo-letter-spacings: map.merge( $_default-letter-spacings, $kendo-letter-spacings );
|
|
182
|
+
|
|
183
|
+
/// The font families map
|
|
184
|
+
/// @group typography
|
|
185
|
+
$kendo-font-families: $_default-font-families !default;
|
|
186
|
+
$kendo-font-families: map.merge( $_default-font-families, $kendo-font-families );
|
|
@@ -375,7 +375,7 @@ $kendo-chart-no-data-font-weight: var( --kendo-chart-no-data-font-weight, var(--
|
|
|
375
375
|
$kendo-chart-no-data-text: var( --kendo-chart-no-data-text, k-color(on-app-surface) ) !default;
|
|
376
376
|
/// The vertical padding of the Chart no data message.
|
|
377
377
|
/// @group charts
|
|
378
|
-
$kendo-chart-no-data-padding-y: var( --kendo-chart-no-data-padding-y,
|
|
378
|
+
$kendo-chart-no-data-padding-y: var( --kendo-chart-no-data-padding-y, 7rem ) !default;
|
|
379
379
|
|
|
380
380
|
// Gauge
|
|
381
381
|
/// Color of the Gauge Pointer.
|
|
@@ -48,7 +48,7 @@ $kendo-image-editor-content-text: var( --kendo-image-editor-content-text, inheri
|
|
|
48
48
|
$kendo-image-editor-content-border: var( --kendo-image-editor-content-border, inherit ) !default;
|
|
49
49
|
/// Imageeditor content border width.
|
|
50
50
|
/// @group image-editor
|
|
51
|
-
$kendo-image-editor-content-border-width:
|
|
51
|
+
$kendo-image-editor-content-border-width: 0px !default;
|
|
52
52
|
|
|
53
53
|
/// Imageeditor action pane background color.
|
|
54
54
|
/// @group image-editor
|
|
@@ -67,7 +67,7 @@ $kendo-image-editor-action-pane-padding-y: var( --kendo-image-editor-action-pane
|
|
|
67
67
|
$kendo-image-editor-action-pane-padding-x: var( --kendo-image-editor-action-pane-padding-x, #{k-spacing(3)} ) !default;
|
|
68
68
|
/// Imageeditor action pane width.
|
|
69
69
|
/// @group image-editor
|
|
70
|
-
$kendo-image-editor-action-pane-width: var( --kendo-image-editor-action-pane-width,
|
|
70
|
+
$kendo-image-editor-action-pane-width: var( --kendo-image-editor-action-pane-width, calc( 270px + #{$kendo-image-editor-content-border-width}) ) !default;
|
|
71
71
|
|
|
72
72
|
/// Crop background color of the imageeditor.
|
|
73
73
|
/// @group image-editor
|
|
@@ -37,7 +37,7 @@ $kendo-h3-font-family: var(--kendo-font-family) !default;
|
|
|
37
37
|
/// @group typography-component
|
|
38
38
|
$kendo-h4-font-family: var(--kendo-font-family) !default;
|
|
39
39
|
/// The font family of the fifth highest level heading.
|
|
40
|
-
///
|
|
40
|
+
/// @group typography-component
|
|
41
41
|
$kendo-h5-font-family: var(--kendo-font-family) !default;
|
|
42
42
|
/// The font family of the sixth highest level heading.
|
|
43
43
|
/// @group typography-component
|
|
@@ -59,14 +59,15 @@ $kendo-h4-line-height: 40px !default;
|
|
|
59
59
|
/// @group typography-component
|
|
60
60
|
$kendo-h5-line-height: 36px !default;
|
|
61
61
|
/// The line height of the sixth highest level heading.
|
|
62
|
+
/// @group typography-component
|
|
62
63
|
$kendo-h6-line-height: 32px !default;
|
|
63
64
|
|
|
64
65
|
/// The font weight of the highest level heading.
|
|
65
66
|
/// @group typography-component
|
|
66
|
-
$kendo-
|
|
67
|
+
$kendo-h1-font-weight: var(--kendo-font-weight-semibold) !default;
|
|
67
68
|
/// The font weight of the second highest level heading.
|
|
68
69
|
/// @group typography-component
|
|
69
|
-
$kendo-
|
|
70
|
+
$kendo-h2-font-weight: var(--kendo-font-weight-semibold) !default;
|
|
70
71
|
/// The font weight of the third highest level heading.
|
|
71
72
|
/// @group typography-component
|
|
72
73
|
$kendo-h3-font-weight: var(--kendo-font-weight-semibold) !default;
|
|
@@ -1,305 +0,0 @@
|
|
|
1
|
-
@use "sass:map";
|
|
2
|
-
|
|
3
|
-
// Palettes
|
|
4
|
-
$_default-palette-neutral-gray: (
|
|
5
|
-
"white": #ffffff,
|
|
6
|
-
1: #fafafa,
|
|
7
|
-
2: #f5f5f5,
|
|
8
|
-
3: #f0f0f0,
|
|
9
|
-
4: #ebebeb,
|
|
10
|
-
5: #e0e0e0,
|
|
11
|
-
6: #d1d1d1,
|
|
12
|
-
7: #c7c7c7,
|
|
13
|
-
8: #b3b3b3,
|
|
14
|
-
9: #9e9e9e,
|
|
15
|
-
10: #8a8a8a,
|
|
16
|
-
11: #707070,
|
|
17
|
-
12: #616161,
|
|
18
|
-
13: #424242,
|
|
19
|
-
14: #333333,
|
|
20
|
-
15: #242424,
|
|
21
|
-
"black": #000000,
|
|
22
|
-
);
|
|
23
|
-
|
|
24
|
-
$_default-palette-blue: (
|
|
25
|
-
1: #ebf3fc,
|
|
26
|
-
2: #cfe4fa,
|
|
27
|
-
3: #abd1f8,
|
|
28
|
-
4: #96c6fa,
|
|
29
|
-
5: #479ef5,
|
|
30
|
-
6: #1988f0,
|
|
31
|
-
7: #0f6cbd,
|
|
32
|
-
8: #115ea3,
|
|
33
|
-
9: #0f548c,
|
|
34
|
-
10: #0e4775,
|
|
35
|
-
11: #1e3345,
|
|
36
|
-
12: #0a2e4a,
|
|
37
|
-
13: #082338,
|
|
38
|
-
14: #061724,
|
|
39
|
-
15: #061724,
|
|
40
|
-
);
|
|
41
|
-
|
|
42
|
-
$_default-palette-berry: (
|
|
43
|
-
1: #fdf5fc,
|
|
44
|
-
2: #f5daf2,
|
|
45
|
-
3: #edbbe7,
|
|
46
|
-
4: #e59edd,
|
|
47
|
-
5: #e090d5,
|
|
48
|
-
6: #da7ed0,
|
|
49
|
-
7: #d161c4,
|
|
50
|
-
8: #cb4dbd,
|
|
51
|
-
9: #c239b3,
|
|
52
|
-
10: #af33a1,
|
|
53
|
-
11: #962c8a,
|
|
54
|
-
12: #6d2064,
|
|
55
|
-
13: #53184c,
|
|
56
|
-
14: #3a1136,
|
|
57
|
-
15: #20091d,
|
|
58
|
-
);
|
|
59
|
-
|
|
60
|
-
$_default-palette-green: (
|
|
61
|
-
1: #f1faf1,
|
|
62
|
-
2: #c9eac9,
|
|
63
|
-
3: #9fd89f,
|
|
64
|
-
4: #84cd84,
|
|
65
|
-
5: #70c270,
|
|
66
|
-
6: #64b964,
|
|
67
|
-
7: #54b054,
|
|
68
|
-
8: #479e47,
|
|
69
|
-
9: #359735,
|
|
70
|
-
10: #258d25,
|
|
71
|
-
11: #107c10,
|
|
72
|
-
12: #0e700e,
|
|
73
|
-
13: #0c5e0c,
|
|
74
|
-
14: #094509,
|
|
75
|
-
15: #052505,
|
|
76
|
-
);
|
|
77
|
-
|
|
78
|
-
$_default-palette-cranberry: (
|
|
79
|
-
1: #fdf3f4,
|
|
80
|
-
2: #f6d1d5,
|
|
81
|
-
3: #f4c3c7,
|
|
82
|
-
4: #eeacb2,
|
|
83
|
-
5: #e78890,
|
|
84
|
-
6: #dc626d,
|
|
85
|
-
7: #ce3b47,
|
|
86
|
-
8: #c50f1f,
|
|
87
|
-
9: #b10e1c,
|
|
88
|
-
10: #960b18,
|
|
89
|
-
11: #810812,
|
|
90
|
-
12: #6e0811,
|
|
91
|
-
13: #4b0206,
|
|
92
|
-
14: #3b0509,
|
|
93
|
-
15: #200205,
|
|
94
|
-
);
|
|
95
|
-
|
|
96
|
-
$_default-palette-orange: (
|
|
97
|
-
1: #fff9f5,
|
|
98
|
-
2: #fee5d7,
|
|
99
|
-
3: #fdcfb4,
|
|
100
|
-
4: #fcb992,
|
|
101
|
-
5: #faa06b,
|
|
102
|
-
6: #f98845,
|
|
103
|
-
7: #f87528,
|
|
104
|
-
8: #f7630c,
|
|
105
|
-
9: #de590b,
|
|
106
|
-
10: #bc4b09,
|
|
107
|
-
11: #a04008,
|
|
108
|
-
12: #8a3707,
|
|
109
|
-
13: #612705,
|
|
110
|
-
14: #4a1e04,
|
|
111
|
-
15: #200e04,
|
|
112
|
-
);
|
|
113
|
-
|
|
114
|
-
$_default-palette-steel-blue: (
|
|
115
|
-
1: #f6fafe,
|
|
116
|
-
2: #dcedfa,
|
|
117
|
-
3: #bfddf5,
|
|
118
|
-
4: #a3cdf0,
|
|
119
|
-
5: #83bdeb,
|
|
120
|
-
6: #65ade5,
|
|
121
|
-
7: #4fa1e1,
|
|
122
|
-
8: #3a96dd,
|
|
123
|
-
9: #3991d5,
|
|
124
|
-
10: #3487c7,
|
|
125
|
-
11: #2c72a8,
|
|
126
|
-
12: #20547c,
|
|
127
|
-
13: #174169,
|
|
128
|
-
14: #112d4e,
|
|
129
|
-
15: #091823,
|
|
130
|
-
);
|
|
131
|
-
|
|
132
|
-
$_default-palette-techno-teal: (
|
|
133
|
-
1: #eaf5f6,
|
|
134
|
-
2: #d4eced,
|
|
135
|
-
3: #bfe2e3,
|
|
136
|
-
4: #a9d9da,
|
|
137
|
-
5: #94cfd1,
|
|
138
|
-
6: #7bc4c6,
|
|
139
|
-
7: #5fb8bb,
|
|
140
|
-
8: #42afb3,
|
|
141
|
-
9: #2aa0a4,
|
|
142
|
-
10: #268e92,
|
|
143
|
-
11: #20787b,
|
|
144
|
-
12: #1a6365,
|
|
145
|
-
13: #155052,
|
|
146
|
-
14: #0f3739,
|
|
147
|
-
15: #091f20,
|
|
148
|
-
);
|
|
149
|
-
|
|
150
|
-
$_default-palette-saffron-forge: (
|
|
151
|
-
1: #faf8ef,
|
|
152
|
-
2: #f0ead0,
|
|
153
|
-
3: #e6dcb2,
|
|
154
|
-
4: #dfd19a,
|
|
155
|
-
5: #d7c580,
|
|
156
|
-
6: #ceb964,
|
|
157
|
-
7: #c2a940,
|
|
158
|
-
8: #b69a2b,
|
|
159
|
-
9: #ae8c00,
|
|
160
|
-
10: #997a00,
|
|
161
|
-
11: #826900,
|
|
162
|
-
12: #6b5600,
|
|
163
|
-
13: #574600,
|
|
164
|
-
14: #3d3100,
|
|
165
|
-
15: #292100,
|
|
166
|
-
);
|
|
167
|
-
|
|
168
|
-
$_default-palette-electric-fuchsia: (
|
|
169
|
-
1: #fdedf7,
|
|
170
|
-
2: #fbdaee,
|
|
171
|
-
3: #f8bfe2,
|
|
172
|
-
4: #f49ad1,
|
|
173
|
-
5: #f180c5,
|
|
174
|
-
6: #ed5eb6,
|
|
175
|
-
7: #ea40a9,
|
|
176
|
-
8: #e61e99,
|
|
177
|
-
9: #e3008c,
|
|
178
|
-
10: #c7007b,
|
|
179
|
-
11: #aa0069,
|
|
180
|
-
12: #8f0058,
|
|
181
|
-
13: #720046,
|
|
182
|
-
14: #520032,
|
|
183
|
-
15: #290019,
|
|
184
|
-
);
|
|
185
|
-
|
|
186
|
-
$_default-palette-bright-basil: (
|
|
187
|
-
1: #f1f9f0,
|
|
188
|
-
2: #dbf1da,
|
|
189
|
-
3: #c5e8c4,
|
|
190
|
-
4: #b0e0ae,
|
|
191
|
-
5: #9ad798,
|
|
192
|
-
6: #89d086,
|
|
193
|
-
7: #6fc66c,
|
|
194
|
-
8: #4eb94a,
|
|
195
|
-
9: #2eb22a,
|
|
196
|
-
10: #13a10e,
|
|
197
|
-
11: #118d0c,
|
|
198
|
-
12: #0e790b,
|
|
199
|
-
13: #0c6709,
|
|
200
|
-
14: #0a5107,
|
|
201
|
-
15: #062f04,
|
|
202
|
-
);
|
|
203
|
-
|
|
204
|
-
$_default-palette-iris-purple: (
|
|
205
|
-
1: #edf0fd,
|
|
206
|
-
2: #dfe4fc,
|
|
207
|
-
3: #d1d8fa,
|
|
208
|
-
4: #bec9f8,
|
|
209
|
-
5: #c3b1db,
|
|
210
|
-
6: #99aaf4,
|
|
211
|
-
7: #a58bca,
|
|
212
|
-
8: #758bf0,
|
|
213
|
-
9: #637cef,
|
|
214
|
-
10: #516Ad6,
|
|
215
|
-
11: #4a5db3,
|
|
216
|
-
12: #3d4d94,
|
|
217
|
-
13: #323e78,
|
|
218
|
-
14: #242c56,
|
|
219
|
-
15: #12162b,
|
|
220
|
-
);
|
|
221
|
-
|
|
222
|
-
$_default-palette-terracotta-heat: (
|
|
223
|
-
1: #FAF0EA,
|
|
224
|
-
2: #F6E0D5,
|
|
225
|
-
3: #F0CDBC,
|
|
226
|
-
4: #EBBBA3,
|
|
227
|
-
5: #E5A787,
|
|
228
|
-
6: #DD9269,
|
|
229
|
-
7: #D77C4C,
|
|
230
|
-
8: #D66529,
|
|
231
|
-
9: #CA5010,
|
|
232
|
-
10: #B3480F,
|
|
233
|
-
11: #973C0C,
|
|
234
|
-
12: #7F330A,
|
|
235
|
-
13: #652808,
|
|
236
|
-
14: #4B1E06,
|
|
237
|
-
15: #260F03,
|
|
238
|
-
);
|
|
239
|
-
|
|
240
|
-
// stylelint-disable scss/no-global-function-names
|
|
241
|
-
/// The Gray Palette provides colors to the Base, Secondary, Light, Dark, and Inverse variable groups.
|
|
242
|
-
/// @group palette
|
|
243
|
-
$kendo-palette-neutral-gray: $_default-palette-neutral-gray !default;
|
|
244
|
-
$kendo-palette-neutral-gray: map.merge($_default-palette-neutral-gray, $kendo-palette-neutral-gray);
|
|
245
|
-
|
|
246
|
-
/// The Blue Palette provides colors to the Primary variable group.
|
|
247
|
-
/// @group palette
|
|
248
|
-
$kendo-palette-blue: $_default-palette-blue !default;
|
|
249
|
-
$kendo-palette-blue: map.merge($_default-palette-blue, $kendo-palette-blue);
|
|
250
|
-
|
|
251
|
-
/// The Berry Palette provides colors to the Tertiary variable group.
|
|
252
|
-
/// @group palette
|
|
253
|
-
$kendo-palette-berry: $_default-palette-berry !default;
|
|
254
|
-
$kendo-palette-berry: map.merge($_default-palette-berry, $kendo-palette-berry);
|
|
255
|
-
|
|
256
|
-
/// The Green Palette provides colors to the Success variable group.
|
|
257
|
-
/// @group palette
|
|
258
|
-
$kendo-palette-green: $_default-palette-green !default;
|
|
259
|
-
$kendo-palette-green: map.merge($_default-palette-green, $kendo-palette-green);
|
|
260
|
-
|
|
261
|
-
/// The Cranberry Palette provides colors to the Error variable group.
|
|
262
|
-
/// @group palette
|
|
263
|
-
$kendo-palette-cranberry: $_default-palette-cranberry !default;
|
|
264
|
-
$kendo-palette-cranberry: map.merge($_default-palette-cranberry, $kendo-palette-cranberry);
|
|
265
|
-
|
|
266
|
-
/// The Orange Palette provides colors to the Warning variable group.
|
|
267
|
-
/// @group palette
|
|
268
|
-
$kendo-palette-orange: $_default-palette-orange !default;
|
|
269
|
-
$kendo-palette-orange: map.merge($_default-palette-orange, $kendo-palette-orange);
|
|
270
|
-
|
|
271
|
-
/// The Steel Blue Palette provides colors to the Info variable group.
|
|
272
|
-
/// @group palette
|
|
273
|
-
$kendo-palette-steel-blue: $_default-palette-steel-blue !default;
|
|
274
|
-
$kendo-palette-steel-blue: map.merge($_default-palette-steel-blue, $kendo-palette-steel-blue);
|
|
275
|
-
|
|
276
|
-
/// The Sapphire Blue Palette provides colors to the Series A variable group.
|
|
277
|
-
/// @group palette
|
|
278
|
-
$kendo-palette-techno-teal: $_default-palette-techno-teal !default;
|
|
279
|
-
$kendo-palette-techno-teal: map.merge($_default-palette-techno-teal, $kendo-palette-techno-teal);
|
|
280
|
-
|
|
281
|
-
/// The Saffron Forge Palette provides colors to the Series B variable group.
|
|
282
|
-
/// @group palette
|
|
283
|
-
$kendo-palette-saffron-forge: $_default-palette-saffron-forge !default;
|
|
284
|
-
$kendo-palette-saffron-forge: map.merge($_default-palette-saffron-forge, $kendo-palette-saffron-forge);
|
|
285
|
-
|
|
286
|
-
/// The Electric Fuchsia Palette provides colors to the Series C variable group.
|
|
287
|
-
/// @group palette
|
|
288
|
-
$kendo-palette-electric-fuchsia: $_default-palette-electric-fuchsia !default;
|
|
289
|
-
$kendo-palette-electric-fuchsia: map.merge($_default-palette-electric-fuchsia, $kendo-palette-electric-fuchsia);
|
|
290
|
-
|
|
291
|
-
/// The Bright Basil Palette provides colors to the Series D variable group.
|
|
292
|
-
/// @group palette
|
|
293
|
-
$kendo-palette-bright-basil: $_default-palette-bright-basil !default;
|
|
294
|
-
$kendo-palette-bright-basil: map.merge($_default-palette-bright-basil, $kendo-palette-bright-basil);
|
|
295
|
-
|
|
296
|
-
// The Iris Purple Palette provides colors to the Series E variable group.
|
|
297
|
-
/// @group palette
|
|
298
|
-
$kendo-palette-iris-purple: $_default-palette-iris-purple !default;
|
|
299
|
-
$kendo-palette-iris-purple: map.merge($_default-palette-iris-purple, $kendo-palette-iris-purple);
|
|
300
|
-
|
|
301
|
-
// The Iris Purple Palette provides colors to the Series F variable group.
|
|
302
|
-
/// @group palette
|
|
303
|
-
$kendo-palette-terracotta-heat: $_default-palette-terracotta-heat !default;
|
|
304
|
-
$kendo-palette-terracotta-heat: map.merge($_default-palette-terracotta-heat, $kendo-palette-terracotta-heat);
|
|
305
|
-
// stylelint-enable scss/no-global-function-names
|