@progress/kendo-theme-classic 7.1.0-dev.8 → 7.1.0-dev.9
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 +50 -18
- package/dist/all.scss +1562 -632
- package/dist/meta/sassdoc-data.json +1792 -662
- package/dist/meta/sassdoc-raw-data.json +850 -327
- package/dist/meta/variables.json +398 -338
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-lavender-dark.json +1 -1
- package/lib/swatches/classic-lavender.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-metro-dark.json +1 -1
- package/lib/swatches/classic-metro.json +1 -1
- package/lib/swatches/classic-moonlight.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/lib/swatches/classic-uniform.json +1 -1
- package/package.json +5 -5
- package/scss/_variables.scss +0 -197
- package/scss/adaptive/_variables.scss +1 -1
- package/scss/appbar/_variables.scss +2 -2
- package/scss/button/_variables.scss +7 -7
- package/scss/chat/_variables.scss +1 -1
- package/scss/checkbox/_variables.scss +2 -2
- package/scss/chip/_variables.scss +3 -3
- package/scss/core/_index.scss +6 -0
- package/scss/core/color-system/_palettes.scss +277 -0
- package/scss/core/color-system/_swatch-legacy.scss +62 -0
- package/scss/core/color-system/_swatch.scss +397 -0
- package/scss/dataviz/_variables.scss +42 -42
- package/scss/dock-manager/_variables.scss +1 -1
- package/scss/dropzone/_variables.scss +1 -1
- package/scss/editor/_variables.scss +1 -1
- package/scss/expansion-panel/_variables.scss +1 -2
- package/scss/filemanager/_variables.scss +2 -2
- package/scss/forms/_variables.scss +1 -1
- package/scss/gantt/_variables.scss +10 -10
- package/scss/grid/_variables.scss +11 -8
- package/scss/input/_variables.scss +6 -6
- package/scss/listview/_variables.scss +1 -1
- package/scss/map/_variables.scss +1 -1
- package/scss/mediaplayer/_variables.scss +1 -1
- package/scss/menu/_variables.scss +1 -1
- package/scss/notification/_variables.scss +1 -1
- package/scss/panelbar/_variables.scss +3 -4
- package/scss/pivotgrid/_variables.scss +5 -5
- package/scss/progressbar/_variables.scss +3 -3
- package/scss/scheduler/_variables.scss +3 -3
- package/scss/scrollview/_variables.scss +1 -1
- package/scss/signature/_variables.scss +1 -1
- package/scss/skeleton/_variables.scss +1 -1
- package/scss/slider/_variables.scss +8 -8
- package/scss/splitter/_variables.scss +1 -1
- package/scss/spreadsheet/_variables.scss +4 -4
- package/scss/stepper/_variables.scss +7 -7
- package/scss/switch/_variables.scss +7 -7
- package/scss/table/_variables.scss +3 -3
- package/scss/taskboard/_variables.scss +4 -3
- package/scss/timeline/_variables.scss +4 -4
- package/scss/tooltip/_variables.scss +4 -4
- package/scss/core/color-system/index.import.scss +0 -1
|
@@ -0,0 +1,397 @@
|
|
|
1
|
+
@import "@progress/kendo-theme-core/scss/functions/index.import.scss";
|
|
2
|
+
@import "@progress/kendo-theme-core/scss/color-system/_constants.scss";
|
|
3
|
+
@import "./_palettes.scss";
|
|
4
|
+
|
|
5
|
+
// Config
|
|
6
|
+
$kendo-enable-color-system: false !default;
|
|
7
|
+
|
|
8
|
+
// Colors
|
|
9
|
+
$_default-colors: (
|
|
10
|
+
// Misc
|
|
11
|
+
app-surface: k-map-get( $kendo-palette-ash-gray, white ),
|
|
12
|
+
on-app-surface: k-map-get( $kendo-palette-ash-gray, 15 ),
|
|
13
|
+
subtle: k-map-get( $kendo-palette-ash-gray, 11 ),
|
|
14
|
+
surface: k-map-get( $kendo-palette-ash-gray, 2 ),
|
|
15
|
+
surface-alt: k-map-get( $kendo-palette-ash-gray, white ),
|
|
16
|
+
border: k-map-get( $kendo-palette-ash-gray, 6 ),
|
|
17
|
+
border-alt: k-map-get( $kendo-palette-ash-gray, 7 ),
|
|
18
|
+
// Base
|
|
19
|
+
base-subtle: k-map-get( $kendo-palette-ash-gray, 2 ),
|
|
20
|
+
base-subtle-hover: k-map-get( $kendo-palette-ash-gray, 3 ),
|
|
21
|
+
base-subtle-active: k-map-get( $kendo-palette-ash-gray, 4 ),
|
|
22
|
+
base: k-map-get( $kendo-palette-ash-gray, 3 ),
|
|
23
|
+
base-hover: k-map-get( $kendo-palette-ash-gray, 4 ),
|
|
24
|
+
base-active: k-map-get( $kendo-palette-ash-gray, 5 ),
|
|
25
|
+
base-emphasis: k-map-get( $kendo-palette-ash-gray, 6 ),
|
|
26
|
+
base-on-subtle: k-map-get( $kendo-palette-ash-gray, 15 ),
|
|
27
|
+
on-base: k-map-get( $kendo-palette-ash-gray, 15 ),
|
|
28
|
+
base-on-surface: k-map-get( $kendo-palette-ash-gray, 15 ),
|
|
29
|
+
// Primary
|
|
30
|
+
primary-subtle: k-map-get( $kendo-palette-tangerine-orange, 1 ),
|
|
31
|
+
primary-subtle-hover: k-map-get( $kendo-palette-tangerine-orange, 2 ),
|
|
32
|
+
primary-subtle-active: k-map-get( $kendo-palette-tangerine-orange, 3 ),
|
|
33
|
+
primary: k-map-get( $kendo-palette-tangerine-orange, 9 ),
|
|
34
|
+
primary-hover: k-map-get( $kendo-palette-tangerine-orange, 10 ),
|
|
35
|
+
primary-active: k-map-get( $kendo-palette-tangerine-orange, 11 ),
|
|
36
|
+
primary-emphasis: k-map-get( $kendo-palette-tangerine-orange, 7 ),
|
|
37
|
+
primary-on-subtle: k-map-get( $kendo-palette-tangerine-orange, 15 ),
|
|
38
|
+
on-primary: k-map-get( $kendo-palette-ash-gray, white ),
|
|
39
|
+
primary-on-surface: k-map-get( $kendo-palette-tangerine-orange, 9 ),
|
|
40
|
+
// Secondary
|
|
41
|
+
secondary-subtle: k-map-get( $kendo-palette-ash-gray, 6 ),
|
|
42
|
+
secondary-subtle-hover: k-map-get( $kendo-palette-ash-gray, 7 ),
|
|
43
|
+
secondary-subtle-active: k-map-get( $kendo-palette-ash-gray, 8 ),
|
|
44
|
+
secondary: k-map-get( $kendo-palette-ash-gray, 7 ),
|
|
45
|
+
secondary-hover: k-map-get( $kendo-palette-ash-gray, 8 ),
|
|
46
|
+
secondary-active: k-map-get( $kendo-palette-ash-gray, 9 ),
|
|
47
|
+
secondary-emphasis: k-map-get( $kendo-palette-ash-gray, 10 ),
|
|
48
|
+
secondary-on-subtle: k-map-get( $kendo-palette-ash-gray, 15 ),
|
|
49
|
+
on-secondary: k-map-get( $kendo-palette-ash-gray, black ),
|
|
50
|
+
secondary-on-surface: k-map-get( $kendo-palette-ash-gray, 9 ),
|
|
51
|
+
// Tertiary
|
|
52
|
+
tertiary-subtle: k-map-get( $kendo-palette-dodger-blue, 4 ),
|
|
53
|
+
tertiary-subtle-hover: k-map-get( $kendo-palette-dodger-blue, 5 ),
|
|
54
|
+
tertiary-subtle-active: k-map-get( $kendo-palette-dodger-blue, 6 ),
|
|
55
|
+
tertiary: k-map-get( $kendo-palette-dodger-blue, 9 ),
|
|
56
|
+
tertiary-hover: k-map-get( $kendo-palette-dodger-blue, 10 ),
|
|
57
|
+
tertiary-active: k-map-get( $kendo-palette-dodger-blue, 11 ),
|
|
58
|
+
tertiary-emphasis: k-map-get( $kendo-palette-dodger-blue, 7 ),
|
|
59
|
+
tertiary-on-subtle: k-map-get( $kendo-palette-dodger-blue, 15 ),
|
|
60
|
+
on-tertiary: k-map-get( $kendo-palette-ash-gray, white ),
|
|
61
|
+
tertiary-on-surface: k-map-get( $kendo-palette-dodger-blue, 13 ),
|
|
62
|
+
// Info
|
|
63
|
+
info-subtle: k-map-get( $kendo-palette-lake-blue, 3 ),
|
|
64
|
+
info-subtle-hover: k-map-get( $kendo-palette-lake-blue, 4 ),
|
|
65
|
+
info-subtle-active: k-map-get( $kendo-palette-lake-blue, 6 ),
|
|
66
|
+
info: k-map-get( $kendo-palette-lake-blue, 9 ),
|
|
67
|
+
info-hover: k-map-get( $kendo-palette-lake-blue, 10 ),
|
|
68
|
+
info-active: k-map-get( $kendo-palette-lake-blue, 11 ),
|
|
69
|
+
info-emphasis: k-map-get( $kendo-palette-lake-blue, 7 ),
|
|
70
|
+
info-on-subtle: k-map-get( $kendo-palette-lake-blue, 15 ),
|
|
71
|
+
on-info: k-map-get( $kendo-palette-ash-gray, white ),
|
|
72
|
+
info-on-surface: k-map-get( $kendo-palette-lake-blue, 13 ),
|
|
73
|
+
// Success
|
|
74
|
+
success-subtle: k-map-get( $kendo-palette-grass-green, 4 ),
|
|
75
|
+
success-subtle-hover: k-map-get( $kendo-palette-grass-green, 5 ),
|
|
76
|
+
success-subtle-active: k-map-get( $kendo-palette-grass-green, 6 ),
|
|
77
|
+
success: k-map-get( $kendo-palette-grass-green, 9 ),
|
|
78
|
+
success-hover: k-map-get( $kendo-palette-grass-green, 10 ),
|
|
79
|
+
success-active: k-map-get( $kendo-palette-grass-green, 11 ),
|
|
80
|
+
success-emphasis: k-map-get( $kendo-palette-grass-green, 7 ),
|
|
81
|
+
success-on-subtle: k-map-get( $kendo-palette-grass-green, 15 ),
|
|
82
|
+
on-success: k-map-get( $kendo-palette-ash-gray, white ),
|
|
83
|
+
success-on-surface: k-map-get( $kendo-palette-grass-green, 13 ),
|
|
84
|
+
// Warning
|
|
85
|
+
warning-subtle: k-map-get( $kendo-palette-honey-yellow, 4 ),
|
|
86
|
+
warning-subtle-hover: k-map-get( $kendo-palette-honey-yellow, 5 ),
|
|
87
|
+
warning-subtle-active: k-map-get( $kendo-palette-honey-yellow, 6 ),
|
|
88
|
+
warning: k-map-get( $kendo-palette-honey-yellow, 8 ),
|
|
89
|
+
warning-hover: k-map-get( $kendo-palette-honey-yellow, 9 ),
|
|
90
|
+
warning-active: k-map-get( $kendo-palette-honey-yellow, 10 ),
|
|
91
|
+
warning-emphasis: k-map-get( $kendo-palette-honey-yellow, 7 ),
|
|
92
|
+
warning-on-subtle: k-map-get( $kendo-palette-honey-yellow, 15 ),
|
|
93
|
+
on-warning: k-map-get( $kendo-palette-ash-gray, black ),
|
|
94
|
+
warning-on-surface: k-map-get( $kendo-palette-honey-yellow, 8 ),
|
|
95
|
+
// Error
|
|
96
|
+
error-subtle: k-map-get( $kendo-palette-brick-red, 4 ),
|
|
97
|
+
error-subtle-hover: k-map-get( $kendo-palette-brick-red, 5 ),
|
|
98
|
+
error-subtle-active: k-map-get( $kendo-palette-brick-red, 6 ),
|
|
99
|
+
error: k-map-get( $kendo-palette-brick-red, 9 ),
|
|
100
|
+
error-hover: k-map-get( $kendo-palette-brick-red, 10 ),
|
|
101
|
+
error-active: k-map-get( $kendo-palette-brick-red, 11 ),
|
|
102
|
+
error-emphasis: k-map-get( $kendo-palette-brick-red, 7 ),
|
|
103
|
+
error-on-subtle: k-map-get( $kendo-palette-brick-red, 15 ),
|
|
104
|
+
on-error: k-map-get( $kendo-palette-ash-gray, white ),
|
|
105
|
+
error-on-surface: k-map-get( $kendo-palette-brick-red, 13 ),
|
|
106
|
+
// Light
|
|
107
|
+
light-subtle: k-map-get( $kendo-palette-ash-gray, 2 ),
|
|
108
|
+
light-subtle-hover: k-map-get( $kendo-palette-ash-gray, 3 ),
|
|
109
|
+
light-subtle-active: k-map-get( $kendo-palette-ash-gray, 4 ),
|
|
110
|
+
light: k-map-get( $kendo-palette-ash-gray, 3 ),
|
|
111
|
+
light-hover: k-map-get( $kendo-palette-ash-gray, 4 ),
|
|
112
|
+
light-active: k-map-get( $kendo-palette-ash-gray, 5 ),
|
|
113
|
+
light-emphasis: k-map-get( $kendo-palette-ash-gray, 6 ),
|
|
114
|
+
light-on-subtle: k-map-get( $kendo-palette-ash-gray, 15 ),
|
|
115
|
+
on-light: k-map-get( $kendo-palette-ash-gray, black ),
|
|
116
|
+
light-on-surface: k-map-get( $kendo-palette-ash-gray, 3 ),
|
|
117
|
+
// Dark
|
|
118
|
+
dark-subtle: k-map-get( $kendo-palette-ash-gray, 6 ),
|
|
119
|
+
dark-subtle-hover: k-map-get( $kendo-palette-ash-gray, 7 ),
|
|
120
|
+
dark-subtle-active: k-map-get( $kendo-palette-ash-gray, 8 ),
|
|
121
|
+
dark: k-map-get( $kendo-palette-ash-gray, 13 ),
|
|
122
|
+
dark-hover: k-map-get( $kendo-palette-ash-gray, 14 ),
|
|
123
|
+
dark-active: k-map-get( $kendo-palette-ash-gray, 15 ),
|
|
124
|
+
dark-emphasis: k-map-get( $kendo-palette-ash-gray, 10 ),
|
|
125
|
+
dark-on-subtle: k-map-get( $kendo-palette-ash-gray, black ),
|
|
126
|
+
on-dark: k-map-get( $kendo-palette-ash-gray, white ),
|
|
127
|
+
dark-on-surface: k-map-get( $kendo-palette-ash-gray, 14 ),
|
|
128
|
+
// Inverse
|
|
129
|
+
inverse-subtle: k-map-get( $kendo-palette-ash-gray, 6 ),
|
|
130
|
+
inverse-subtle-hover: k-map-get( $kendo-palette-ash-gray, 7 ),
|
|
131
|
+
inverse-subtle-active: k-map-get( $kendo-palette-ash-gray, 8 ),
|
|
132
|
+
inverse: k-map-get( $kendo-palette-ash-gray, 13 ),
|
|
133
|
+
inverse-hover: k-map-get( $kendo-palette-ash-gray, 14 ),
|
|
134
|
+
inverse-active: k-map-get( $kendo-palette-ash-gray, 15 ),
|
|
135
|
+
inverse-emphasis: k-map-get( $kendo-palette-ash-gray, 10 ),
|
|
136
|
+
inverse-on-subtle: k-map-get( $kendo-palette-ash-gray, black ),
|
|
137
|
+
on-inverse: k-map-get( $kendo-palette-ash-gray, white ),
|
|
138
|
+
inverse-on-surface: k-map-get( $kendo-palette-ash-gray, 14 ),
|
|
139
|
+
// Series A
|
|
140
|
+
series-a: k-map-get( $kendo-palette-coral, 9 ),
|
|
141
|
+
series-a-bold: k-map-get( $kendo-palette-coral, 12 ),
|
|
142
|
+
series-a-bolder: k-map-get( $kendo-palette-coral, 14 ),
|
|
143
|
+
series-a-subtle: k-map-get( $kendo-palette-coral, 5 ),
|
|
144
|
+
series-a-subtler: k-map-get( $kendo-palette-coral, 7 ),
|
|
145
|
+
// Series B
|
|
146
|
+
series-b: k-map-get( $kendo-palette-pineapple-yellow, 9 ),
|
|
147
|
+
series-b-bold: k-map-get( $kendo-palette-pineapple-yellow, 12 ),
|
|
148
|
+
series-b-bolder: k-map-get( $kendo-palette-pineapple-yellow, 14 ),
|
|
149
|
+
series-b-subtle: k-map-get( $kendo-palette-pineapple-yellow, 5 ),
|
|
150
|
+
series-b-subtler: k-map-get( $kendo-palette-pineapple-yellow, 7 ),
|
|
151
|
+
// Series C
|
|
152
|
+
series-c: k-map-get( $kendo-palette-apple-green, 9 ),
|
|
153
|
+
series-c-bold: k-map-get( $kendo-palette-apple-green, 12 ),
|
|
154
|
+
series-c-bolder: k-map-get( $kendo-palette-apple-green, 14 ),
|
|
155
|
+
series-c-subtle: k-map-get( $kendo-palette-apple-green, 5 ),
|
|
156
|
+
series-c-subtler: k-map-get( $kendo-palette-apple-green, 7 ),
|
|
157
|
+
// Series D
|
|
158
|
+
series-d: k-map-get( $kendo-palette-pacific-blue, 9 ),
|
|
159
|
+
series-d-bold: k-map-get( $kendo-palette-pacific-blue, 12 ),
|
|
160
|
+
series-d-bolder: k-map-get( $kendo-palette-pacific-blue, 14 ),
|
|
161
|
+
series-d-subtle: k-map-get( $kendo-palette-pacific-blue, 5 ),
|
|
162
|
+
series-d-subtler: k-map-get( $kendo-palette-pacific-blue, 7 ),
|
|
163
|
+
// Series Е
|
|
164
|
+
series-e: k-map-get( $kendo-palette-bright-blue, 9 ),
|
|
165
|
+
series-e-bold: k-map-get( $kendo-palette-bright-blue, 12 ),
|
|
166
|
+
series-e-bolder: k-map-get( $kendo-palette-bright-blue, 14 ),
|
|
167
|
+
series-e-subtle: k-map-get( $kendo-palette-bright-blue, 5 ),
|
|
168
|
+
series-e-subtler: k-map-get( $kendo-palette-bright-blue, 7 ),
|
|
169
|
+
// Series F
|
|
170
|
+
series-f: k-map-get( $kendo-palette-orchid-purple, 9 ),
|
|
171
|
+
series-f-bold: k-map-get( $kendo-palette-orchid-purple, 12 ),
|
|
172
|
+
series-f-bolder: k-map-get( $kendo-palette-orchid-purple, 14 ),
|
|
173
|
+
series-f-subtle: k-map-get( $kendo-palette-orchid-purple, 5 ),
|
|
174
|
+
series-f-subtler: k-map-get( $kendo-palette-orchid-purple, 7 ),
|
|
175
|
+
) !default;
|
|
176
|
+
|
|
177
|
+
/// The global default Colors map.
|
|
178
|
+
/// @group color-system
|
|
179
|
+
$kendo-colors: $_default-colors !default;
|
|
180
|
+
|
|
181
|
+
$kendo-is-dark-theme: false !default;
|
|
182
|
+
|
|
183
|
+
// Theme colors
|
|
184
|
+
/// The color that focuses the user attention.
|
|
185
|
+
/// Used for primary buttons and for elements of primary importance across the theme.
|
|
186
|
+
/// @group color-system
|
|
187
|
+
/// @type Color
|
|
188
|
+
$kendo-color-primary: #f35800 !default;
|
|
189
|
+
$kendo-color-primary-lighter: k-color-tint( $kendo-color-primary, 2 ) !default;
|
|
190
|
+
$kendo-color-primary-darker: k-color-shade( $kendo-color-primary, 2 ) !default;
|
|
191
|
+
|
|
192
|
+
/// The color used along with the primary color denoted by $kendo-color-primary.
|
|
193
|
+
/// Used to provide contrast between the background and foreground colors.
|
|
194
|
+
/// @group color-system
|
|
195
|
+
/// @type Color
|
|
196
|
+
$kendo-color-primary-contrast: k-contrast-legacy( $kendo-color-primary ) !default;
|
|
197
|
+
|
|
198
|
+
/// The secondary color of the theme.
|
|
199
|
+
/// @group color-system
|
|
200
|
+
/// @type Color
|
|
201
|
+
$kendo-color-secondary: #e9e9e9 !default;
|
|
202
|
+
$kendo-color-secondary-lighter: k-color-tint( $kendo-color-secondary, 2 ) !default;
|
|
203
|
+
$kendo-color-secondary-darker: k-color-shade( $kendo-color-secondary, 2 ) !default;
|
|
204
|
+
|
|
205
|
+
/// The color used along with the secondary color denoted by $kendo-color-secondary.
|
|
206
|
+
/// Used to provide contrast between the background and foreground colors.
|
|
207
|
+
/// @group color-system
|
|
208
|
+
/// @type Color
|
|
209
|
+
$kendo-color-secondary-contrast: k-contrast-color( $kendo-color-secondary ) !default;
|
|
210
|
+
|
|
211
|
+
/// The tertiary color of the theme.
|
|
212
|
+
/// @group color-system
|
|
213
|
+
/// @type Color
|
|
214
|
+
$kendo-color-tertiary: #03a9f4 !default;
|
|
215
|
+
$kendo-color-tertiary-lighter: k-color-tint( $kendo-color-tertiary, 2 ) !default;
|
|
216
|
+
$kendo-color-tertiary-darker: k-color-shade( $kendo-color-tertiary, 2 ) !default;
|
|
217
|
+
|
|
218
|
+
/// The color used along with the tertiary color denoted by $kendo-color-tertiary.
|
|
219
|
+
/// Used to provide contrast between the background and foreground colors.
|
|
220
|
+
/// @group color-system
|
|
221
|
+
/// @type Color
|
|
222
|
+
$kendo-color-tertiary-contrast: k-contrast-color( $kendo-color-tertiary ) !default;
|
|
223
|
+
|
|
224
|
+
/// The color for informational messages and states.
|
|
225
|
+
/// @group color-system
|
|
226
|
+
/// @type Color
|
|
227
|
+
$kendo-color-info: #2498bc !default;
|
|
228
|
+
$kendo-color-info-lighter: k-color-tint( $kendo-color-info, 2 ) !default;
|
|
229
|
+
$kendo-color-info-darker: k-color-shade( $kendo-color-info, 2 ) !default;
|
|
230
|
+
|
|
231
|
+
/// The color for success messages and states.
|
|
232
|
+
/// @group color-system
|
|
233
|
+
/// @type Color
|
|
234
|
+
$kendo-color-success: #3ea44e !default;
|
|
235
|
+
$kendo-color-success-lighter: k-color-tint( $kendo-color-success, 2 ) !default;
|
|
236
|
+
$kendo-color-success-darker: k-color-shade( $kendo-color-success, 2 ) !default;
|
|
237
|
+
|
|
238
|
+
/// The color for warning messages and states.
|
|
239
|
+
/// @group color-system
|
|
240
|
+
/// @type Color
|
|
241
|
+
$kendo-color-warning: #ff9800 !default;
|
|
242
|
+
$kendo-color-warning-lighter: k-color-tint( $kendo-color-warning, 2 ) !default;
|
|
243
|
+
$kendo-color-warning-darker: k-color-shade( $kendo-color-warning, 2 ) !default;
|
|
244
|
+
|
|
245
|
+
/// The color for error messages and states.
|
|
246
|
+
/// @group color-system
|
|
247
|
+
/// @type Color
|
|
248
|
+
$kendo-color-error: #d92800 !default;
|
|
249
|
+
$kendo-color-error-lighter: k-color-tint( $kendo-color-error, 2 ) !default;
|
|
250
|
+
$kendo-color-error-darker: k-color-shade( $kendo-color-error, 2 ) !default;
|
|
251
|
+
|
|
252
|
+
/// The dark color of the theme.
|
|
253
|
+
/// @group color-system
|
|
254
|
+
/// @type Color
|
|
255
|
+
$kendo-color-dark: #404040 !default;
|
|
256
|
+
|
|
257
|
+
/// The light color of the theme.
|
|
258
|
+
/// @group color-system
|
|
259
|
+
/// @type Color
|
|
260
|
+
$kendo-color-light: #ebebeb !default;
|
|
261
|
+
|
|
262
|
+
/// Inverse color of the theme. Depending on the theme luminance dark or light, it will be light or dark
|
|
263
|
+
/// @group color-system
|
|
264
|
+
$kendo-color-inverse: if( $kendo-is-dark-theme, $kendo-color-light, $kendo-color-dark ) !default;
|
|
265
|
+
|
|
266
|
+
$kendo-theme-colors: (
|
|
267
|
+
"primary": $kendo-color-primary,
|
|
268
|
+
"secondary": $kendo-color-secondary,
|
|
269
|
+
"tertiary": $kendo-color-tertiary,
|
|
270
|
+
"info": $kendo-color-info,
|
|
271
|
+
"success": $kendo-color-success,
|
|
272
|
+
"warning": $kendo-color-warning,
|
|
273
|
+
"error": $kendo-color-error,
|
|
274
|
+
"dark": $kendo-color-dark,
|
|
275
|
+
"light": $kendo-color-light,
|
|
276
|
+
"inverse": $kendo-color-inverse
|
|
277
|
+
) !default;
|
|
278
|
+
|
|
279
|
+
// Generic styles
|
|
280
|
+
|
|
281
|
+
/// Background color of the body.
|
|
282
|
+
/// @group common
|
|
283
|
+
$kendo-body-bg: $kendo-color-white !default;
|
|
284
|
+
/// Text color of the body.
|
|
285
|
+
/// @group common
|
|
286
|
+
$kendo-body-text: #272727 !default;
|
|
287
|
+
|
|
288
|
+
/// Subtle text color.
|
|
289
|
+
/// @group common
|
|
290
|
+
$kendo-subtle-text: #646464 !default;
|
|
291
|
+
|
|
292
|
+
$kendo-app-bg: $kendo-body-bg !default;
|
|
293
|
+
$kendo-app-text: $kendo-body-text !default;
|
|
294
|
+
$kendo-app-border: k-try-shade( $kendo-app-bg, 2 ) !default;
|
|
295
|
+
|
|
296
|
+
// Link
|
|
297
|
+
/// Text color of the links.
|
|
298
|
+
/// @group common
|
|
299
|
+
$kendo-link-text: $kendo-color-primary !default;
|
|
300
|
+
/// Text color of the links on hover.
|
|
301
|
+
/// @group common
|
|
302
|
+
$kendo-link-hover-text: $kendo-color-primary-darker !default;
|
|
303
|
+
|
|
304
|
+
// Components
|
|
305
|
+
|
|
306
|
+
/// The background of the components' chrome area.
|
|
307
|
+
$kendo-base-bg: #f0f0f0 !default;
|
|
308
|
+
/// The text color of the components' chrome area.
|
|
309
|
+
$kendo-base-text: $kendo-body-text !default;
|
|
310
|
+
/// The border color of the components' chrome area.
|
|
311
|
+
$kendo-base-border: k-try-shade( $kendo-base-bg, 2 ) !default;
|
|
312
|
+
/// The gradient background of the components' chrome area.
|
|
313
|
+
$kendo-base-gradient: rgba( white, .1 ), rgba( white, 0 ) !default;
|
|
314
|
+
|
|
315
|
+
/// Background color of a component.
|
|
316
|
+
/// Note: do not use this variable directly. Instead derive it as `$component-name-bg` e.g. `$kendo-grid-bg: $kendo-component-bg !default;`.
|
|
317
|
+
/// @group component
|
|
318
|
+
$kendo-component-bg: $kendo-body-bg !default;
|
|
319
|
+
/// Text color of a component.
|
|
320
|
+
/// Note: do not use this variable directly. Instead derive it as `$component-name-text` e.g. `$kendo-grid-text: $kendo-component-text !default;`.
|
|
321
|
+
/// @group component
|
|
322
|
+
$kendo-component-text: $kendo-body-text !default;
|
|
323
|
+
/// Border color of a component.
|
|
324
|
+
/// Note: do not use this variable directly. Instead derive it as `$component-name-border` e.g. `$kendo-grid-border: $kendo-component-border !default;`.
|
|
325
|
+
/// @group component
|
|
326
|
+
$kendo-component-border: $kendo-base-border !default;
|
|
327
|
+
|
|
328
|
+
/// The background of hovered items.
|
|
329
|
+
$kendo-hover-bg: k-try-shade( $kendo-base-bg, 1 ) !default;
|
|
330
|
+
/// The text color of hovered items.
|
|
331
|
+
$kendo-hover-text: $kendo-base-text !default;
|
|
332
|
+
/// The border color of hovered items.
|
|
333
|
+
$kendo-hover-border: k-try-shade( $kendo-hover-bg, 2 ) !default;
|
|
334
|
+
/// The gradient background of hovered items.
|
|
335
|
+
$kendo-hover-gradient: $kendo-base-gradient !default;
|
|
336
|
+
|
|
337
|
+
/// The background of selected items.
|
|
338
|
+
$kendo-selected-bg: $kendo-color-primary !default;
|
|
339
|
+
/// The text color of selected items.
|
|
340
|
+
$kendo-selected-text: k-contrast-legacy( $kendo-selected-bg ) !default;
|
|
341
|
+
/// The border color of selected items.
|
|
342
|
+
$kendo-selected-border: k-try-shade( $kendo-selected-bg, 2 ) !default;
|
|
343
|
+
/// The gradient background of selected items.
|
|
344
|
+
$kendo-selected-gradient: $kendo-base-gradient !default;
|
|
345
|
+
|
|
346
|
+
/// The background of selected and hovered items.
|
|
347
|
+
$kendo-selected-hover-bg: k-try-shade( $kendo-selected-bg, 1 ) !default;
|
|
348
|
+
/// The text color of selected and hovered items.
|
|
349
|
+
$kendo-selected-hover-text: k-contrast-legacy( $kendo-selected-hover-bg ) !default;
|
|
350
|
+
/// The border of selected and hovered items.
|
|
351
|
+
$kendo-selected-hover-border: $kendo-selected-border !default;
|
|
352
|
+
/// The gradient of selected and hovered items.
|
|
353
|
+
$kendo-selected-hover-gradient: $kendo-selected-gradient !default;
|
|
354
|
+
|
|
355
|
+
/// Text color of disabled items.
|
|
356
|
+
$kendo-disabled-text: #8d8d8d !default;
|
|
357
|
+
|
|
358
|
+
// Generic styles
|
|
359
|
+
|
|
360
|
+
/// Background color of the component header.
|
|
361
|
+
/// @group component
|
|
362
|
+
$kendo-component-header-bg: $kendo-base-bg !default;
|
|
363
|
+
/// Text color of the component header.
|
|
364
|
+
/// @group component
|
|
365
|
+
$kendo-component-header-text: $kendo-base-text !default;
|
|
366
|
+
/// Border color of the component header.
|
|
367
|
+
/// @group component
|
|
368
|
+
$kendo-component-header-border: $kendo-base-border !default;
|
|
369
|
+
/// Gradient of the component header.
|
|
370
|
+
/// @group component
|
|
371
|
+
$kendo-component-header-gradient: $kendo-base-gradient !default;
|
|
372
|
+
|
|
373
|
+
/// Background color of the invalid items.
|
|
374
|
+
/// @group component
|
|
375
|
+
$kendo-invalid-bg: null !default;
|
|
376
|
+
/// Text color of the invalid items.
|
|
377
|
+
/// @group component
|
|
378
|
+
$kendo-invalid-text: $kendo-color-error !default;
|
|
379
|
+
/// Border color of the invalid items.
|
|
380
|
+
/// @group component
|
|
381
|
+
$kendo-invalid-border: $kendo-color-error !default;
|
|
382
|
+
/// Shadow of the invalid items.
|
|
383
|
+
/// @group component
|
|
384
|
+
$kendo-invalid-shadow: null !default;
|
|
385
|
+
|
|
386
|
+
/// Background color of the valid items.
|
|
387
|
+
/// @group component
|
|
388
|
+
$kendo-valid-bg: null !default;
|
|
389
|
+
/// Text color of the valid items.
|
|
390
|
+
/// @group component
|
|
391
|
+
$kendo-valid-text: $kendo-color-success !default;
|
|
392
|
+
/// Border color of the valid items.
|
|
393
|
+
/// @group component
|
|
394
|
+
$kendo-valid-border: $kendo-color-success !default;
|
|
395
|
+
/// Shadow of the valid items.
|
|
396
|
+
/// @group component
|
|
397
|
+
$kendo-valid-shadow: null !default;
|
|
@@ -5,51 +5,51 @@
|
|
|
5
5
|
|
|
6
6
|
/// The first base series color and its light and dark shades.
|
|
7
7
|
/// @group charts
|
|
8
|
-
$kendo-series-a: #ff6358 !default;
|
|
9
|
-
$kendo-series-a-dark: k-color-mix(
|
|
10
|
-
$kendo-series-a-darker: k-color-mix(
|
|
11
|
-
$kendo-series-a-light: k-color-mix(
|
|
12
|
-
$kendo-series-a-lighter: k-color-mix(
|
|
8
|
+
$kendo-series-a: if($kendo-enable-color-system, k-color( series-a ), #ff6358) !default;
|
|
9
|
+
$kendo-series-a-dark: if($kendo-enable-color-system, k-color( series-a-bold ), k-color-mix(black, $kendo-series-a, 25%)) !default;
|
|
10
|
+
$kendo-series-a-darker: if($kendo-enable-color-system, k-color( series-a-bolder ), k-color-mix(black, $kendo-series-a, 50%)) !default;
|
|
11
|
+
$kendo-series-a-light: if($kendo-enable-color-system, k-color( series-a-subtle ), k-color-mix(white, $kendo-series-a, 25%)) !default;
|
|
12
|
+
$kendo-series-a-lighter: if($kendo-enable-color-system, k-color( series-a-subtler ), k-color-mix(white, $kendo-series-a, 50%)) !default;
|
|
13
13
|
|
|
14
14
|
/// The second base series color and its light and dark shades.
|
|
15
15
|
/// @group charts
|
|
16
|
-
$kendo-series-b: #ffd246 !default;
|
|
17
|
-
$kendo-series-b-dark: k-color-mix(
|
|
18
|
-
$kendo-series-b-darker: k-color-mix(
|
|
19
|
-
$kendo-series-b-light: k-color-mix(
|
|
20
|
-
$kendo-series-b-lighter: k-color-mix(
|
|
16
|
+
$kendo-series-b: if($kendo-enable-color-system, k-color( series-b ), #ffd246) !default;
|
|
17
|
+
$kendo-series-b-dark: if($kendo-enable-color-system, k-color( series-b-bold ), k-color-mix(black, $kendo-series-b, 25%)) !default;
|
|
18
|
+
$kendo-series-b-darker: if($kendo-enable-color-system, k-color( series-b-bolder ), k-color-mix(black, $kendo-series-b, 50%)) !default;
|
|
19
|
+
$kendo-series-b-light: if($kendo-enable-color-system, k-color( series-b-subtle ), k-color-mix(white, $kendo-series-b, 25%)) !default;
|
|
20
|
+
$kendo-series-b-lighter: if($kendo-enable-color-system, k-color( series-b-subtler ), k-color-mix(white, $kendo-series-b, 50%)) !default;
|
|
21
21
|
|
|
22
22
|
/// The third base series color and its light and dark shades.
|
|
23
23
|
/// @group charts
|
|
24
|
-
$kendo-series-c: #78d237 !default;
|
|
25
|
-
$kendo-series-c-dark: k-color-mix(
|
|
26
|
-
$kendo-series-c-darker: k-color-mix(
|
|
27
|
-
$kendo-series-c-light: k-color-mix(
|
|
28
|
-
$kendo-series-c-lighter: k-color-mix(
|
|
24
|
+
$kendo-series-c: if($kendo-enable-color-system, k-color( series-c ), #78d237) !default;
|
|
25
|
+
$kendo-series-c-dark: if($kendo-enable-color-system, k-color( series-c-bold ), k-color-mix(black, $kendo-series-c, 25%)) !default;
|
|
26
|
+
$kendo-series-c-darker: if($kendo-enable-color-system, k-color( series-c-bolder ), k-color-mix(black, $kendo-series-c, 50%)) !default;
|
|
27
|
+
$kendo-series-c-light: if($kendo-enable-color-system, k-color( series-c-subtle ), k-color-mix(white, $kendo-series-c, 25%)) !default;
|
|
28
|
+
$kendo-series-c-lighter: if($kendo-enable-color-system, k-color( series-c-subtler ), k-color-mix(white, $kendo-series-c, 50%)) !default;
|
|
29
29
|
|
|
30
30
|
/// The fourth base series color and its light and dark shades.
|
|
31
31
|
/// @group charts
|
|
32
|
-
$kendo-series-d: #28b4c8 !default;
|
|
33
|
-
$kendo-series-d-dark: k-color-mix(
|
|
34
|
-
$kendo-series-d-darker: k-color-mix(
|
|
35
|
-
$kendo-series-d-light: k-color-mix(
|
|
36
|
-
$kendo-series-d-lighter: k-color-mix(
|
|
32
|
+
$kendo-series-d: if($kendo-enable-color-system, k-color( series-d ), #28b4c8) !default;
|
|
33
|
+
$kendo-series-d-dark: if($kendo-enable-color-system, k-color( series-d-bold ), k-color-mix(black, $kendo-series-d, 25%)) !default;
|
|
34
|
+
$kendo-series-d-darker: if($kendo-enable-color-system, k-color( series-d-bolder ), k-color-mix(black, $kendo-series-d, 50%)) !default;
|
|
35
|
+
$kendo-series-d-light: if($kendo-enable-color-system, k-color( series-d-subtle ), k-color-mix(white, $kendo-series-d, 25%)) !default;
|
|
36
|
+
$kendo-series-d-lighter: if($kendo-enable-color-system, k-color( series-d-subtler ), k-color-mix(white, $kendo-series-d, 50%)) !default;
|
|
37
37
|
|
|
38
38
|
/// The fifth base series color and its light and dark shades.
|
|
39
39
|
/// @group charts
|
|
40
|
-
$kendo-series-e: #2d73f5 !default;
|
|
41
|
-
$kendo-series-e-dark: k-color-mix(
|
|
42
|
-
$kendo-series-e-darker: k-color-mix(
|
|
43
|
-
$kendo-series-e-light: k-color-mix(
|
|
44
|
-
$kendo-series-e-lighter: k-color-mix(
|
|
40
|
+
$kendo-series-e: if($kendo-enable-color-system, k-color( series-e ), #2d73f5) !default;
|
|
41
|
+
$kendo-series-e-dark: if($kendo-enable-color-system, k-color( series-e-bold ), k-color-mix(black, $kendo-series-e, 25%)) !default;
|
|
42
|
+
$kendo-series-e-darker: if($kendo-enable-color-system, k-color( series-e-bolder ), k-color-mix(black, $kendo-series-e, 50%)) !default;
|
|
43
|
+
$kendo-series-e-light: if($kendo-enable-color-system, k-color( series-e-subtle ), k-color-mix(white, $kendo-series-e, 25%)) !default;
|
|
44
|
+
$kendo-series-e-lighter: if($kendo-enable-color-system, k-color( series-e-subtler ), k-color-mix(white, $kendo-series-e, 50%)) !default;
|
|
45
45
|
|
|
46
46
|
/// The sixth base series color and its light and dark shades.
|
|
47
47
|
/// @group charts
|
|
48
|
-
$kendo-series-f: #aa46be !default;
|
|
49
|
-
$kendo-series-f-dark: k-color-mix(
|
|
50
|
-
$kendo-series-f-darker: k-color-mix(
|
|
51
|
-
$kendo-series-f-light: k-color-mix(
|
|
52
|
-
$kendo-series-f-lighter: k-color-mix(
|
|
48
|
+
$kendo-series-f: if($kendo-enable-color-system, k-color( series-f ), #aa46be) !default;
|
|
49
|
+
$kendo-series-f-dark: if($kendo-enable-color-system, k-color( series-f-bold ), k-color-mix(black, $kendo-series-f, 25%)) !default;
|
|
50
|
+
$kendo-series-f-darker: if($kendo-enable-color-system, k-color( series-f-bolder ), k-color-mix(black, $kendo-series-f, 50%)) !default;
|
|
51
|
+
$kendo-series-f-light: if($kendo-enable-color-system, k-color( series-f-subtle ), k-color-mix(white, $kendo-series-f, 25%)) !default;
|
|
52
|
+
$kendo-series-f-lighter: if($kendo-enable-color-system, k-color( series-f-subtler ), k-color-mix(white, $kendo-series-f, 50%)) !default;
|
|
53
53
|
|
|
54
54
|
/// The series colors in order:
|
|
55
55
|
/// base, light, dark, lighter, darker
|
|
@@ -100,13 +100,13 @@ $kendo-chart-pane-title-font-weight: $kendo-font-weight-normal !default;
|
|
|
100
100
|
|
|
101
101
|
/// The color of the Chart grid lines (major).
|
|
102
102
|
/// @group charts
|
|
103
|
-
$kendo-chart-major-lines: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 ) !default;
|
|
103
|
+
$kendo-chart-major-lines: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .08 ) !default;
|
|
104
104
|
|
|
105
105
|
/// The color of the Chart grid lines (minor).
|
|
106
106
|
/// @group charts
|
|
107
|
-
$kendo-chart-minor-lines: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .04 ) !default;
|
|
107
|
+
$kendo-chart-minor-lines: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .04 ) !default;
|
|
108
108
|
|
|
109
|
-
$kendo-chart-inactive: rgba( $kendo-body-text, .5 ) !default;
|
|
109
|
+
$kendo-chart-inactive: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-body-text, .5 )) !default;
|
|
110
110
|
$kendo-chart-area-opacity: .6 !default;
|
|
111
111
|
$kendo-chart-area-inactive-opacity: .1 !default;
|
|
112
112
|
$kendo-chart-line-inactive-opacity: .1 !default;
|
|
@@ -117,20 +117,20 @@ $kendo-chart-bg: $kendo-component-bg !default;
|
|
|
117
117
|
$kendo-chart-text: $kendo-component-text !default;
|
|
118
118
|
$kendo-chart-border: $kendo-component-border !default;
|
|
119
119
|
|
|
120
|
-
$kendo-chart-crosshair-background: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 ) !default;
|
|
120
|
+
$kendo-chart-crosshair-background: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .5 ) !default;
|
|
121
121
|
$kendo-chart-crosshair-shared-tooltip-color: $kendo-chart-text !default;
|
|
122
|
-
$kendo-chart-crosshair-shared-tooltip-background: k-try-shade( $kendo-chart-bg, 1 ) !default;
|
|
123
|
-
$kendo-chart-crosshair-shared-tooltip-border: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08) !default;
|
|
122
|
+
$kendo-chart-crosshair-shared-tooltip-background: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-chart-bg, 1 )) !default;
|
|
123
|
+
$kendo-chart-crosshair-shared-tooltip-border: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .08) !default;
|
|
124
124
|
|
|
125
|
-
$kendo-chart-notes-background: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 ) !default;
|
|
126
|
-
$kendo-chart-notes-border: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 ) !default;
|
|
127
|
-
$kendo-chart-notes-lines: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 ) !default;
|
|
125
|
+
$kendo-chart-notes-background: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .5 ) !default;
|
|
126
|
+
$kendo-chart-notes-border: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .5 ) !default;
|
|
127
|
+
$kendo-chart-notes-lines: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .5 ) !default;
|
|
128
128
|
|
|
129
|
-
$kendo-chart-error-bars-background: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 ) !default;
|
|
129
|
+
$kendo-chart-error-bars-background: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .5 ) !default;
|
|
130
130
|
|
|
131
131
|
$kendo-chart-selection-handle-size: 22px !default;
|
|
132
|
-
$kendo-chart-selection-border-color: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 ) !default;
|
|
133
|
-
$kendo-chart-selection-shadow: inset 0 1px 7px rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .15) !default;
|
|
132
|
+
$kendo-chart-selection-border-color: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .08 ) !default;
|
|
133
|
+
$kendo-chart-selection-shadow: inset 0 1px 7px rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .15) !default;
|
|
134
134
|
|
|
135
135
|
|
|
136
136
|
// TreeMap
|
|
@@ -107,7 +107,7 @@ $kendo-dock-manager-dock-preview-border-style: dashed !default;
|
|
|
107
107
|
$kendo-dock-manager-dock-preview-border-radius: $kendo-border-radius-sm !default;
|
|
108
108
|
/// The background color of the dropping area in the DockManager component.
|
|
109
109
|
/// @group dock-manager
|
|
110
|
-
$kendo-dock-manager-dock-preview-bg: rgba( $kendo-color-primary, .16 ) !default;
|
|
110
|
+
$kendo-dock-manager-dock-preview-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .16 ), rgba( $kendo-color-primary, .16 )) !default;
|
|
111
111
|
/// The border color of the dropping area in the DockManager component.
|
|
112
112
|
/// @group dock-manager
|
|
113
113
|
$kendo-dock-manager-dock-preview-border: $kendo-color-primary !default;
|
|
@@ -38,7 +38,7 @@ $kendo-dropzone-border: $kendo-base-border !default;
|
|
|
38
38
|
$kendo-dropzone-icon-spacing: k-map-get( $kendo-spacing, 6 ) !default;
|
|
39
39
|
/// The text color of the DropZone icon.
|
|
40
40
|
/// @group dropzone
|
|
41
|
-
$kendo-dropzone-icon-text: k-try-tint( $kendo-dropzone-text, 4 ) !default;
|
|
41
|
+
$kendo-dropzone-icon-text: if($kendo-enable-color-system, k-color( subtle ), k-try-tint( $kendo-dropzone-text, 4 )) !default;
|
|
42
42
|
/// The text color of the hovered DropZone icon.
|
|
43
43
|
/// @group dropzone
|
|
44
44
|
$kendo-dropzone-icon-hover-text: $kendo-color-primary !default;
|
|
@@ -29,7 +29,7 @@ $kendo-editor-selected-bg: $kendo-color-primary !default;
|
|
|
29
29
|
|
|
30
30
|
/// The highlighted background color of the Editor.
|
|
31
31
|
/// @group editor
|
|
32
|
-
$kendo-editor-highlighted-bg: k-color-mix( $kendo-color-primary, #ffffff, 20% ) !default;
|
|
32
|
+
$kendo-editor-highlighted-bg: if($kendo-enable-color-system, k-color( primary-subtle ), k-color-mix( $kendo-color-primary, #ffffff, 20% )) !default;
|
|
33
33
|
|
|
34
34
|
/// The horizontal margin of the Editor's export tool icon.
|
|
35
35
|
/// @group editor
|
|
@@ -47,10 +47,9 @@ $kendo-expander-header-bg: transparent !default;
|
|
|
47
47
|
/// The border color of the ExpansionPanel header.
|
|
48
48
|
/// @group expander
|
|
49
49
|
$kendo-expander-header-border: null !default;
|
|
50
|
-
|
|
51
50
|
/// The background color of the hovered ExpansionPanel header.
|
|
52
51
|
/// @group expander
|
|
53
|
-
$kendo-expander-header-hover-bg: k-color-shade( $kendo-expander-bg, 1 ) !default;
|
|
52
|
+
$kendo-expander-header-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-hover ), k-color-shade( $kendo-expander-bg, 1 )) !default;
|
|
54
53
|
/// The background color of the focused ExpansionPanel header.
|
|
55
54
|
/// @group expander
|
|
56
55
|
$kendo-expander-header-focus-bg: null !default;
|
|
@@ -119,7 +119,7 @@ $kendo-file-manager-listview-item-border: null !default;
|
|
|
119
119
|
$kendo-file-manager-listview-item-icon-bg: null !default;
|
|
120
120
|
/// The text color of the FileManager ListView item icon.
|
|
121
121
|
/// @group filemanager
|
|
122
|
-
$kendo-file-manager-listview-item-icon-text: k-try-tint($kendo-file-manager-text, 4) !default;
|
|
122
|
+
$kendo-file-manager-listview-item-icon-text: if($kendo-enable-color-system, k-color( subtle ), k-try-tint($kendo-file-manager-text, 4)) !default;
|
|
123
123
|
/// The border color of the FileManager ListView item icon.
|
|
124
124
|
/// @group filemanager
|
|
125
125
|
$kendo-file-manager-listview-item-icon-border: null !default;
|
|
@@ -176,7 +176,7 @@ $kendo-file-manager-preview-border: null !default;
|
|
|
176
176
|
$kendo-file-manager-preview-icon-bg: null !default;
|
|
177
177
|
/// The text color of the FileManager preview icon.
|
|
178
178
|
/// @group filemanager
|
|
179
|
-
$kendo-file-manager-preview-icon-text: k-try-tint($kendo-file-manager-text, 4) !default;
|
|
179
|
+
$kendo-file-manager-preview-icon-text: if($kendo-enable-color-system, k-color( subtle ), k-try-tint($kendo-file-manager-text, 4)) !default;
|
|
180
180
|
/// The border color of the FileManager preview icon.
|
|
181
181
|
/// @group filemanager
|
|
182
182
|
$kendo-file-manager-preview-icon-border: null !default;
|
|
@@ -151,7 +151,7 @@ $kendo-fieldset-border: null !default;
|
|
|
151
151
|
$kendo-fieldset-legend-bg: null !default;
|
|
152
152
|
/// The text color of the Form legend.
|
|
153
153
|
/// @group form
|
|
154
|
-
$kendo-fieldset-legend-text: k-try-shade( $kendo-body-text, 2 ) !default;
|
|
154
|
+
$kendo-fieldset-legend-text: if($kendo-enable-color-system, k-color( on-app-surface ), k-try-shade( $kendo-body-text, 2 )) !default;
|
|
155
155
|
/// The border color of the Form legend.
|
|
156
156
|
/// @group form
|
|
157
157
|
$kendo-fieldset-legend-border: null !default;
|