@progress/kendo-theme-default 7.1.0-dev.7 → 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.
Files changed (84) hide show
  1. package/dist/all.css +62 -30
  2. package/dist/all.scss +1469 -599
  3. package/dist/meta/sassdoc-data.json +1450 -1504
  4. package/dist/meta/sassdoc-raw-data.json +683 -708
  5. package/dist/meta/variables.json +216 -160
  6. package/lib/swatches/default-blue.json +1 -1
  7. package/lib/swatches/default-dataviz-v4.json +1 -1
  8. package/lib/swatches/default-green.json +1 -1
  9. package/lib/swatches/default-main-dark.json +1 -1
  10. package/lib/swatches/default-main.json +1 -1
  11. package/lib/swatches/default-nordic.json +1 -1
  12. package/lib/swatches/default-ocean-blue-a11y.json +1 -1
  13. package/lib/swatches/default-ocean-blue.json +1 -1
  14. package/lib/swatches/default-orange.json +1 -1
  15. package/lib/swatches/default-purple.json +1 -1
  16. package/lib/swatches/default-turquoise.json +1 -1
  17. package/lib/swatches/default-urban.json +1 -1
  18. package/package.json +4 -4
  19. package/scss/_variables.scss +1 -222
  20. package/scss/adaptive/_variables.scss +1 -1
  21. package/scss/appbar/_theme.scss +1 -1
  22. package/scss/appbar/_variables.scss +2 -2
  23. package/scss/avatar/_theme.scss +1 -1
  24. package/scss/badge/_theme.scss +1 -1
  25. package/scss/bottom-navigation/_theme.scss +5 -5
  26. package/scss/button/_theme.scss +74 -30
  27. package/scss/button/_variables.scss +10 -10
  28. package/scss/calendar/_theme.scss +1 -1
  29. package/scss/card/_layout.scss +4 -0
  30. package/scss/card/_theme.scss +3 -3
  31. package/scss/chat/_variables.scss +1 -1
  32. package/scss/checkbox/_variables.scss +2 -2
  33. package/scss/chip/_theme.scss +24 -22
  34. package/scss/chip/_variables.scss +5 -5
  35. package/scss/core/_index.scss +6 -0
  36. package/scss/core/color-system/_palettes.scss +256 -0
  37. package/scss/core/color-system/_swatch-legacy.scss +62 -0
  38. package/scss/core/color-system/_swatch.scss +397 -0
  39. package/scss/dataviz/_layout.scss +2 -2
  40. package/scss/dataviz/_variables.scss +42 -42
  41. package/scss/dialog/_theme.scss +1 -1
  42. package/scss/dock-manager/_variables.scss +1 -1
  43. package/scss/dropzone/_variables.scss +1 -1
  44. package/scss/editor/_variables.scss +1 -1
  45. package/scss/fab/_theme.scss +15 -15
  46. package/scss/filemanager/_layout.scss +5 -0
  47. package/scss/filemanager/_variables.scss +2 -2
  48. package/scss/forms/_variables.scss +1 -1
  49. package/scss/gantt/_layout.scss +5 -5
  50. package/scss/gantt/_variables.scss +10 -10
  51. package/scss/grid/_layout.scss +10 -0
  52. package/scss/grid/_theme.scss +54 -6
  53. package/scss/grid/_variables.scss +10 -7
  54. package/scss/input/_theme.scss +6 -18
  55. package/scss/input/_variables.scss +8 -8
  56. package/scss/list/_theme.scss +1 -1
  57. package/scss/listview/_variables.scss +1 -1
  58. package/scss/map/_variables.scss +1 -1
  59. package/scss/mediaplayer/_theme.scss +1 -1
  60. package/scss/mediaplayer/_variables.scss +1 -1
  61. package/scss/messagebox/_theme.scss +13 -5
  62. package/scss/notification/_variables.scss +1 -1
  63. package/scss/panelbar/_variables.scss +4 -4
  64. package/scss/pivotgrid/_variables.scss +5 -5
  65. package/scss/progressbar/_theme.scss +1 -1
  66. package/scss/progressbar/_variables.scss +3 -3
  67. package/scss/scheduler/_theme.scss +3 -3
  68. package/scss/scheduler/_variables.scss +4 -4
  69. package/scss/signature/_variables.scss +1 -1
  70. package/scss/skeleton/_variables.scss +2 -5
  71. package/scss/slider/_variables.scss +6 -6
  72. package/scss/splitter/_variables.scss +1 -1
  73. package/scss/spreadsheet/_variables.scss +4 -4
  74. package/scss/stepper/_layout.scss +11 -0
  75. package/scss/stepper/_theme.scss +51 -15
  76. package/scss/stepper/_variables.scss +8 -8
  77. package/scss/switch/_theme.scss +2 -2
  78. package/scss/switch/_variables.scss +4 -4
  79. package/scss/table/_variables.scss +3 -4
  80. package/scss/taskboard/_variables.scss +7 -7
  81. package/scss/timeline/_variables.scss +4 -4
  82. package/scss/tooltip/_variables.scss +4 -4
  83. package/scss/window/_theme.scss +1 -1
  84. package/scss/core/color-system/index.import.scss +0 -1
package/dist/all.scss CHANGED
@@ -712,6 +712,28 @@ $kendo-color-level-step: 8% !default;
712
712
  @return k-color-mix( rgba( $color1, 1 ), rgba( $color2, 1 ), $weight );
713
713
  }
714
714
 
715
+ /// Generates all color variations of a given main color
716
+ /// @param {String} $name - The name of the main color
717
+ /// @param {Color} $level - The color value to be assigned to the main color
718
+ /// @return {Map} - A map with the generated keys and values
719
+ ///
720
+ /// @group color-system
721
+ @function k-generate-colors( $name, $color ) {
722
+ $_variations: (
723
+ #{$name}-subtle: k-try-tint( $color, 80% ),
724
+ #{$name}-subtle-hover: k-try-tint( $color, 65% ),
725
+ #{$name}-subtle-active: k-try-tint( $color, 50% ),
726
+ #{$name}: $color,
727
+ #{$name}-hover: k-try-shade( $color, 0.5 ),
728
+ #{$name}-active: k-try-shade( $color, 1.5 ),
729
+ #{$name}-emphasis: k-try-tint( $color, 4.5 ),
730
+ #{$name}-on-subtle: k-try-shade( $color, 8 ),
731
+ on-#{$name}: k-contrast-legacy( $color ),
732
+ #{$name}-on-surface: $color,
733
+ );
734
+
735
+ @return $_variations;
736
+ }
715
737
  // #endregion
716
738
  // #region @import "./_custom-properties.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/functions/_custom-properties.import.scss
717
739
  @function k-var( $prefix: kendo-, $var: null, $fallback: null ) {
@@ -1731,9 +1753,6 @@ $svg-escaped-characters: (
1731
1753
 
1732
1754
  // #endregion
1733
1755
 
1734
- $kendo-color-white: #ffffff; // stylelint-disable-line scss/dollar-variable-default
1735
- $kendo-color-black: #000000; // stylelint-disable-line scss/dollar-variable-default
1736
-
1737
1756
  // Options
1738
1757
  $kendo-enable-rounded: true !default;
1739
1758
  $kendo-enable-shadows: true !default;
@@ -1872,102 +1891,7 @@ $kendo-zindex-loading: 100 !default;
1872
1891
  // Color settings
1873
1892
  $kendo-is-dark-theme: false !default;
1874
1893
 
1875
- // Theme colors
1876
- /// The color that focuses the user attention.
1877
- /// Used for primary buttons and for elements of primary importance across the theme.
1878
- /// @group color-system
1879
- /// @type Color
1880
- $kendo-color-primary: #ff6358 !default;
1881
- $kendo-color-primary-lighter: k-color-tint( $kendo-color-primary, 2 ) !default;
1882
- $kendo-color-primary-darker: k-color-shade( $kendo-color-primary, 2 ) !default;
1883
-
1884
- /// The color used along with the primary color denoted by $kendo-color-primary.
1885
- /// Used to provide contrast between the background and foreground colors.
1886
- /// @group color-system
1887
- /// @type Color
1888
- $kendo-color-primary-contrast: k-contrast-legacy( $kendo-color-primary ) !default;
1889
-
1890
- /// The secondary color of the theme.
1891
- /// @group color-system
1892
- /// @type Color
1893
- $kendo-color-secondary: #666666 !default;
1894
- $kendo-color-secondary-lighter: k-color-tint( $kendo-color-secondary, 2 ) !default;
1895
- $kendo-color-secondary-darker: k-color-shade( $kendo-color-secondary, 2 ) !default;
1896
-
1897
- /// The color used along with the secondary color denoted by $kendo-color-secondary.
1898
- /// Used to provide contrast between the background and foreground colors.
1899
- /// @group color-system
1900
- /// @type Color
1901
- $kendo-color-secondary-contrast: k-contrast-legacy( $kendo-color-secondary ) !default;
1902
-
1903
- /// The tertiary color of the theme.
1904
- /// @group color-system
1905
- /// @type Color
1906
- $kendo-color-tertiary: #03a9f4 !default;
1907
- $kendo-color-tertiary-lighter: k-color-tint( $kendo-color-tertiary, 2 ) !default;
1908
- $kendo-color-tertiary-darker: k-color-shade( $kendo-color-tertiary, 2 ) !default;
1909
1894
 
1910
- /// The color used along with the tertiary color denoted by $kendo-color-tertiary.
1911
- /// Used to provide contrast between the background and foreground colors.
1912
- /// @group color-system
1913
- /// @type Color
1914
- $kendo-color-tertiary-contrast: k-contrast-legacy( $kendo-color-tertiary ) !default;
1915
-
1916
- /// The color for informational messages and states.
1917
- /// @group color-system
1918
- /// @type Color
1919
- $kendo-color-info: #0058e9 !default;
1920
- $kendo-color-info-lighter: k-color-tint( $kendo-color-info, 2 ) !default;
1921
- $kendo-color-info-darker: k-color-shade( $kendo-color-info, 2 ) !default;
1922
-
1923
- /// The color for success messages and states.
1924
- /// @group color-system
1925
- /// @type Color
1926
- $kendo-color-success: #37b400 !default;
1927
- $kendo-color-success-lighter: k-color-tint( $kendo-color-success, 2 ) !default;
1928
- $kendo-color-success-darker: k-color-shade( $kendo-color-success, 2 ) !default;
1929
-
1930
- /// The color for warning messages and states.
1931
- /// @group color-system
1932
- /// @type Color
1933
- $kendo-color-warning: #ffc000 !default;
1934
- $kendo-color-warning-lighter: k-color-tint( $kendo-color-warning, 2 ) !default;
1935
- $kendo-color-warning-darker: k-color-shade( $kendo-color-warning, 2 ) !default;
1936
-
1937
- /// The color for error messages and states.
1938
- /// @group color-system
1939
- /// @type Color
1940
- $kendo-color-error: #f31700 !default;
1941
- $kendo-color-error-lighter: k-color-tint( $kendo-color-error, 2 ) !default;
1942
- $kendo-color-error-darker: k-color-shade( $kendo-color-error, 2 ) !default;
1943
-
1944
- /// The dark color of the theme.
1945
- /// @group color-system
1946
- /// @type Color
1947
- $kendo-color-dark: #424242 !default;
1948
-
1949
- /// The light color of the theme.
1950
- /// @group color-system
1951
- /// @type Color
1952
- $kendo-color-light: #ebebeb !default;
1953
-
1954
- /// Inverse color of the theme. Depending on the theme luminance dark or light, it will be light or dark
1955
- /// @group color-system
1956
- $kendo-color-inverse: if( $kendo-is-dark-theme, $kendo-color-light, $kendo-color-dark ) !default;
1957
-
1958
-
1959
- $kendo-theme-colors: (
1960
- "primary": $kendo-color-primary,
1961
- "secondary": $kendo-color-secondary,
1962
- "tertiary": $kendo-color-tertiary,
1963
- "info": $kendo-color-info,
1964
- "success": $kendo-color-success,
1965
- "warning": $kendo-color-warning,
1966
- "error": $kendo-color-error,
1967
- "dark": $kendo-color-dark,
1968
- "light": $kendo-color-light,
1969
- "inverse": $kendo-color-inverse
1970
- ) !default;
1971
1895
 
1972
1896
 
1973
1897
  // Typography
@@ -2049,6 +1973,620 @@ $kendo-font-weight-bold: 700 !default;
2049
1973
  $kendo-letter-spacing: null !default;
2050
1974
 
2051
1975
 
1976
+ // TODO: refactor
1977
+ /// Box shadow of focused items.
1978
+ $kendo-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
1979
+
1980
+ /// Transition used across all components.
1981
+ $kendo-transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out, box-shadow .2s ease-in-out !default;
1982
+
1983
+
1984
+ /// Filter used for disabled items.
1985
+ $kendo-disabled-filter: grayscale(.1) !default;
1986
+ /// Opacity used for disabled items.
1987
+ $kendo-disabled-opacity: .6 !default;
1988
+
1989
+ $kendo-disabled-styling: (
1990
+ opacity: $kendo-disabled-opacity,
1991
+ filter: $kendo-disabled-filter
1992
+ ) !default;
1993
+
1994
+
1995
+ // Loading
1996
+ $kendo-loading-opacity: .3 !default;
1997
+ $kendo-zindex-loading: 100 !default;
1998
+
1999
+ // #endregion
2000
+
2001
+ // Color System
2002
+ // #region @import "./color-system/_swatch.scss"; -> scss/core/color-system/_swatch.scss
2003
+ // #region @import "@progress/kendo-theme-core/scss/functions/index.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/functions/index.import.scss
2004
+ // File already imported_once. Skipping output.
2005
+ // #endregion
2006
+ // #region @import "@progress/kendo-theme-core/scss/color-system/_constants.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/color-system/_constants.scss
2007
+ // Color constants
2008
+
2009
+ /// The color white.
2010
+ /// Note: you cannot change this value.
2011
+ /// @type Color
2012
+ /// @group color-system
2013
+ $kendo-color-white: #ffffff; // stylelint-disable-line scss/dollar-variable-default
2014
+
2015
+ /// The color black.
2016
+ /// Note: you cannot change this value.
2017
+ /// @type Color
2018
+ /// @group color-system
2019
+ $kendo-color-black: #000000; // stylelint-disable-line scss/dollar-variable-default
2020
+
2021
+ /// The color transparent.
2022
+ /// Note: you cannot change this value.
2023
+ /// @type Color
2024
+ /// @group color-system
2025
+ $kendo-color-rgba-transparent: rgba(0, 0, 0, 0); // stylelint-disable-line scss/dollar-variable-default
2026
+
2027
+ /// A gradient that goes from transparent to black.
2028
+ /// Note: you cannot change this value.
2029
+ /// @type Gradient
2030
+ /// @group color-system
2031
+ $kendo-gradient-transparent-to-black: rgba(black, 0), black; // stylelint-disable-line scss/dollar-variable-default
2032
+
2033
+ /// A gradient that goes from transparent to white.
2034
+ /// Note: you cannot change this value.
2035
+ /// @type Gradient
2036
+ /// @group color-system
2037
+ $kendo-gradient-transparent-to-white: rgba(white, 0), white; // stylelint-disable-line scss/dollar-variable-default
2038
+
2039
+ /// A gradient that goes from black to transparent.
2040
+ /// Note: you cannot change this value.
2041
+ /// @type Gradient
2042
+ /// @group color-system
2043
+ $kendo-gradient-black-to-transparent: black, rgba(black, 0); // stylelint-disable-line scss/dollar-variable-default
2044
+
2045
+ /// A gradient that goes from white to transparent.
2046
+ /// Note: you cannot change this value.
2047
+ /// @type Gradient
2048
+ /// @group color-system
2049
+ $kendo-gradient-white-to-transparent: white, rgba(white, 0); // stylelint-disable-line scss/dollar-variable-default
2050
+
2051
+ /// A gradient that cycles through the colors of the rainbow.
2052
+ /// Note: you cannot change this value.
2053
+ /// @type Gradient
2054
+ /// @group color-system
2055
+ $kendo-gradient-rainbow: #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000; // stylelint-disable-line scss/dollar-variable-default
2056
+
2057
+ // #endregion
2058
+ // #region @import "./_palettes.scss"; -> scss/core/color-system/_palettes.scss
2059
+ $_default-palette-gray: (
2060
+ white: #ffffff,
2061
+ 1: #fafafa,
2062
+ 2: #f5f5f5,
2063
+ 3: #ebebeb,
2064
+ 4: #e0e0e0,
2065
+ 5: #d6d6d6,
2066
+ 6: #c2c2c2,
2067
+ 7: #adadad,
2068
+ 8: #999999,
2069
+ 9: #808080,
2070
+ 10: #666666,
2071
+ 11: #525252,
2072
+ 12: #3d3d3d,
2073
+ 13: #292929,
2074
+ 14: #1f1f1f,
2075
+ 15: #141414,
2076
+ black: #000000,
2077
+ );
2078
+
2079
+ $_default-palette-coral: (
2080
+ 1: #fff6f5,
2081
+ 2: #ffeceb,
2082
+ 3: #ffdedb,
2083
+ 4: #ffc8c4,
2084
+ 5: #ffb1ac,
2085
+ 6: #ff9d97,
2086
+ 7: #ff8a82,
2087
+ 8: #ff766d,
2088
+ 9: #ff6358,
2089
+ 10: #ea5a51,
2090
+ 11: #d45349,
2091
+ 12: #bf4a42,
2092
+ 13: #a33f38,
2093
+ 14: #80322c,
2094
+ 15: #5c201c,
2095
+ );
2096
+
2097
+ $_default-palette-sky-blue: (
2098
+ 1: #ebf8fe,
2099
+ 2: #d8f1fd,
2100
+ 3: #c5eafc,
2101
+ 4: #a3dffb,
2102
+ 5: #81d4fA,
2103
+ 6: #61c9f9,
2104
+ 7: #42bff7,
2105
+ 8: #22b3f5,
2106
+ 9: #03a9f4,
2107
+ 10: #039ae0,
2108
+ 11: #028ccb,
2109
+ 12: #027fb7,
2110
+ 13: #026999,
2111
+ 14: #02557a,
2112
+ 15: #023f5c,
2113
+ );
2114
+
2115
+ $_default-palette-green: (
2116
+ 1: #edf8e9,
2117
+ 2: #dcf0d3,
2118
+ 3: #cbe9bf,
2119
+ 4: #b7e1a5,
2120
+ 5: #9bda80,
2121
+ 6: #81d15f,
2122
+ 7: #69c740,
2123
+ 8: #4ebe1f,
2124
+ 9: #37b400,
2125
+ 10: #32a500,
2126
+ 11: #2d9600,
2127
+ 12: #298700,
2128
+ 13: #227100,
2129
+ 14: #1c5a00,
2130
+ 15: #1c5a00,
2131
+ );
2132
+
2133
+ $_default-palette-blue: (
2134
+ 1: #e9f0fd,
2135
+ 2: #d2e2fb,
2136
+ 3: #bdd4f8,
2137
+ 4: #9ec0f6,
2138
+ 5: #80acf4,
2139
+ 6: #6098f2,
2140
+ 7: #4082ef,
2141
+ 8: #206eec,
2142
+ 9: #0058e9,
2143
+ 10: #0052d6,
2144
+ 11: #004ac2,
2145
+ 12: #0042af,
2146
+ 13: #003892,
2147
+ 14: #002c75,
2148
+ 15: #002259,
2149
+ );
2150
+
2151
+ $_default-palette-yellow: (
2152
+ 1: #fffae9,
2153
+ 2: #fff4d3,
2154
+ 3: #ffeebd,
2155
+ 4: #ffe79e,
2156
+ 5: #ffe080,
2157
+ 6: #ffd760,
2158
+ 7: #ffd040,
2159
+ 8: #ffc720,
2160
+ 9: #ffc000,
2161
+ 10: #eaaf00,
2162
+ 11: #d49f00,
2163
+ 12: #bf9000,
2164
+ 13: #a07800,
2165
+ 14: #806000,
2166
+ 15: #5e4700,
2167
+ );
2168
+
2169
+ $_default-palette-red: (
2170
+ 1: #feeeed,
2171
+ 2: #fcddda,
2172
+ 3: #fbc8c3,
2173
+ 4: #faaaa2,
2174
+ 5: #f98b80,
2175
+ 6: #f76f60,
2176
+ 7: #f65140,
2177
+ 8: #f43520,
2178
+ 9: #f31700,
2179
+ 10: #df1600,
2180
+ 11: #ca1400,
2181
+ 12: #b61100,
2182
+ 13: #980f00,
2183
+ 14: #7a0c00,
2184
+ 15: #7a0c00,
2185
+ );
2186
+
2187
+ $_default-palette-lemon-yellow: (
2188
+ 1: #fffcf1,
2189
+ 2: #fffae2,
2190
+ 3: #fff7d4,
2191
+ 4: #fff4c2,
2192
+ 5: #fff0b1,
2193
+ 6: #ffed9d,
2194
+ 7: #ffe989,
2195
+ 8: #ffe676,
2196
+ 9: #ffe162,
2197
+ 10: #ead05a,
2198
+ 11: #d4bc52,
2199
+ 12: #bfa94a,
2200
+ 13: #a3913f,
2201
+ 14: #807131,
2202
+ 15: #5c5223,
2203
+ );
2204
+
2205
+ $_default-palette-spring-green: (
2206
+ 1: #effaf3,
2207
+ 2: #e0f6e8,
2208
+ 3: #d1f1dd,
2209
+ 4: #c0edd1,
2210
+ 5: #a6e8c0,
2211
+ 6: #8fe2af,
2212
+ 7: #79dda0,
2213
+ 8: #62d78f,
2214
+ 9: #4cd180,
2215
+ 10: #46c074,
2216
+ 11: #3fae6a,
2217
+ 12: #399d60,
2218
+ 13: #2f834f,
2219
+ 14: #266940,
2220
+ 15: #1c4f30,
2221
+ );
2222
+
2223
+ $_default-palette-royal-blue: (
2224
+ 1: #f0f2ff,
2225
+ 2: #e1e4fe,
2226
+ 3: #d2d7fe,
2227
+ 4: #bbc3fd,
2228
+ 5: #a5affd,
2229
+ 6: #8e9bfc,
2230
+ 7: #7887fb,
2231
+ 8: #6173fb,
2232
+ 9: #4b5ffa,
2233
+ 10: #4558e5,
2234
+ 11: #3f50d1,
2235
+ 12: #3847bc,
2236
+ 13: #2f3c9d,
2237
+ 14: #26307d,
2238
+ 15: #1c245e,
2239
+ );
2240
+
2241
+ $_default-palette-lavender-purple: (
2242
+ 1: #f7f0ff,
2243
+ 2: #f0e0ff,
2244
+ 3: #e8d1ff,
2245
+ 4: #dfbfff,
2246
+ 5: #d6acff,
2247
+ 6: #cc97ff,
2248
+ 7: #c182ff,
2249
+ 8: #b76dff,
2250
+ 9: #ac58ff,
2251
+ 10: #9e51ea,
2252
+ 11: #8f49d4,
2253
+ 12: #8142bf,
2254
+ 13: #6b37a0,
2255
+ 14: #562c80,
2256
+ 15: #3f205e,
2257
+ );
2258
+
2259
+ $_default-palette-flamingo-pink: (
2260
+ 1: #fff0f5,
2261
+ 2: #ffe1eb,
2262
+ 3: #ffd1e1,
2263
+ 4: #ffbfd6,
2264
+ 5: #ffacc9,
2265
+ 6: #ff97bb,
2266
+ 7: #ff82ae,
2267
+ 8: #ff6da0,
2268
+ 9: #ff5892,
2269
+ 10: #ea5186,
2270
+ 11: #d4497a,
2271
+ 12: #bf426e,
2272
+ 13: #a0375c,
2273
+ 14: #802c49,
2274
+ 15: #5e2036,
2275
+ );
2276
+
2277
+
2278
+ // stylelint-disable scss/no-global-function-names
2279
+ $kendo-palette-gray: $_default-palette-gray !default;
2280
+ $kendo-palette-gray: map-merge($_default-palette-gray, $kendo-palette-gray);
2281
+
2282
+ $kendo-palette-coral: $_default-palette-coral !default;
2283
+ $kendo-palette-coral: map-merge($_default-palette-coral, $kendo-palette-coral);
2284
+
2285
+ $kendo-palette-sky-blue: $_default-palette-sky-blue !default;
2286
+ $kendo-palette-sky-blue: map-merge($_default-palette-sky-blue, $kendo-palette-sky-blue);
2287
+
2288
+ $kendo-palette-green: $_default-palette-green !default;
2289
+ $kendo-palette-green: map-merge($_default-palette-green, $kendo-palette-green);
2290
+
2291
+ $kendo-palette-blue: $_default-palette-blue !default;
2292
+ $kendo-palette-blue: map-merge($_default-palette-blue, $kendo-palette-blue);
2293
+
2294
+ $kendo-palette-yellow: $_default-palette-yellow !default;
2295
+ $kendo-palette-yellow: map-merge($_default-palette-yellow, $kendo-palette-yellow);
2296
+
2297
+ $kendo-palette-red: $_default-palette-red !default;
2298
+ $kendo-palette-red: map-merge($_default-palette-red, $kendo-palette-red);
2299
+
2300
+ $kendo-palette-lemon-yellow: $_default-palette-lemon-yellow !default;
2301
+ $kendo-palette-lemon-yellow: map-merge($_default-palette-lemon-yellow, $kendo-palette-lemon-yellow);
2302
+
2303
+ $kendo-palette-spring-green: $_default-palette-spring-green !default;
2304
+ $kendo-palette-spring-green: map-merge($_default-palette-spring-green, $kendo-palette-spring-green);
2305
+
2306
+ $kendo-palette-royal-blue: $_default-palette-royal-blue !default;
2307
+ $kendo-palette-royal-blue: map-merge($_default-palette-royal-blue, $kendo-palette-royal-blue);
2308
+
2309
+ $kendo-palette-lavender-purple: $_default-palette-lavender-purple !default;
2310
+ $kendo-palette-lavender-purple: map-merge($_default-palette-lavender-purple, $kendo-palette-lavender-purple);
2311
+
2312
+ $kendo-palette-flamingo-pink: $_default-palette-flamingo-pink !default;
2313
+ $kendo-palette-flamingo-pink: map-merge($_default-palette-flamingo-pink, $kendo-palette-flamingo-pink);
2314
+ // stylelint-enable scss/no-global-function-names
2315
+ // #endregion
2316
+
2317
+ // Config
2318
+ $kendo-enable-color-system: false !default;
2319
+
2320
+ // Colors
2321
+ $_default-colors: (
2322
+ // Misc
2323
+ app-surface: k-map-get( $kendo-palette-gray, white ),
2324
+ on-app-surface: k-map-get( $kendo-palette-gray, 12 ),
2325
+ subtle: k-map-get( $kendo-palette-gray, 10 ),
2326
+ surface: k-map-get( $kendo-palette-gray, 1 ),
2327
+ surface-alt: k-map-get( $kendo-palette-gray, white ),
2328
+ border: rgba( k-map-get( $kendo-palette-gray, black ), .08),
2329
+ border-alt: rgba( k-map-get( $kendo-palette-gray, black ), .16),
2330
+ // Base
2331
+ base-subtle: k-map-get( $kendo-palette-gray, 3 ),
2332
+ base-subtle-hover: k-map-get( $kendo-palette-gray, 4 ),
2333
+ base-subtle-active: k-map-get( $kendo-palette-gray, 5 ),
2334
+ base: k-map-get( $kendo-palette-gray, 2 ),
2335
+ base-hover: k-map-get( $kendo-palette-gray, 3 ),
2336
+ base-active: k-map-get( $kendo-palette-gray, 5 ),
2337
+ base-emphasis: k-map-get( $kendo-palette-gray, 6 ),
2338
+ base-on-subtle: k-map-get( $kendo-palette-gray, 12 ),
2339
+ on-base: k-map-get( $kendo-palette-gray, 12 ),
2340
+ base-on-surface: k-map-get( $kendo-palette-gray, 12 ),
2341
+ // Primary
2342
+ primary-subtle: k-map-get( $kendo-palette-coral, 2 ),
2343
+ primary-subtle-hover: k-map-get( $kendo-palette-coral, 3 ),
2344
+ primary-subtle-active: k-map-get( $kendo-palette-coral, 4 ),
2345
+ primary: k-map-get( $kendo-palette-coral, 9 ),
2346
+ primary-hover: k-map-get( $kendo-palette-coral, 10 ),
2347
+ primary-active: k-map-get( $kendo-palette-coral, 11 ),
2348
+ primary-emphasis: k-map-get( $kendo-palette-coral, 6 ),
2349
+ primary-on-subtle: k-map-get( $kendo-palette-coral, 15 ),
2350
+ on-primary: k-map-get( $kendo-palette-gray, white ),
2351
+ primary-on-surface: k-map-get( $kendo-palette-coral, 9 ),
2352
+ // Secondary
2353
+ secondary-subtle: k-map-get( $kendo-palette-gray, 1 ),
2354
+ secondary-subtle-hover: k-map-get( $kendo-palette-gray, 2 ),
2355
+ secondary-subtle-active: k-map-get( $kendo-palette-gray, 3 ),
2356
+ secondary: k-map-get( $kendo-palette-gray, 10 ),
2357
+ secondary-hover: k-map-get( $kendo-palette-gray, 11 ),
2358
+ secondary-active: k-map-get( $kendo-palette-gray, 12 ),
2359
+ secondary-emphasis: k-map-get( $kendo-palette-gray, 4 ),
2360
+ secondary-on-subtle: k-map-get( $kendo-palette-gray, 15 ),
2361
+ on-secondary: k-map-get( $kendo-palette-gray, white ),
2362
+ secondary-on-surface: k-map-get( $kendo-palette-gray, 13 ),
2363
+ // Tertiary
2364
+ tertiary-subtle: k-map-get( $kendo-palette-sky-blue, 2 ),
2365
+ tertiary-subtle-hover: k-map-get( $kendo-palette-sky-blue, 3 ),
2366
+ tertiary-subtle-active: k-map-get( $kendo-palette-sky-blue, 4 ),
2367
+ tertiary: k-map-get( $kendo-palette-sky-blue, 9 ),
2368
+ tertiary-hover: k-map-get( $kendo-palette-sky-blue, 10 ),
2369
+ tertiary-active: k-map-get( $kendo-palette-sky-blue, 11 ),
2370
+ tertiary-emphasis: k-map-get( $kendo-palette-sky-blue, 6 ),
2371
+ tertiary-on-subtle: k-map-get( $kendo-palette-sky-blue, 15 ),
2372
+ on-tertiary: k-map-get( $kendo-palette-gray, white ),
2373
+ tertiary-on-surface: k-map-get( $kendo-palette-sky-blue, 11 ),
2374
+ // Info
2375
+ info-subtle: k-map-get( $kendo-palette-blue, 2 ),
2376
+ info-subtle-hover: k-map-get( $kendo-palette-blue, 3 ),
2377
+ info-subtle-active: k-map-get( $kendo-palette-blue, 5 ),
2378
+ info: k-map-get( $kendo-palette-blue, 9 ),
2379
+ info-hover: k-map-get( $kendo-palette-blue, 10 ),
2380
+ info-active: k-map-get( $kendo-palette-blue, 11 ),
2381
+ info-emphasis: k-map-get( $kendo-palette-blue, 6 ),
2382
+ info-on-subtle: k-map-get( $kendo-palette-blue, 15 ),
2383
+ on-info: k-map-get( $kendo-palette-gray, white ),
2384
+ info-on-surface: k-map-get( $kendo-palette-blue, 11 ),
2385
+ // Success
2386
+ success-subtle: k-map-get( $kendo-palette-green, 2 ),
2387
+ success-subtle-hover: k-map-get( $kendo-palette-green, 3 ),
2388
+ success-subtle-active: k-map-get( $kendo-palette-green, 4 ),
2389
+ success: k-map-get( $kendo-palette-green, 9 ),
2390
+ success-hover: k-map-get( $kendo-palette-green, 10 ),
2391
+ success-active: k-map-get( $kendo-palette-green, 11 ),
2392
+ success-emphasis: k-map-get( $kendo-palette-green, 6 ),
2393
+ success-on-subtle: k-map-get( $kendo-palette-green, 15 ),
2394
+ on-success: k-map-get( $kendo-palette-gray, white ),
2395
+ success-on-surface: k-map-get( $kendo-palette-green, 11 ),
2396
+ // Warning
2397
+ warning-subtle: k-map-get( $kendo-palette-yellow, 2 ),
2398
+ warning-subtle-hover: k-map-get( $kendo-palette-yellow, 3 ),
2399
+ warning-subtle-active: k-map-get( $kendo-palette-yellow, 4 ),
2400
+ warning: k-map-get( $kendo-palette-yellow, 9 ),
2401
+ warning-hover: k-map-get( $kendo-palette-yellow, 10 ),
2402
+ warning-active: k-map-get( $kendo-palette-yellow, 11 ),
2403
+ warning-emphasis: k-map-get( $kendo-palette-yellow, 6 ),
2404
+ warning-on-subtle: k-map-get( $kendo-palette-yellow, 15 ),
2405
+ on-warning: k-map-get( $kendo-palette-gray, 12 ),
2406
+ warning-on-surface: k-map-get( $kendo-palette-yellow, 9 ),
2407
+ // Error
2408
+ error-subtle: k-map-get( $kendo-palette-red, 2 ),
2409
+ error-subtle-hover: k-map-get( $kendo-palette-red, 3 ),
2410
+ error-subtle-active: k-map-get( $kendo-palette-red, 5 ),
2411
+ error: k-map-get( $kendo-palette-red, 9 ),
2412
+ error-hover: k-map-get( $kendo-palette-red, 10 ),
2413
+ error-active: k-map-get( $kendo-palette-red, 11 ),
2414
+ error-emphasis: k-map-get( $kendo-palette-red, 6 ),
2415
+ error-on-subtle: k-map-get( $kendo-palette-red, 15 ),
2416
+ on-error: k-map-get( $kendo-palette-gray, white ),
2417
+ error-on-surface: k-map-get( $kendo-palette-red, 11 ),
2418
+ // Light
2419
+ light-subtle: k-map-get( $kendo-palette-gray, 1 ),
2420
+ light-subtle-hover: k-map-get( $kendo-palette-gray, 2 ),
2421
+ light-subtle-active: k-map-get( $kendo-palette-gray, 3 ),
2422
+ light: k-map-get( $kendo-palette-gray, 3 ),
2423
+ light-hover: k-map-get( $kendo-palette-gray, 4 ),
2424
+ light-active: k-map-get( $kendo-palette-gray, 5 ),
2425
+ light-emphasis: k-map-get( $kendo-palette-gray, 5 ),
2426
+ light-on-subtle: k-map-get( $kendo-palette-gray, 15 ),
2427
+ on-light: k-map-get( $kendo-palette-gray, black ),
2428
+ light-on-surface: k-map-get( $kendo-palette-gray, 4 ),
2429
+ // Dark
2430
+ dark-subtle: k-map-get( $kendo-palette-gray, 6 ),
2431
+ dark-subtle-hover: k-map-get( $kendo-palette-gray, 7 ),
2432
+ dark-subtle-active: k-map-get( $kendo-palette-gray, 8 ),
2433
+ dark: k-map-get( $kendo-palette-gray, 12 ),
2434
+ dark-hover: k-map-get( $kendo-palette-gray, 13 ),
2435
+ dark-active: k-map-get( $kendo-palette-gray, 14 ),
2436
+ dark-emphasis: k-map-get( $kendo-palette-gray, 10 ),
2437
+ dark-on-subtle: k-map-get( $kendo-palette-gray, 14 ),
2438
+ on-dark: k-map-get( $kendo-palette-gray, white ),
2439
+ dark-on-surface: k-map-get( $kendo-palette-gray, 15 ),
2440
+ // Inverse
2441
+ inverse-subtle: k-map-get( $kendo-palette-gray, 6 ),
2442
+ inverse-subtle-hover: k-map-get( $kendo-palette-gray, 7 ),
2443
+ inverse-subtle-active: k-map-get( $kendo-palette-gray, 8 ),
2444
+ inverse: k-map-get( $kendo-palette-gray, 12 ),
2445
+ inverse-hover: k-map-get( $kendo-palette-gray, 13 ),
2446
+ inverse-active: k-map-get( $kendo-palette-gray, 14 ),
2447
+ inverse-emphasis: k-map-get( $kendo-palette-gray, 10 ),
2448
+ inverse-on-subtle: k-map-get( $kendo-palette-gray, 14 ),
2449
+ on-inverse: k-map-get( $kendo-palette-gray, white ),
2450
+ inverse-on-surface: k-map-get( $kendo-palette-gray, 15 ),
2451
+ // Series A
2452
+ series-a: k-map-get( $kendo-palette-coral, 9 ),
2453
+ series-a-bold: k-map-get( $kendo-palette-coral, 12 ),
2454
+ series-a-bolder: k-map-get( $kendo-palette-coral, 14 ),
2455
+ series-a-subtle: k-map-get( $kendo-palette-coral, 5 ),
2456
+ series-a-subtler: k-map-get( $kendo-palette-coral, 7 ),
2457
+ // Series B
2458
+ series-b: k-map-get( $kendo-palette-lemon-yellow, 9 ),
2459
+ series-b-bold: k-map-get( $kendo-palette-lemon-yellow, 12 ),
2460
+ series-b-bolder: k-map-get( $kendo-palette-lemon-yellow, 14 ),
2461
+ series-b-subtle: k-map-get( $kendo-palette-lemon-yellow, 5 ),
2462
+ series-b-subtler: k-map-get( $kendo-palette-lemon-yellow, 7 ),
2463
+ // Series C
2464
+ series-c: k-map-get( $kendo-palette-spring-green, 9 ),
2465
+ series-c-bold: k-map-get( $kendo-palette-spring-green, 12 ),
2466
+ series-c-bolder: k-map-get( $kendo-palette-spring-green, 14 ),
2467
+ series-c-subtle: k-map-get( $kendo-palette-spring-green, 5 ),
2468
+ series-c-subtler: k-map-get( $kendo-palette-spring-green, 7 ),
2469
+ // Series D
2470
+ series-d: k-map-get( $kendo-palette-royal-blue, 9 ),
2471
+ series-d-bold: k-map-get( $kendo-palette-royal-blue, 12 ),
2472
+ series-d-bolder: k-map-get( $kendo-palette-royal-blue, 14 ),
2473
+ series-d-subtle: k-map-get( $kendo-palette-royal-blue, 5 ),
2474
+ series-d-subtler: k-map-get( $kendo-palette-royal-blue, 7 ),
2475
+ // Series Е
2476
+ series-e: k-map-get( $kendo-palette-lavender-purple, 9 ),
2477
+ series-e-bold: k-map-get( $kendo-palette-lavender-purple, 12 ),
2478
+ series-e-bolder: k-map-get( $kendo-palette-lavender-purple, 14 ),
2479
+ series-e-subtle: k-map-get( $kendo-palette-lavender-purple, 5 ),
2480
+ series-e-subtler: k-map-get( $kendo-palette-lavender-purple, 7 ),
2481
+ // Series F
2482
+ series-f: k-map-get( $kendo-palette-flamingo-pink, 9 ),
2483
+ series-f-bold: k-map-get( $kendo-palette-flamingo-pink, 12 ),
2484
+ series-f-bolder: k-map-get( $kendo-palette-flamingo-pink, 14 ),
2485
+ series-f-subtle: k-map-get( $kendo-palette-flamingo-pink, 5 ),
2486
+ series-f-subtler: k-map-get( $kendo-palette-flamingo-pink, 7 ),
2487
+ ) !default;
2488
+
2489
+ /// The global default Colors map.
2490
+ /// @group color-system
2491
+ $kendo-colors: $_default-colors !default;
2492
+
2493
+ $kendo-is-dark-theme: false !default;
2494
+
2495
+ // Theme colors
2496
+ /// The color that focuses the user attention.
2497
+ /// Used for primary buttons and for elements of primary importance across the theme.
2498
+ /// @group color-system
2499
+ /// @type Color
2500
+ $kendo-color-primary: #ff6358 !default;
2501
+ $kendo-color-primary-lighter: k-color-tint($kendo-color-primary, 2) !default;
2502
+ $kendo-color-primary-darker: k-color-shade($kendo-color-primary, 2) !default;
2503
+ /// The color used along with the primary color denoted by $kendo-color-primary.
2504
+ /// Used to provide contrast between the background and foreground colors.
2505
+ /// @group color-system
2506
+ /// @type Color
2507
+ $kendo-color-primary-contrast: k-contrast-legacy($kendo-color-primary) !default;
2508
+
2509
+ /// The secondary color of the theme.
2510
+ /// @group color-system
2511
+ /// @type Color
2512
+ $kendo-color-secondary: #666666 !default;
2513
+ $kendo-color-secondary-lighter: k-color-tint($kendo-color-secondary, 2) !default;
2514
+ $kendo-color-secondary-darker: k-color-shade($kendo-color-secondary, 2) !default;
2515
+
2516
+ /// The color used along with the secondary color denoted by $kendo-color-secondary.
2517
+ /// Used to provide contrast between the background and foreground colors.
2518
+ /// @group color-system
2519
+ /// @type Color
2520
+ $kendo-color-secondary-contrast: k-contrast-legacy($kendo-color-secondary) !default;
2521
+
2522
+ /// The tertiary color of the theme.
2523
+ /// @group color-system
2524
+ /// @type Color
2525
+ $kendo-color-tertiary: #03a9f4 !default;
2526
+ $kendo-color-tertiary-lighter: k-color-tint($kendo-color-tertiary, 2) !default;
2527
+ $kendo-color-tertiary-darker: k-color-shade($kendo-color-tertiary, 2) !default;
2528
+
2529
+ /// The color used along with the tertiary color denoted by $kendo-color-tertiary.
2530
+ /// Used to provide contrast between the background and foreground colors.
2531
+ /// @group color-system
2532
+ /// @type Color
2533
+ $kendo-color-tertiary-contrast: k-contrast-legacy($kendo-color-tertiary) !default;
2534
+
2535
+ /// The color for informational messages and states.
2536
+ /// @group color-system
2537
+ /// @type Color
2538
+ $kendo-color-info: #0058e9 !default;
2539
+ $kendo-color-info-lighter: k-color-tint($kendo-color-info, 2) !default;
2540
+ $kendo-color-info-darker: k-color-shade($kendo-color-info, 2) !default;
2541
+
2542
+ /// The color for success messages and states.
2543
+ /// @group color-system
2544
+ /// @type Color
2545
+ $kendo-color-success: #37b400 !default;
2546
+ $kendo-color-success-lighter: k-color-tint($kendo-color-success, 2) !default;
2547
+ $kendo-color-success-darker: k-color-shade($kendo-color-success, 2) !default;
2548
+
2549
+ /// The color for warning messages and states.
2550
+ /// @group color-system
2551
+ /// @type Color
2552
+ $kendo-color-warning: #ffc000 !default;
2553
+ $kendo-color-warning-lighter: k-color-tint($kendo-color-warning, 2) !default;
2554
+ $kendo-color-warning-darker: k-color-shade($kendo-color-warning, 2) !default;
2555
+
2556
+ /// The color for error messages and states.
2557
+ /// @group color-system
2558
+ /// @type Color
2559
+ $kendo-color-error: #f31700 !default;
2560
+ $kendo-color-error-lighter: k-color-tint($kendo-color-error, 2) !default;
2561
+ $kendo-color-error-darker: k-color-shade($kendo-color-error, 2) !default;
2562
+
2563
+ /// The dark color of the theme.
2564
+ /// @group color-system
2565
+ /// @type Color
2566
+ $kendo-color-dark: #424242 !default;
2567
+
2568
+ /// The light color of the theme.
2569
+ /// @group color-system
2570
+ /// @type Color
2571
+ $kendo-color-light: #ebebeb !default;
2572
+
2573
+ /// Inverse color of the theme. Depending on the theme luminance dark or light, it will be light or dark
2574
+ /// @group color-system
2575
+ $kendo-color-inverse: if($kendo-is-dark-theme, $kendo-color-light, $kendo-color-dark) !default;
2576
+
2577
+ $kendo-theme-colors: (
2578
+ "primary": $kendo-color-primary,
2579
+ "secondary": $kendo-color-secondary,
2580
+ "tertiary": $kendo-color-tertiary,
2581
+ "info": $kendo-color-info,
2582
+ "success": $kendo-color-success,
2583
+ "warning": $kendo-color-warning,
2584
+ "error": $kendo-color-error,
2585
+ "dark": $kendo-color-dark,
2586
+ "light": $kendo-color-light,
2587
+ "inverse": $kendo-color-inverse,
2588
+ ); // todo: add !default;
2589
+
2052
2590
  // Generic styles
2053
2591
 
2054
2592
  /// Background color of the body.
@@ -2062,9 +2600,9 @@ $kendo-body-text: #424242 !default;
2062
2600
  /// @group common
2063
2601
  $kendo-subtle-text: #666666 !default;
2064
2602
 
2065
- $kendo-app-bg: k-try-shade( $kendo-body-bg, .25 ) !default;
2603
+ $kendo-app-bg: k-try-shade($kendo-body-bg, 0.25) !default;
2066
2604
  $kendo-app-text: $kendo-body-text !default;
2067
- $kendo-app-border: rgba( $kendo-color-black, .08 ) !default;
2605
+ $kendo-app-border: rgba($kendo-color-black, 0.08) !default;
2068
2606
 
2069
2607
  // Link
2070
2608
  /// Text color of the links.
@@ -2074,7 +2612,6 @@ $kendo-link-text: $kendo-color-primary !default;
2074
2612
  /// @group common
2075
2613
  $kendo-link-hover-text: $kendo-color-primary-darker !default;
2076
2614
 
2077
-
2078
2615
  // Components
2079
2616
 
2080
2617
  // Component
@@ -2089,20 +2626,19 @@ $kendo-component-text: $kendo-body-text !default;
2089
2626
  /// Border color of a component.
2090
2627
  /// Note: do not use this variable directly. Instead derive it as `$component-name-border` e.g. `$kendo-grid-border: $kendo-component-border !default;`.
2091
2628
  /// @group component
2092
- $kendo-component-border: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 ) !default;
2093
-
2629
+ $kendo-component-border: rgba(if($kendo-is-dark-theme, $kendo-color-white, $kendo-color-black), 0.08) !default;
2094
2630
 
2095
2631
  /// The background of the components' chrome area.
2096
2632
  $kendo-base-bg: #fafafa !default;
2097
2633
  /// The text color of the components' chrome area.
2098
2634
  $kendo-base-text: $kendo-body-text !default;
2099
2635
  /// The border color of the components' chrome area.
2100
- $kendo-base-border: rgba( black, .08 ) !default;
2636
+ $kendo-base-border: rgba(black, 0.08) !default;
2101
2637
  /// The gradient background of the components' chrome area.
2102
- $kendo-base-gradient: rgba( black, 0 ), rgba( black, .02 ) !default;
2638
+ $kendo-base-gradient: rgba(black, 0), rgba(black, 0.02) !default;
2103
2639
 
2104
2640
  /// The background of hovered items.
2105
- $kendo-hover-bg: k-try-shade( $kendo-base-bg, .5 ) !default;
2641
+ $kendo-hover-bg: k-try-shade($kendo-base-bg, 0.5) !default;
2106
2642
  /// The text color of hovered items.
2107
2643
  $kendo-hover-text: $kendo-base-text !default;
2108
2644
  /// The border color of hovered items.
@@ -2113,14 +2649,14 @@ $kendo-hover-gradient: $kendo-base-gradient !default;
2113
2649
  /// The background of selected items.
2114
2650
  $kendo-selected-bg: $kendo-color-primary !default;
2115
2651
  /// The text color of selected items.
2116
- $kendo-selected-text: k-contrast-legacy( $kendo-selected-bg ) !default;
2652
+ $kendo-selected-text: k-contrast-legacy($kendo-selected-bg) !default;
2117
2653
  /// The border color of selected items.
2118
2654
  $kendo-selected-border: $kendo-base-border !default;
2119
2655
  /// The gradient background of selected items.
2120
2656
  $kendo-selected-gradient: $kendo-base-gradient !default;
2121
2657
 
2122
2658
  /// The background of selected and hovered items.
2123
- $kendo-selected-hover-bg: k-try-shade( $kendo-selected-bg, .5 ) !default;
2659
+ $kendo-selected-hover-bg: k-try-shade($kendo-selected-bg, 0.5) !default;
2124
2660
  /// The text color of selected and hovered items.
2125
2661
  $kendo-selected-hover-text: $kendo-selected-text !default;
2126
2662
  /// The border of selected and hovered items.
@@ -2128,26 +2664,8 @@ $kendo-selected-hover-border: $kendo-base-border !default;
2128
2664
  /// The gradient of selected and hovered items.
2129
2665
  $kendo-selected-hover-gradient: $kendo-base-gradient !default;
2130
2666
 
2131
- // TODO: refactor
2132
- /// Box shadow of focused items.
2133
- $kendo-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
2134
-
2135
- /// Transition used across all components.
2136
- $kendo-transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out, box-shadow .2s ease-in-out !default;
2137
-
2138
-
2139
2667
  /// Text color of disabled items.
2140
2668
  $kendo-disabled-text: #8f8f8f !default;
2141
- /// Filter used for disabled items.
2142
- $kendo-disabled-filter: grayscale(.1) !default;
2143
- /// Opacity used for disabled items.
2144
- $kendo-disabled-opacity: .6 !default;
2145
-
2146
- $kendo-disabled-styling: (
2147
- opacity: $kendo-disabled-opacity,
2148
- filter: $kendo-disabled-filter
2149
- ) !default;
2150
-
2151
2669
 
2152
2670
  // Generic styles
2153
2671
 
@@ -2164,7 +2682,6 @@ $kendo-component-header-border: $kendo-base-border !default;
2164
2682
  /// @group component
2165
2683
  $kendo-component-header-gradient: null !default;
2166
2684
 
2167
-
2168
2685
  /// Background color of the invalid items.
2169
2686
  /// @group component
2170
2687
  $kendo-invalid-bg: null !default;
@@ -2191,10 +2708,6 @@ $kendo-valid-border: $kendo-color-success !default;
2191
2708
  /// @group component
2192
2709
  $kendo-valid-shadow: null !default;
2193
2710
 
2194
- // Loading
2195
- $kendo-loading-opacity: .3 !default;
2196
- $kendo-zindex-loading: 100 !default;
2197
-
2198
2711
  // #endregion
2199
2712
 
2200
2713
  // #region @import "@progress/kendo-theme-core/scss/index.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/index.import.scss
@@ -3282,6 +3795,31 @@ $kendo-palettes: (
3282
3795
  @return var( --#{$prefix}#{$name}, #{$fallback} );
3283
3796
  }
3284
3797
 
3798
+ @function k-get-swatch-color( $name, $color ) {
3799
+ $map: (
3800
+ app-surface: k-color( app-surface ),
3801
+ on-app-surface: k-color( on-app-surface ),
3802
+ subtle: k-color( subtle ),
3803
+ surface: k-color( surface ),
3804
+ surface-alt: k-color( surface-alt ),
3805
+ border: k-color( border ),
3806
+ border-alt: k-color( border-alt ),
3807
+ color-subtle: k-color( #{$color}-subtle ),
3808
+ color-subtle-hover: k-color( #{$color}-subtle-hover ),
3809
+ color-subtle-active: k-color( #{$color}-subtle-active ),
3810
+ color: k-color( #{$color} ),
3811
+ color-hover: k-color( #{$color}-hover ),
3812
+ color-active: k-color( #{$color}-active ),
3813
+ color-emphasis: k-color( #{$color}-emphasis ),
3814
+ color-on-subtle: k-color( #{$color}-on-subtle ),
3815
+ on-color: k-color( on-#{$color} ),
3816
+ color-on-surface: k-color( #{$color}-on-surface ),
3817
+ on-color-disabled: rgba( k-color( on-#{$color}, true ), .46)
3818
+ );
3819
+
3820
+ @return if( k-map-has-key( $map, $name ), k-map-get( $map, $name ), $name );
3821
+ };
3822
+
3285
3823
  @function k-generate-theme-variation( $theme-color, $source-palette-name, $mapping ) {
3286
3824
  $temp: ( );
3287
3825
 
@@ -3293,9 +3831,9 @@ $kendo-palettes: (
3293
3831
  $border-prop: k-list-nth($indices, 3);
3294
3832
 
3295
3833
  // Take value from the palette only if it is a number
3296
- $bg: if( k-meta-type-of($bg-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$bg-prop} ), $bg-prop );
3297
- $text: if( k-meta-type-of($text-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$text-prop} ), $text-prop );
3298
- $border: if( k-meta-type-of($border-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$border-prop} ), $border-prop );
3834
+ $bg: if($kendo-enable-color-system, k-get-swatch-color( $bg-prop, $source-palette-name ), if( k-meta-type-of($bg-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$bg-prop} ), $bg-prop ));
3835
+ $text: if($kendo-enable-color-system, k-get-swatch-color( $text-prop, $source-palette-name ), if( k-meta-type-of($text-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$text-prop} ), $text-prop ));
3836
+ $border: if($kendo-enable-color-system, k-get-swatch-color( $border-prop, $source-palette-name ), if( k-meta-type-of($border-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$border-prop} ), $border-prop ));
3299
3837
 
3300
3838
 
3301
3839
  $temp: k-map-deep-merge( $temp, (
@@ -3307,7 +3845,7 @@ $kendo-palettes: (
3307
3845
  // Add outline if provided in the map
3308
3846
  @if ( k-list-length($indices) > 3 ) {
3309
3847
  $outline-prop: k-list-nth($indices, 4);
3310
- $outline: if( k-meta-type-of($outline-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$outline-prop} ), $outline-prop );
3848
+ $outline: if($kendo-enable-color-system, k-get-swatch-color( $outline-prop, $source-palette-name ), if( k-meta-type-of($outline-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$outline-prop} ), $outline-prop ));
3311
3849
 
3312
3850
  $temp: k-map-deep-merge( $temp, (
3313
3851
  #{$prefix}outline: $outline
@@ -3334,6 +3872,18 @@ $kendo-palettes: (
3334
3872
  @return $result;
3335
3873
  }
3336
3874
 
3875
+ @function k-hex-to-rgb( $color ) {
3876
+ @if($color) {
3877
+ $r: k-color-red($color);
3878
+ $g: k-color-green($color);
3879
+ $b: k-color-blue($color);
3880
+
3881
+ @return $r, $g, $b;
3882
+ } @else {
3883
+ @return null;
3884
+ }
3885
+ }
3886
+
3337
3887
  // #endregion
3338
3888
  // #region @import "./_mixins.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/color-system/_mixins.import.scss
3339
3889
  @mixin k-css-vars($map) {
@@ -3345,204 +3895,294 @@ $kendo-palettes: (
3345
3895
  }
3346
3896
 
3347
3897
  // #endregion
3348
- // #region @import "./_variables.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/color-system/_variables.scss
3349
- // Color constants
3350
-
3351
- /// The color white.
3352
- /// Note: you cannot change this value.
3353
- /// @type Color
3354
- /// @group color-system
3355
- $kendo-color-white: #ffffff; // stylelint-disable-line scss/dollar-variable-default
3898
+ // #region @import "./_swatch.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/color-system/_swatch.scss
3899
+ // #region @import "./_functions.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/color-system/_functions.import.scss
3900
+ // File already imported_once. Skipping output.
3901
+ // #endregion
3356
3902
 
3357
- /// The color black.
3358
- /// Note: you cannot change this value.
3359
- /// @type Color
3360
- /// @group color-system
3361
- $kendo-color-black: #000000; // stylelint-disable-line scss/dollar-variable-default
3903
+ // Config
3904
+ $kendo-enable-color-system: false !default;
3362
3905
 
3363
- /// The color transparent.
3364
- /// Note: you cannot change this value.
3365
- /// @type Color
3366
- /// @group color-system
3367
- $kendo-color-rgba-transparent: rgba( 0, 0, 0, 0 ); // stylelint-disable-line scss/dollar-variable-default
3906
+ // Colors
3907
+ $_default-colors: (
3908
+ // Misc
3909
+ app-surface: null,
3910
+ on-app-surface: null,
3911
+ subtle: null,
3912
+ surface: null,
3913
+ surface-alt: null,
3914
+ border: null,
3915
+ border-alt: null,
3916
+ // Base
3917
+ base-subtle: null,
3918
+ base-subtle-hover: null,
3919
+ base-subtle-active: null,
3920
+ base: null,
3921
+ base-hover: null,
3922
+ base-active: null,
3923
+ base-emphasis: null,
3924
+ base-on-subtle: null,
3925
+ on-base: null,
3926
+ base-on-surface: null,
3927
+ // Primary
3928
+ primary-subtle: null,
3929
+ primary-subtle-hover: null,
3930
+ primary-subtle-active: null,
3931
+ primary: null,
3932
+ primary-hover: null,
3933
+ primary-active: null,
3934
+ primary-emphasis: null,
3935
+ primary-on-subtle: null,
3936
+ on-primary: null,
3937
+ primary-on-surface: null,
3938
+ // Secondary
3939
+ secondary-subtle: null,
3940
+ secondary-subtle-hover: null,
3941
+ secondary-subtle-active: null,
3942
+ secondary: null,
3943
+ secondary-hover: null,
3944
+ secondary-active: null,
3945
+ secondary-emphasis: null,
3946
+ secondary-on-subtle: null,
3947
+ on-secondary: null,
3948
+ secondary-on-surface: null,
3949
+ // Tertiary
3950
+ tertiary-subtle: null,
3951
+ tertiary-subtle-hover: null,
3952
+ tertiary-subtle-active: null,
3953
+ tertiary: null,
3954
+ tertiary-hover: null,
3955
+ tertiary-active: null,
3956
+ tertiary-emphasis: null,
3957
+ tertiary-on-subtle: null,
3958
+ on-tertiary: null,
3959
+ tertiary-on-surface: null,
3960
+ // Info
3961
+ info-subtle: null,
3962
+ info-subtle-hover: null,
3963
+ info-subtle-active: null,
3964
+ info: null,
3965
+ info-hover: null,
3966
+ info-active: null,
3967
+ info-emphasis: null,
3968
+ info-on-subtle: null,
3969
+ on-info: null,
3970
+ info-on-surface: null,
3971
+ // Success
3972
+ success-subtle: null,
3973
+ success-subtle-hover: null,
3974
+ success-subtle-active: null,
3975
+ success: null,
3976
+ success-hover: null,
3977
+ success-active: null,
3978
+ success-emphasis: null,
3979
+ success-on-subtle: null,
3980
+ on-success: null,
3981
+ success-on-surface: null,
3982
+ // Warning
3983
+ warning-subtle: null,
3984
+ warning-subtle-hover: null,
3985
+ warning-subtle-active: null,
3986
+ warning: null,
3987
+ warning-hover: null,
3988
+ warning-active: null,
3989
+ warning-emphasis: null,
3990
+ warning-on-subtle: null,
3991
+ on-warning: null,
3992
+ warning-on-surface: null,
3993
+ // Error
3994
+ error-subtle: null,
3995
+ error-subtle-hover: null,
3996
+ error-subtle-active: null,
3997
+ error: null,
3998
+ error-hover: null,
3999
+ error-active: null,
4000
+ error-emphasis: null,
4001
+ error-on-subtle: null,
4002
+ on-error: null,
4003
+ error-on-surface: null,
4004
+ // Light
4005
+ light-subtle: null,
4006
+ light-subtle-hover: null,
4007
+ light-subtle-active: null,
4008
+ light: null,
4009
+ light-hover: null,
4010
+ light-active: null,
4011
+ light-emphasis: null,
4012
+ light-on-subtle: null,
4013
+ on-light: null,
4014
+ light-on-surface: null,
4015
+ // Dark
4016
+ dark-subtle: null,
4017
+ dark-subtle-hover: null,
4018
+ dark-subtle-active: null,
4019
+ dark: null,
4020
+ dark-hover: null,
4021
+ dark-active: null,
4022
+ dark-emphasis: null,
4023
+ dark-on-subtle: null,
4024
+ on-dark: null,
4025
+ dark-on-surface: null,
4026
+ // Inverse
4027
+ inverse-subtle: null,
4028
+ inverse-subtle-hover: null,
4029
+ inverse-subtle-active: null,
4030
+ inverse: null,
4031
+ inverse-hover: null,
4032
+ inverse-active: null,
4033
+ inverse-emphasis: null,
4034
+ inverse-on-subtle: null,
4035
+ on-inverse: null,
4036
+ inverse-on-surface: null,
4037
+ // Series A
4038
+ series-a: null,
4039
+ series-a-bold: null,
4040
+ series-a-bolder: null,
4041
+ series-a-subtle: null,
4042
+ series-a-subtler: null,
4043
+ // Series B
4044
+ series-b: null,
4045
+ series-b-bold: null,
4046
+ series-b-bolder: null,
4047
+ series-b-subtle: null,
4048
+ series-b-subtler: null,
4049
+ // Series C
4050
+ series-c: null,
4051
+ series-c-bold: null,
4052
+ series-c-bolder: null,
4053
+ series-c-subtle: null,
4054
+ series-c-subtler: null,
4055
+ // Series D
4056
+ series-d: null,
4057
+ series-d-bold: null,
4058
+ series-d-bolder: null,
4059
+ series-d-subtle: null,
4060
+ series-d-subtler: null,
4061
+ // Series Е
4062
+ series-e: null,
4063
+ series-e-bold: null,
4064
+ series-e-bolder: null,
4065
+ series-e-subtle: null,
4066
+ series-e-subtler: null,
4067
+ // Series F
4068
+ series-f: null,
4069
+ series-f-bold: null,
4070
+ series-f-bolder: null,
4071
+ series-f-subtle: null,
4072
+ series-f-subtler: null,
4073
+ ) !default;
3368
4074
 
3369
- /// A gradient that goes from transparent to black.
3370
- /// Note: you cannot change this value.
3371
- /// @type Gradient
4075
+ /// The global default Colors map.
3372
4076
  /// @group color-system
3373
- $kendo-gradient-transparent-to-black: rgba( black, 0 ), black; // stylelint-disable-line scss/dollar-variable-default
4077
+ $kendo-colors: $_default-colors !default;
4078
+ $kendo-colors: k-map-merge($_default-colors, $kendo-colors);
3374
4079
 
3375
- /// A gradient that goes from transparent to white.
3376
- /// Note: you cannot change this value.
3377
- /// @type Gradient
3378
- /// @group color-system
3379
- $kendo-gradient-transparent-to-white: rgba( white, 0 ), white; // stylelint-disable-line scss/dollar-variable-default
4080
+ @function k-color($key, $rgb: false) {
4081
+ $_color: k-map-get($kendo-colors, $key);
3380
4082
 
3381
- /// A gradient that goes from black to transparent.
3382
- /// Note: you cannot change this value.
3383
- /// @type Gradient
3384
- /// @group color-system
3385
- $kendo-gradient-black-to-transparent: black, rgba( black, 0 ); // stylelint-disable-line scss/dollar-variable-default
3386
-
3387
- /// A gradient that goes from white to transparent.
3388
- /// Note: you cannot change this value.
3389
- /// @type Gradient
3390
- /// @group color-system
3391
- $kendo-gradient-white-to-transparent: white, rgba( white, 0 ); // stylelint-disable-line scss/dollar-variable-default
4083
+ @if ($_color) {
4084
+ @if ($rgb) {
4085
+ @return var(--kendo-color-#{$key}-rgb, k-hex-to-rgb($_color));
4086
+ } @else {
4087
+ @return var(--kendo-color-#{$key}, $_color);
4088
+ }
4089
+ } @else {
4090
+ @error "Color Variable \`#{$key}\` does not exists in the color collection.";
4091
+ }
4092
+ }
3392
4093
 
3393
- /// A gradient that cycles through the colors of the rainbow.
3394
- /// Note: you cannot change this value.
3395
- /// @type Gradient
3396
- /// @group color-system
3397
- $kendo-gradient-rainbow: #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000; // stylelint-disable-line scss/dollar-variable-default
4094
+ @mixin color-system--styles() {
4095
+ :root {
4096
+ @each $key, $value in $kendo-colors {
4097
+ @if($value) {
4098
+ --kendo-color-#{$key}: #{$value};
4099
+ --kendo-color-#{$key}-rgb: #{k-hex-to-rgb($value)};
4100
+ }
4101
+ }
4102
+ }
4103
+ }
3398
4104
 
4105
+ // #endregion
4106
+ // #region @import "./_constants.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/color-system/_constants.scss
4107
+ // File already imported_once. Skipping output.
4108
+ // #endregion
4109
+ // #region @import "./_swatch-legacy.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/color-system/_swatch-legacy.scss
4110
+ $kendo-is-dark-theme: false !default;
3399
4111
 
3400
4112
  // Root styles
3401
- $kendo-body-bg: $kendo-color-white !default;
3402
- $kendo-body-text: k-get-theme-color-var( neutral-160 ) !default;
4113
+ $kendo-body-bg: null !default;
4114
+ $kendo-body-text: null !default;
3403
4115
 
3404
4116
  // Component styles
3405
- $kendo-component-bg: $kendo-body-bg !default;
3406
- $kendo-component-text: $kendo-body-text !default;
3407
- $kendo-component-border: k-get-theme-color-var( neutral-30 ) !default;
4117
+ $kendo-component-bg: null !default;
4118
+ $kendo-component-text: null !default;
4119
+ $kendo-component-border: null !default;
3408
4120
 
3409
4121
  // States styles
3410
- $kendo-hover-bg: k-get-theme-color-var( neutral-20 ) !default;
3411
- $kendo-hover-text: k-get-theme-color-var( neutral-190 ) !default;
3412
- $kendo-hover-border: k-get-theme-color-var( neutral-20 ) !default;
4122
+ $kendo-hover-bg: null !default;
4123
+ $kendo-hover-text: null !default;
4124
+ $kendo-hover-border: null !default;
3413
4125
 
3414
- $kendo-selected-bg: k-get-theme-color-var( neutral-30 ) !default;
3415
- $kendo-selected-text: k-get-theme-color-var( neutral-160 ) !default;
3416
- $kendo-selected-border: k-get-theme-color-var( neutral-130 ) !default;
4126
+ $kendo-selected-bg: null !default;
4127
+ $kendo-selected-text: null !default;
4128
+ $kendo-selected-border: null !default;
3417
4129
 
3418
- $kendo-selected-hover-bg: k-get-theme-color-var( neutral-40 ) !default;
3419
- $kendo-selected-hover-text: k-get-theme-color-var( neutral-190 ) !default;
3420
- $kendo-selected-hover-border: k-get-theme-color-var( neutral-130 ) !default;
4130
+ $kendo-selected-hover-bg: null !default;
4131
+ $kendo-selected-hover-text: null !default;
4132
+ $kendo-selected-hover-border: null !default;
3421
4133
 
3422
- $kendo-focus-outline: k-get-theme-color-var( neutral-130 ) !default;
4134
+ $kendo-focus-outline: null !default;
3423
4135
 
3424
- $kendo-subtle-text: k-get-theme-color-var( neutral-130 ) !default;
4136
+ $kendo-subtle-text: null !default;
3425
4137
 
3426
4138
  // Link
3427
- $kendo-link-text: k-get-theme-color-var( primary-100 ) !default;
3428
- $kendo-link-hover-text: k-get-theme-color-var( primary-120 ) !default;
4139
+ $kendo-link-text: null !default;
4140
+ $kendo-link-hover-text: null !default;
3429
4141
 
3430
4142
  // Validator
3431
- $kendo-invalid-bg: initial !default;
3432
- $kendo-invalid-text: k-get-theme-color-var( error-190 ) !default;
3433
- $kendo-invalid-border: k-get-theme-color-var( error-190 ) !default;
4143
+ $kendo-invalid-bg: null !default;
4144
+ $kendo-invalid-text: null !default;
4145
+ $kendo-invalid-border: null !default;
3434
4146
  $kendo-invalid-shadow: null !default;
3435
4147
 
3436
- $kendo-valid-bg: initial !default;
3437
- $kendo-valid-text: k-get-theme-color-var( success-190 ) !default;
3438
- $kendo-valid-border: k-get-theme-color-var( success-190 ) !default;
3439
- $kendo-valid-shadow: null !default;
3440
-
3441
4148
  // Disabled Styling
3442
- $kendo-disabled-bg: k-get-theme-color-var( neutral-20 ) !default;
3443
- $kendo-disabled-text: k-get-theme-color-var( neutral-90 ) !default;
3444
- $kendo-disabled-border: transparent !default;
4149
+ $kendo-disabled-bg: null !default;
4150
+ $kendo-disabled-text: null !default;
4151
+ $kendo-disabled-border: null !default;
3445
4152
 
3446
4153
  // Loading
3447
- $kendo-loading-bg: $kendo-component-bg !default;
3448
- $kendo-loading-text: currentColor !default;
3449
-
3450
-
3451
- // Theme colors
3452
- $kendo-theme-colors: (
3453
- primary: (
3454
- text: k-get-theme-color-var( primary-130 ),
3455
- bg: k-get-theme-color-var( primary-20 ),
3456
- border: k-get-theme-color-var( primary-20 )
3457
- ),
3458
- info: (
3459
- text: k-get-theme-color-var( info-190 ),
3460
- bg: k-get-theme-color-var( info-20 ),
3461
- border: k-get-theme-color-var( info-20 )
3462
- ),
3463
- success: (
3464
- text: k-get-theme-color-var( success-190 ),
3465
- bg: k-get-theme-color-var( success-20 ),
3466
- border: k-get-theme-color-var( success-20 )
3467
- ),
3468
- warning: (
3469
- text: k-get-theme-color-var( neutral-160 ),
3470
- bg: k-get-theme-color-var( warning-20 ),
3471
- border: k-get-theme-color-var( warning-20 )
3472
- ),
3473
- error: (
3474
- text: k-get-theme-color-var( error-190 ),
3475
- bg: k-get-theme-color-var( error-20 ),
3476
- border: k-get-theme-color-var( error-20 )
3477
- )
3478
- ) !default;
4154
+ $kendo-loading-bg: null !default;
4155
+ $kendo-loading-text: null !default;
3479
4156
 
4157
+ $kendo-palettes: () !default;
4158
+ $kendo-theme-colors: () !default;
3480
4159
 
3481
4160
  @mixin color-system-styles() {
3482
4161
  :root {
3483
- @include k-css-vars( $kendo-palettes );
3484
- @include k-css-vars( $kendo-theme-colors );
3485
-
3486
- --kendo-body-bg: #{$kendo-body-bg};
3487
- --kendo-body-text: #{$kendo-body-text};
3488
-
3489
- --kendo-component-bg: #{$kendo-component-bg};
3490
- --kendo-component-text: #{$kendo-component-text};
3491
- --kendo-component-border: #{$kendo-component-border};
3492
-
3493
- --kendo-link-text: #{$kendo-link-text};
3494
- --kendo-link-hover-text: #{$kendo-link-hover-text};
3495
-
3496
- --kendo-disabled-bg: #{$kendo-disabled-bg};
3497
- --kendo-disabled-text: #{$kendo-disabled-text};
3498
- --kendo-disabled-border: #{$kendo-disabled-border};
3499
-
3500
- --kendo-hover-bg: #{$kendo-hover-bg};
3501
- --kendo-hover-text: #{$kendo-hover-text};
3502
- --kendo-hover-border: #{$kendo-hover-border};
3503
-
3504
- --kendo-selected-bg: #{$kendo-selected-bg};
3505
- --kendo-selected-text: #{$kendo-selected-text};
3506
- --kendo-selected-border: #{$kendo-selected-border};
3507
-
3508
- --kendo-selected-hover-bg: #{$kendo-selected-hover-bg};
3509
- --kendo-selected-hover-text: #{$kendo-selected-hover-text};
3510
- --kendo-selected-hover-border: #{$kendo-selected-hover-border};
3511
-
3512
- --kendo-focus-outline: #{$kendo-focus-outline};
3513
-
3514
- --kendo-subtle-text: #{$kendo-subtle-text};
4162
+ @include k-css-vars($kendo-palettes);
4163
+ @include k-css-vars($kendo-theme-colors);
3515
4164
 
3516
- --kendo-invalid-bg: #{$kendo-invalid-bg};
3517
- --kendo-invalid-text: #{$kendo-invalid-text};
3518
- --kendo-invalid-border: #{$kendo-invalid-border};
3519
- --kendo-invalid-shadow: #{$kendo-invalid-shadow};
4165
+ // Text colors
4166
+ @each $theme-color, $color-props in $kendo-theme-colors {
4167
+ $_color: k-map-get($color-props, text);
3520
4168
 
3521
- --kendo-border-radius-sm: #{$kendo-border-radius-sm};
3522
- --kendo-border-radius-md: #{$kendo-border-radius-md};
3523
- --kendo-border-radius-lg: #{$kendo-border-radius-lg};
3524
- }
3525
-
3526
- // Text colors
3527
- @each $theme-color, $color-props in $kendo-theme-colors {
3528
- $_color: k-map-get( $color-props, text );
3529
-
3530
- .k-text-#{$theme-color},
3531
- .k-color-#{$theme-color} {
3532
- color: var( --kendo-text-#{$theme-color}, #{$_color} );
3533
- }
3534
- .\!k-text-#{$theme-color},
3535
- .\!k-color-#{$theme-color} {
3536
- color: var( --kendo-text-#{$theme-color}, #{$_color} ) !important; // stylelint-disable-line declaration-no-important
3537
- }
4169
+ .k-text-#{$theme-color},
4170
+ .k-color-#{$theme-color} {
4171
+ color: var(--kendo-text-#{$theme-color}, #{$_color});
4172
+ }
4173
+ .\!k-text-#{$theme-color},
4174
+ .\!k-color-#{$theme-color} {
4175
+ color: var(--kendo-text-#{$theme-color}, #{$_color}) !important; // stylelint-disable-line declaration-no-important
4176
+ }
3538
4177
 
3539
- .k-bg-#{$theme-color} {
3540
- background-color: var( --kendo-bg-#{$theme-color}, #{$_color} );
3541
- }
3542
- .\!k-bg-#{$theme-color} {
3543
- background-color: var( --kendo-bg-#{$theme-color}, #{$_color} ) !important; // stylelint-disable-line declaration-no-important
4178
+ .k-bg-#{$theme-color} {
4179
+ background-color: var(--kendo-bg-#{$theme-color}, #{$_color});
4180
+ }
4181
+ .\!k-bg-#{$theme-color} {
4182
+ background-color: var(--kendo-bg-#{$theme-color}, #{$_color}) !important; // stylelint-disable-line declaration-no-important
4183
+ }
3544
4184
  }
3545
- };
4185
+ }
3546
4186
  }
3547
4187
 
3548
4188
  // #endregion
@@ -4945,9 +5585,17 @@ $_imported: () !default;
4945
5585
  }
4946
5586
  }
4947
5587
  // #endregion
5588
+ // #region @import "./_colors.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/styles/_colors.scss
5589
+ @mixin kendo-core--styles--colors() {
5590
+ @if ($kendo-enable-color-system) {
5591
+ @include color-system--styles();
5592
+ }
5593
+ }
4948
5594
 
5595
+ // #endregion
4949
5596
 
4950
5597
  @mixin kendo-core--styles() {
5598
+ @include kendo-core--styles--colors();
4951
5599
  @include kendo-core--styles--accessibility();
4952
5600
  @include kendo-core--styles--asp-fallback();
4953
5601
  @include kendo-core--styles--layout();
@@ -5117,6 +5765,73 @@ $kendo-zindex-loading: 100 !default;
5117
5765
 
5118
5766
  // #endregion
5119
5767
 
5768
+ // Backward compatibility
5769
+ // #region @import "./color-system/_swatch-legacy.scss"; -> scss/core/color-system/_swatch-legacy.scss
5770
+ @if ($kendo-enable-color-system) {
5771
+ $kendo-color-primary: k-color( primary );
5772
+ $kendo-color-primary-contrast: k-color( on-primary );
5773
+ $kendo-color-secondary: k-color( secondary );
5774
+ $kendo-color-tertiary: k-color( tertiary );
5775
+ $kendo-color-info: k-color( info );
5776
+ $kendo-color-success: k-color( success );
5777
+ $kendo-color-warning: k-color( warning );
5778
+ $kendo-color-error: k-color( error );
5779
+ $kendo-color-dark: k-color( dark );
5780
+ $kendo-color-light: k-color( light );
5781
+ $kendo-color-inverse: $kendo-color-dark;
5782
+ $kendo-body-bg: k-color( app-surface );
5783
+ $kendo-body-text: k-color( on-app-surface );
5784
+ $kendo-subtle-text: k-color( subtle );
5785
+ $kendo-app-bg: k-color( surface );
5786
+ $kendo-app-text: $kendo-body-text;
5787
+ $kendo-app-border: k-color( border );
5788
+ $kendo-link-text: $kendo-color-primary;
5789
+ $kendo-link-hover-text: k-color( primary-hover );
5790
+ $kendo-component-bg: $kendo-body-bg;
5791
+ $kendo-component-text: $kendo-body-text;
5792
+ $kendo-component-border: $kendo-app-border;
5793
+ $kendo-base-bg: k-color( surface );
5794
+ $kendo-base-text: $kendo-body-text;
5795
+ $kendo-base-border: $kendo-app-border;
5796
+ $kendo-base-gradient: null;
5797
+ $kendo-hover-bg: k-color( base-hover );
5798
+ $kendo-hover-text: $kendo-base-text;
5799
+ $kendo-hover-border: $kendo-base-border;
5800
+ $kendo-hover-gradient: null;
5801
+ $kendo-selected-bg: $kendo-color-primary;
5802
+ $kendo-selected-text: $kendo-color-primary-contrast;
5803
+ $kendo-selected-border: $kendo-base-border;
5804
+ $kendo-selected-gradient: $kendo-base-gradient;
5805
+ $kendo-selected-hover-bg: k-color( primary-hover );
5806
+ $kendo-selected-hover-text: $kendo-selected-text;
5807
+ $kendo-selected-hover-border: $kendo-base-border;
5808
+ $kendo-selected-hover-gradient: $kendo-base-gradient;
5809
+ $kendo-disabled-text: k-color( on-app-surface );
5810
+ $kendo-component-header-bg: $kendo-base-bg;
5811
+ $kendo-component-header-text: $kendo-base-text;
5812
+ $kendo-component-header-border: $kendo-base-border;
5813
+ $kendo-component-header-gradient: null;
5814
+ $kendo-invalid-bg: null;
5815
+ $kendo-invalid-text: $kendo-color-error;
5816
+ $kendo-invalid-border: $kendo-color-error;
5817
+ $kendo-invalid-shadow: null;
5818
+
5819
+ $kendo-theme-colors: (
5820
+ "primary": $kendo-color-primary,
5821
+ "secondary": $kendo-color-secondary,
5822
+ "tertiary": $kendo-color-tertiary,
5823
+ "info": $kendo-color-info,
5824
+ "success": $kendo-color-success,
5825
+ "warning": $kendo-color-warning,
5826
+ "error": $kendo-color-error,
5827
+ "dark": $kendo-color-dark,
5828
+ "light": $kendo-color-light,
5829
+ "inverse": $kendo-color-inverse,
5830
+ );
5831
+ }
5832
+
5833
+ // #endregion
5834
+
5120
5835
  // Expose
5121
5836
  @include exports("kendo-core-styles") {
5122
5837
  @include kendo-core--styles();
@@ -14866,11 +15581,19 @@ $kendo-message-box-link-text-decoration: underline !default;
14866
15581
 
14867
15582
  @each $color-name, $color in $kendo-theme-colors {
14868
15583
  .k-messagebox-#{$color-name} {
14869
- @include fill(
14870
- k-color-level( $color, $kendo-message-box-text-level ),
14871
- k-color-level( $color, $kendo-message-box-bg-level ),
14872
- k-color-level( $color, $kendo-message-box-border-level )
14873
- );
15584
+ @if $color-name == "inverse" {
15585
+ @include fill(
15586
+ if($kendo-enable-color-system, k-color( dark-on-subtle ), k-color-level( $color, $kendo-message-box-text-level )),
15587
+ if($kendo-enable-color-system, k-color( dark-subtle ), k-color-level( $color, $kendo-message-box-bg-level )),
15588
+ if($kendo-enable-color-system, k-color( dark-hover ), k-color-level( $color, $kendo-message-box-border-level ))
15589
+ );
15590
+ } @else {
15591
+ @include fill(
15592
+ if($kendo-enable-color-system, k-color( #{$color-name}-on-subtle ), k-color-level( $color, $kendo-message-box-text-level )),
15593
+ if($kendo-enable-color-system, k-color( #{$color-name}-subtle ), k-color-level( $color, $kendo-message-box-bg-level )),
15594
+ if($kendo-enable-color-system, k-color( #{$color-name}-emphasis ), k-color-level( $color, $kendo-message-box-border-level ))
15595
+ );
15596
+ }
14874
15597
  }
14875
15598
  }
14876
15599
 
@@ -15512,7 +16235,7 @@ $kendo-checkbox-hover-border: null !default;
15512
16235
  $kendo-checkbox-checked-bg: $kendo-color-primary !default;
15513
16236
  /// The text color of the checked CheckBox.
15514
16237
  /// @group checkbox
15515
- $kendo-checkbox-checked-text: k-contrast-legacy( $kendo-checkbox-checked-bg ) !default;
16238
+ $kendo-checkbox-checked-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-checkbox-checked-bg )) !default;
15516
16239
  /// The border color of the checked CheckBox.
15517
16240
  /// @group checkbox
15518
16241
  $kendo-checkbox-checked-border: $kendo-checkbox-checked-bg !default;
@@ -15538,7 +16261,7 @@ $kendo-checkbox-focus-shadow: 0 0 0 2px rgba(0, 0, 0, .06) !default;
15538
16261
  $kendo-checkbox-focus-checked-border: null !default;
15539
16262
  /// The box shadow of the focused and checked CheckBox.
15540
16263
  /// @group checkbox
15541
- $kendo-checkbox-focus-checked-shadow: 0 0 0 2px rgba( $kendo-color-primary, .3 ) !default;
16264
+ $kendo-checkbox-focus-checked-shadow: 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( primary, true ), .3 ), rgba( $kendo-color-primary, .3 )) !default;
15542
16265
 
15543
16266
  /// The background color of the disabled CheckBox.
15544
16267
  /// @group checkbox
@@ -16313,7 +17036,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
16313
17036
  &.k-selected:hover,
16314
17037
  &.k-selected.k-hover {
16315
17038
  color: $kendo-list-item-selected-text;
16316
- background-color: k-color-shade( $kendo-list-item-selected-bg );
17039
+ background-color: if($kendo-enable-color-system, k-color( primary-hover ), k-color-shade( $kendo-list-item-selected-bg ));
16317
17040
  }
16318
17041
  }
16319
17042
 
@@ -17190,10 +17913,9 @@ $kendo-table-group-row-text: $kendo-table-header-text !default;
17190
17913
  /// @group table
17191
17914
  $kendo-table-group-row-border: $kendo-table-header-border !default;
17192
17915
 
17193
-
17194
17916
  /// Background color of alternating rows in table.
17195
17917
  /// @group table
17196
- $kendo-table-alt-row-bg: rgba( k-contrast-legacy( $kendo-table-bg ), .04 ) !default;
17918
+ $kendo-table-alt-row-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .05 ), rgba( k-contrast-legacy( $kendo-table-bg ), .04 )) !default;
17197
17919
  /// Text color of alternating rows in table.
17198
17920
  /// @group table
17199
17921
  $kendo-table-alt-row-text: null !default;
@@ -17204,7 +17926,7 @@ $kendo-table-alt-row-border: null !default;
17204
17926
 
17205
17927
  /// Background color of hovered rows in table.
17206
17928
  /// @group table
17207
- $kendo-table-hover-bg: k-color-darken($kendo-table-bg, 7%) !default;
17929
+ $kendo-table-hover-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .11 ), k-color-darken($kendo-table-bg, 7%)) !default;
17208
17930
  /// Text color of hovered rows in table.
17209
17931
  /// @group table
17210
17932
  $kendo-table-hover-text: null !default;
@@ -17229,7 +17951,7 @@ $kendo-table-focus-shadow: $kendo-list-item-focus-shadow !default;
17229
17951
 
17230
17952
  /// Background color of selected rows in table.
17231
17953
  /// @group table
17232
- $kendo-table-selected-bg: rgba($kendo-selected-bg, .25) !default;
17954
+ $kendo-table-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25)) !default;
17233
17955
  /// Text color of selected rows in table.
17234
17956
  /// @group table
17235
17957
  $kendo-table-selected-text: null !default;
@@ -17892,7 +18614,7 @@ $kendo-avatar-theme-colors: $kendo-theme-colors !default;
17892
18614
  @each $name, $color in $kendo-avatar-theme-colors {
17893
18615
  .k-avatar-solid-#{$name} {
17894
18616
  border-color: $color;
17895
- color: k-contrast-legacy( $color );
18617
+ color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
17896
18618
  background-color: $color;
17897
18619
  }
17898
18620
  }
@@ -18229,7 +18951,7 @@ $kendo-badge-sizes: (
18229
18951
  @each $name, $color in $kendo-theme-colors {
18230
18952
  .k-badge-solid-#{$name} {
18231
18953
  border-color: $color;
18232
- color: k-contrast-legacy( $color );
18954
+ color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
18233
18955
  background-color: $color;
18234
18956
  }
18235
18957
  }
@@ -18411,28 +19133,28 @@ $kendo-button-sizes: (
18411
19133
  /// @group button
18412
19134
  $kendo-button-theme-colors: k-map-merge(
18413
19135
  $kendo-theme-colors,
18414
- ( "base": #f5f5f5 )
19136
+ ( "base": if($kendo-enable-color-system, k-color( base ), #f5f5f5) )
18415
19137
  ) !default;
18416
19138
 
18417
19139
  /// The base background of the Button.
18418
19140
  /// @group button
18419
- $kendo-button-bg: #f5f5f5 !default;
19141
+ $kendo-button-bg: if($kendo-enable-color-system, k-color( base ), #f5f5f5) !default;
18420
19142
  /// The base text color of the Button.
18421
19143
  /// @group button
18422
- $kendo-button-text: #424242 !default;
19144
+ $kendo-button-text: if($kendo-enable-color-system, k-color( on-base ), #424242) !default;
18423
19145
  /// The base border color of the Button.
18424
19146
  /// @group button
18425
- $kendo-button-border: rgba( black, .08 ) !default;
19147
+ $kendo-button-border: if($kendo-enable-color-system, k-color( border ), rgba( black, .08 )) !default;
18426
19148
  /// The base background gradient of the Button.
18427
19149
  /// @group button
18428
- $kendo-button-gradient: rgba( black, 0 ), rgba( black, .02 ) !default;
19150
+ $kendo-button-gradient: if($kendo-enable-color-system, null, (rgba( black, 0 ), rgba( black, .02 ))) !default;
18429
19151
  /// The base shadow of the Button.
18430
19152
  /// @group button
18431
19153
  $kendo-button-shadow: null !default;
18432
19154
 
18433
19155
  /// The base background of the hovered Button.
18434
19156
  /// @group button
18435
- $kendo-button-hover-bg: k-try-shade( $kendo-button-bg, .5 ) !default;
19157
+ $kendo-button-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-button-bg, .5 )) !default;
18436
19158
  /// The base text color of the hovered Button.
18437
19159
  /// @group button
18438
19160
  $kendo-button-hover-text: null !default;
@@ -18448,7 +19170,7 @@ $kendo-button-hover-shadow: null !default;
18448
19170
 
18449
19171
  /// The base background color of the active Button.
18450
19172
  /// @group button
18451
- $kendo-button-active-bg: k-try-shade( $kendo-button-bg, 1.5 ) !default;
19173
+ $kendo-button-active-bg: if($kendo-enable-color-system, k-color( base-active ), k-try-shade( $kendo-button-bg, 1.5 )) !default;
18452
19174
  /// The base text color of the active Button.
18453
19175
  /// @group button
18454
19176
  $kendo-button-active-text: null !default;
@@ -18467,7 +19189,7 @@ $kendo-button-active-shadow: null !default;
18467
19189
  $kendo-button-selected-bg: $kendo-color-primary !default;
18468
19190
  /// The text color of the selected Button.
18469
19191
  /// @group button
18470
- $kendo-button-selected-text: k-contrast-legacy( $kendo-button-selected-bg ) !default;
19192
+ $kendo-button-selected-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-button-selected-bg )) !default;
18471
19193
  /// The border color of the selected Button.
18472
19194
  /// @group button
18473
19195
  $kendo-button-selected-border: $kendo-button-selected-bg !default;
@@ -18492,7 +19214,7 @@ $kendo-button-focus-border: null !default;
18492
19214
  $kendo-button-focus-gradient: null !default;
18493
19215
  /// The base shadow of the focused Button.
18494
19216
  /// @group button
18495
- $kendo-button-focus-shadow: 0 0 0 2px rgba( $kendo-button-border, .08 ) !default;
19217
+ $kendo-button-focus-shadow: 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .08), rgba( $kendo-button-border, .08 )) !default;
18496
19218
 
18497
19219
  /// The base background of the disabled Button.
18498
19220
  /// @group button
@@ -18511,7 +19233,7 @@ $kendo-button-disabled-gradient: null !default;
18511
19233
  $kendo-button-disabled-shadow: null !default;
18512
19234
 
18513
19235
  // Solid Button
18514
- $kendo-solid-button-gradient: rgba( black, 0 ), rgba( black, .02 ) !default;
19236
+ $kendo-solid-button-gradient: if($kendo-enable-color-system, null, (rgba( black, 0 ), rgba( black, .02 ))) !default;
18515
19237
  $kendo-solid-button-shade-function: "k-try-shade" !default;
18516
19238
  $kendo-solid-button-shade-text-amount: 0 !default;
18517
19239
  $kendo-solid-button-shade-bg-amount: 0 !default;
@@ -18656,7 +19378,7 @@ $kendo-chip-sizes: (
18656
19378
 
18657
19379
  /// The base background of the Chip.
18658
19380
  /// @group chip
18659
- $kendo-chip-base-bg: $kendo-button-bg !default;
19381
+ $kendo-chip-base-bg: if($kendo-enable-color-system, k-color( base-subtle ), $kendo-button-bg) !default;
18660
19382
 
18661
19383
  /// The theme colors map for the Chip.
18662
19384
  /// @group chip
@@ -18679,7 +19401,7 @@ $kendo-chip-solid-text: $kendo-button-text !default;
18679
19401
  $kendo-chip-solid-border: $kendo-button-border !default;
18680
19402
  /// The base shadow of the solid Chip.
18681
19403
  /// @group chip
18682
- $kendo-chip-solid-shadow: 0 0 0 2px if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .08 ) ) !default;
19404
+ $kendo-chip-solid-shadow: 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .08 ), if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .08 ) )) !default;
18683
19405
  /// The base gradient of the solid Chip.
18684
19406
  /// @group chip
18685
19407
  $kendo-chip-solid-gradient: $kendo-button-gradient !default;
@@ -18693,7 +19415,7 @@ $kendo-chip-solid-focus-text: null !default;
18693
19415
 
18694
19416
  /// The base background color of the hovered solid Chip.
18695
19417
  /// @group chip
18696
- $kendo-chip-solid-hover-bg: $kendo-button-hover-bg !default;
19418
+ $kendo-chip-solid-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-hover ), $kendo-button-hover-bg) !default;
18697
19419
  /// The base text color of the hovered solid Chip.
18698
19420
  /// @group chip
18699
19421
  $kendo-chip-solid-hover-text: null !default;
@@ -18716,14 +19438,14 @@ $kendo-chip-outline-text: $kendo-chip-solid-text !default;
18716
19438
  $kendo-chip-outline-border: $kendo-chip-outline-text !default;
18717
19439
  /// The base shadow of the outline Chip.
18718
19440
  /// @group chip
18719
- $kendo-chip-outline-shadow: 0 0 0 2px if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .08 ) ) !default;
19441
+ $kendo-chip-outline-shadow: 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .08 ), if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .08 ) )) !default;
18720
19442
 
18721
19443
  /// The base background color of the hovered outline Chip.
18722
19444
  /// @group chip
18723
19445
  $kendo-chip-outline-hover-bg: $kendo-chip-outline-text !default;
18724
19446
  /// The base text color of the hovered outline Chip.
18725
19447
  /// @group chip
18726
- $kendo-chip-outline-hover-text: k-contrast-legacy( $kendo-chip-outline-hover-bg ) !default;
19448
+ $kendo-chip-outline-hover-text: if($kendo-enable-color-system, k-color( base ), k-contrast-legacy( $kendo-chip-outline-hover-bg )) !default;
18727
19449
 
18728
19450
  /// The base background color of the selected outline Chip.
18729
19451
  /// @group chip
@@ -18943,24 +19665,24 @@ $kendo-chip-list-sizes: (
18943
19665
  }
18944
19666
  } @else {
18945
19667
  @include fill(
18946
- k-try-shade( $color, 65% ),
18947
- k-try-tint( $color, 80% ),
18948
- k-try-tint( $color, 25% ),
19668
+ if($kendo-enable-color-system, k-color( #{$name}-on-subtle ), k-try-shade( $color, 65% )),
19669
+ if($kendo-enable-color-system, k-color( #{$name}-subtle ), k-try-tint( $color, 80% )),
19670
+ if($kendo-enable-color-system, k-color( #{$name}-emphasis ), k-try-tint( $color, 25% )),
18949
19671
  $kendo-chip-solid-gradient
18950
19672
  );
18951
19673
 
18952
19674
  &:focus,
18953
19675
  &.k-focus {
18954
- @include focus-indicator( 0 0 0 2px rgba( $color, .16 ) );
19676
+ @include focus-indicator( 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( $name, true ), .16 ), rgba( $color, .16 )) );
18955
19677
  }
18956
19678
 
18957
19679
  &:hover,
18958
19680
  &.k-hover {
18959
- @include fill( $bg: k-try-tint($color, 65% ) );
19681
+ @include fill( $bg: if($kendo-enable-color-system, k-color( #{$name}-subtle-hover ), k-try-tint($color, 65% )) );
18960
19682
  }
18961
19683
 
18962
19684
  &.k-selected {
18963
- @include fill( $bg: k-try-tint( $color, 50% ) );
19685
+ @include fill( $bg: if($kendo-enable-color-system, k-color( #{$name}-subtle-active ), k-try-tint( $color, 50% )) );
18964
19686
  }
18965
19687
  }
18966
19688
  }
@@ -18998,54 +19720,56 @@ $kendo-chip-list-sizes: (
18998
19720
  }
18999
19721
  } @else if ($name == "warning") {
19000
19722
  @include fill(
19001
- if( $kendo-is-dark-theme, k-color-tint($color, 25%), $kendo-chip-outline-text),
19002
- if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white ),
19003
- if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color)
19723
+ if($kendo-enable-color-system, $kendo-chip-outline-text, if( $kendo-is-dark-theme, k-color-tint($color, 25%), $kendo-chip-outline-text)),
19724
+ if($kendo-enable-color-system, k-color( app-surface ), if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
19725
+ if($kendo-enable-color-system, $color, if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color))
19004
19726
  );
19005
19727
 
19006
19728
  &:focus,
19007
19729
  &.k-focus {
19008
- @include focus-indicator( 0 0 0 2px if( $kendo-is-dark-theme, rgba( k-color-tint( $color, 50% ), .32 ), rgba( $color, .16 )) );
19730
+ @include focus-indicator( 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( $name, true ), .16 ), if( $kendo-is-dark-theme, rgba( k-color-tint( $color, 50% ), .32 ), rgba( $color, .16 ))) );
19009
19731
  }
19010
19732
 
19011
19733
  &:hover,
19012
19734
  &.k-hover {
19013
19735
  @include fill(
19014
- $color: if( $kendo-is-dark-theme, k-contrast-legacy( $color ), k-try-shade( $color, 80% ) ) ,
19015
- $bg: if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color)
19736
+ $color: if($kendo-enable-color-system, k-color( on-#{$name} ), if( $kendo-is-dark-theme, k-contrast-legacy( $color ), k-try-shade( $color, 80% ) )),
19737
+ $bg: if($kendo-enable-color-system, $color, if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color))
19016
19738
  );
19017
19739
  }
19018
19740
 
19019
19741
  &.k-selected {
19020
19742
  @include fill(
19021
- $color: if( $kendo-is-dark-theme, k-contrast-legacy( $color ), k-try-shade( $color, 80% ) ) ,
19022
- $bg: if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color)
19743
+ $color: if($kendo-enable-color-system, k-color( on-#{$name} ), if( $kendo-is-dark-theme, k-contrast-legacy( $color ), k-try-shade( $color, 80% ) )),
19744
+ $bg: if($kendo-enable-color-system, $color, if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color))
19023
19745
  );
19024
19746
  }
19025
19747
  } @else {
19026
19748
  @include fill(
19027
- k-try-shade( $color, 25% ),
19028
- if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white ),
19029
- k-try-shade( $color, 25% )
19749
+ if($kendo-enable-color-system, k-color( #{$name}-on-surface ), k-try-shade( $color, 25% )),
19750
+ if($kendo-enable-color-system, k-color( app-surface ), if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
19751
+ if($kendo-enable-color-system, k-color( #{$name}-on-surface ), k-try-shade( $color, 25% ))
19030
19752
  );
19031
19753
 
19032
19754
  &:focus,
19033
19755
  &.k-focus {
19034
- @include focus-indicator( 0 0 0 2px if( $kendo-is-dark-theme, rgba( k-color-tint( $color, 50% ), .32 ), rgba( $color, .16 )) );
19756
+ @include focus-indicator( 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( $name, true ), .16 ), if( $kendo-is-dark-theme, rgba( k-color-tint( $color, 50% ), .32 ), rgba( $color, .16 ))) );
19035
19757
  }
19036
19758
 
19037
19759
  &:hover,
19038
19760
  &.k-hover {
19039
19761
  @include fill(
19040
- $color: k-contrast-legacy( k-try-shade( $color, 25% ) ),
19041
- $bg: k-try-shade( $color, 25% )
19762
+ if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( k-try-shade( $color, 25% ) )),
19763
+ if($kendo-enable-color-system, k-color( #{$name}-hover ), k-try-shade( $color, 25% )),
19764
+ if($kendo-enable-color-system, k-color( #{$name}-hover ), k-try-shade( $color, 25% ))
19042
19765
  );
19043
19766
  }
19044
19767
 
19045
19768
  &.k-selected {
19046
19769
  @include fill(
19047
- $color: k-contrast-legacy( k-try-shade( $color, 25% ) ),
19048
- $bg: k-try-shade( $color, 25% )
19770
+ if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( k-try-shade( $color, 25% ) )),
19771
+ if($kendo-enable-color-system, k-color( #{$name}-active ), k-try-shade( $color, 25% )),
19772
+ if($kendo-enable-color-system, k-color( #{$name}-active ), k-try-shade( $color, 25% ))
19049
19773
  );
19050
19774
  }
19051
19775
  }
@@ -20009,11 +20733,8 @@ $kendo-skeleton-rect-border-radius: 0 !default;
20009
20733
  /// @group skeleton
20010
20734
  $kendo-skeleton-circle-border-radius: 9999px !default;
20011
20735
 
20012
- /// The background color of the Skeleton item.
20013
- /// @group skeleton
20014
- $kendo-skeleton-item-bg: rgba( $kendo-color-inverse, .2 ) !default;
20015
- /// The background color of the Skeleton wave animation.
20016
- /// @group skeleton
20736
+ $kendo-skeleton-item-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .2 ), rgba( $kendo-color-inverse, .2 )) !default;
20737
+
20017
20738
  $kendo-skeleton-wave-bg: rgba( black, .04 ) !default;
20018
20739
 
20019
20740
  // #endregion
@@ -20677,17 +21398,17 @@ $_kendo-module-meta: (
20677
21398
 
20678
21399
  @each $name, $color in $kendo-button-theme-colors {
20679
21400
  @if ($name != "base") {
20680
- $_button-text: k-contrast-legacy( $color );
20681
- $_button-bg: if( $kendo-solid-button-shade-bg-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-shade-bg-amount ), null );
20682
- $_button-border: if( $kendo-solid-button-shade-border-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-shade-border-amount ), null );
21401
+ $_button-text: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
21402
+ $_button-bg: if($kendo-enable-color-system, k-color( $name ), if( $kendo-solid-button-shade-bg-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-shade-bg-amount ), null ));
21403
+ $_button-border: if($kendo-enable-color-system, k-color( $name ), if( $kendo-solid-button-shade-border-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-shade-border-amount ), null ));
20683
21404
 
20684
21405
  $_button-hover-text: null;
20685
- $_button-hover-bg: if( $kendo-solid-button-hover-shade-bg-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-hover-shade-bg-amount ), null );
20686
- $_button-hover-border: if( $kendo-solid-button-hover-shade-border-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-hover-shade-border-amount ), null );
21406
+ $_button-hover-bg: if($kendo-enable-color-system, k-color( #{$name}-hover ), if( $kendo-solid-button-hover-shade-bg-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-hover-shade-bg-amount ), null ));
21407
+ $_button-hover-border: if($kendo-enable-color-system, k-color( #{$name}-hover ), if( $kendo-solid-button-hover-shade-border-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-hover-shade-border-amount ), null ));
20687
21408
 
20688
21409
  $_button-active-text: null;
20689
- $_button-active-bg: if( $kendo-solid-button-active-shade-bg-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-active-shade-bg-amount ), null );
20690
- $_button-active-border: if( $kendo-solid-button-active-shade-border-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-active-shade-border-amount ), null );
21410
+ $_button-active-bg: if($kendo-enable-color-system, k-color( #{$name}-active ), if( $kendo-solid-button-active-shade-bg-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-active-shade-bg-amount ), null ));
21411
+ $_button-active-border: if($kendo-enable-color-system, k-color( #{$name}-active ), if( $kendo-solid-button-active-shade-border-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-active-shade-border-amount ), null ));
20691
21412
 
20692
21413
  .k-button-solid-#{$name} {
20693
21414
  @include fill(
@@ -20711,7 +21432,7 @@ $_kendo-module-meta: (
20711
21432
  &:focus,
20712
21433
  &.k-focus {
20713
21434
  @if ( $kendo-solid-button-shadow ) {
20714
- @include focus-indicator( 0 0 $kendo-solid-button-shadow-blur $kendo-solid-button-shadow-spread rgba( $_button-border, $kendo-solid-button-shadow-opacity ), true, true );
21435
+ @include focus-indicator( 0 0 $kendo-solid-button-shadow-blur $kendo-solid-button-shadow-spread if($kendo-enable-color-system, rgba( k-color( $name, true ), $kendo-solid-button-shadow-opacity ), rgba( $_button-border, $kendo-solid-button-shadow-opacity )), true, true );
20715
21436
  }
20716
21437
  }
20717
21438
 
@@ -20755,44 +21476,72 @@ $_kendo-module-meta: (
20755
21476
  .k-button-outline-#{$name} {
20756
21477
  @include box-shadow( none );
20757
21478
  border-color: currentColor;
20758
- color: $color;
21479
+ color: if($kendo-enable-color-system, k-color( #{$name}-on-surface ), $color);
20759
21480
  background-color: transparent;
20760
21481
 
20761
21482
  // Hover state
20762
21483
  &:hover,
20763
21484
  &.k-hover {
20764
- @include fill(
20765
- k-contrast-legacy( $color ),
20766
- $color,
20767
- $color
20768
- );
21485
+ @if $name == "base" {
21486
+ @include fill(
21487
+ if($kendo-enable-color-system, $kendo-base-bg, k-contrast-legacy( $color )),
21488
+ $color,
21489
+ $color
21490
+ );
21491
+ } @else {
21492
+ @include fill(
21493
+ if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color )),
21494
+ $color,
21495
+ $color
21496
+ );
21497
+ }
20769
21498
  }
20770
21499
 
20771
21500
  // Focus state
20772
21501
  &:focus,
20773
21502
  &.k-focus {
20774
21503
  @if $kendo-outline-button-shadow {
20775
- @include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread rgba( $color, $kendo-outline-button-shadow-opacity ), true, true );
21504
+ @if $name == "base" {
21505
+ @include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), $kendo-outline-button-shadow-opacity ), rgba( $color, $kendo-outline-button-shadow-opacity )), true, true );
21506
+ } @else {
21507
+ @include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread if($kendo-enable-color-system, rgba( k-color( $name, true ), $kendo-outline-button-shadow-opacity ), rgba( $color, $kendo-outline-button-shadow-opacity )), true, true );
21508
+ }
20776
21509
  }
20777
21510
  }
20778
21511
 
20779
21512
  // Active state
20780
21513
  &:active,
20781
21514
  &.k-active {
20782
- @include fill(
20783
- k-contrast-legacy( $color ),
20784
- $color,
20785
- $color
20786
- );
21515
+ @if $name == "base" {
21516
+ @include fill(
21517
+ if($kendo-enable-color-system, $kendo-base-bg, k-contrast-legacy( $color )),
21518
+ $color,
21519
+ $color
21520
+ );
21521
+ } @else {
21522
+ @include fill(
21523
+ if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color )),
21524
+ $color,
21525
+ $color
21526
+ );
21527
+ }
20787
21528
  }
20788
21529
 
20789
21530
  // Selected
20790
21531
  &.k-selected {
20791
- @include fill(
20792
- k-contrast-legacy( $color ),
20793
- $color,
20794
- $color
20795
- );
21532
+ @if $name == "base" {
21533
+ @include fill(
21534
+ if($kendo-enable-color-system, $kendo-base-bg, k-contrast-legacy( $color )),
21535
+ $color,
21536
+ $color
21537
+ );
21538
+ } @else {
21539
+ @include fill(
21540
+ if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color )),
21541
+ $color,
21542
+ $color
21543
+ );
21544
+ }
20796
21545
  }
20797
21546
 
20798
21547
  // Disabled state
@@ -20826,26 +21575,42 @@ $_kendo-module-meta: (
20826
21575
  // Hover
20827
21576
  &:hover,
20828
21577
  &.k-hover {
20829
- color: k-try-shade( $color, 2 );
21578
+ @if $name == "base" {
21579
+ color: if($kendo-enable-color-system, $kendo-base-text, k-try-shade( $color, 2 ));
21580
+ } @else {
21581
+ color: if($kendo-enable-color-system, k-color( #{$name}-hover ), k-try-shade( $color, 2 ));
21582
+ }
20830
21583
  }
20831
21584
 
20832
21585
  // Focus
20833
21586
  &:focus,
20834
21587
  &.k-focus {
20835
21588
  @if ( $kendo-link-button-shadow ) {
20836
- @include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread rgba( $color, $kendo-link-button-shadow-opacity ), true, true );
21589
+ @if $name == "base" {
21590
+ @include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), $kendo-link-button-shadow-opacity ), rgba( $color, $kendo-link-button-shadow-opacity )), true, true );
21591
+ } @else {
21592
+ @include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread if($kendo-enable-color-system, rgba( k-color( $name, true ), $kendo-link-button-shadow-opacity ), rgba( $color, $kendo-link-button-shadow-opacity )), true, true );
21593
+ }
20837
21594
  }
20838
21595
  }
20839
21596
 
20840
21597
  // Active
20841
21598
  &:active,
20842
21599
  &.k-active {
20843
- color: k-try-shade( $color, 2 );
21600
+ @if $name == "base" {
21601
+ color: if($kendo-enable-color-system, $kendo-base-text, k-try-shade( $color, 2 ));
21602
+ } @else {
21603
+ color: if($kendo-enable-color-system, k-color( #{$name}-active ), k-try-shade( $color, 2 ));
21604
+ }
20844
21605
  }
20845
21606
 
20846
21607
  // Selected
20847
21608
  &.k-selected {
20848
- color: k-try-shade( $color, 2 );
21609
+ @if $name == "base" {
21610
+ color: if($kendo-enable-color-system, $kendo-base-text, k-try-shade( $color, 2 ));
21611
+ } @else {
21612
+ color: if($kendo-enable-color-system, k-color( #{$name}-active ), k-try-shade( $color, 2 ));
21613
+ }
20849
21614
  }
20850
21615
 
20851
21616
  // Disabled state
@@ -20891,7 +21656,6 @@ $_kendo-module-meta: (
20891
21656
  @mixin kendo-button--theme() {
20892
21657
  @include kendo-button--theme-base();
20893
21658
  }
20894
-
20895
21659
  // #endregion
20896
21660
 
20897
21661
 
@@ -22407,7 +23171,7 @@ $kendo-input-hover-bg: null !default;
22407
23171
  $kendo-input-hover-text: null !default;
22408
23172
  /// The border color of the hovered Input components.
22409
23173
  /// @group input
22410
- $kendo-input-hover-border: rgba( $kendo-input-border, .16 ) !default;
23174
+ $kendo-input-hover-border: if($kendo-enable-color-system, k-color( border-alt ), rgba( $kendo-input-border, .16 )) !default;
22411
23175
  /// The shadow of the hovered Input components.
22412
23176
  /// @group input
22413
23177
  $kendo-input-hover-shadow: null !default;
@@ -22423,7 +23187,7 @@ $kendo-input-focus-text: null !default;
22423
23187
  $kendo-input-focus-border: $kendo-input-hover-border !default;
22424
23188
  /// The shadow of the focused Input components.
22425
23189
  /// @group input
22426
- $kendo-input-focus-shadow: 0 0 0 2px rgba( $kendo-input-focus-border, .08 ) !default;
23190
+ $kendo-input-focus-shadow: 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .08 ), rgba( $kendo-input-focus-border, .08 )) !default;
22427
23191
 
22428
23192
  /// The background color of the selected Input components.
22429
23193
  /// @group input
@@ -22456,7 +23220,7 @@ $kendo-input-outline-bg: null !default;
22456
23220
  $kendo-input-outline-text: $kendo-input-text !default;
22457
23221
  /// The border color of the outline Input components.
22458
23222
  /// @group input
22459
- $kendo-input-outline-border: rgba( $kendo-button-text, .5) !default;
23223
+ $kendo-input-outline-border: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .5 ), rgba( $kendo-button-text, .5)) !default;
22460
23224
 
22461
23225
  /// The background color of the outline hovered Input components.
22462
23226
  /// @group input
@@ -22466,7 +23230,7 @@ $kendo-input-outline-hover-bg: null !default;
22466
23230
  $kendo-input-outline-hover-text: null !default;
22467
23231
  /// The border color of the outline hovered Input components.
22468
23232
  /// @group input
22469
- $kendo-input-outline-hover-border: rgba( $kendo-button-text, .8) !default;
23233
+ $kendo-input-outline-hover-border: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .8 ), rgba( $kendo-button-text, .8)) !default;
22470
23234
 
22471
23235
  /// The background color of the outline focused Input components.
22472
23236
  /// @group input
@@ -22661,14 +23425,14 @@ $kendo-picker-outline-bg: null !default;
22661
23425
  $kendo-picker-outline-text: $kendo-button-text !default;
22662
23426
  /// The border color of the outline Picker components.
22663
23427
  /// @group picker
22664
- $kendo-picker-outline-border: rgba( $kendo-picker-outline-text, .5) !default;
23428
+ $kendo-picker-outline-border: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .5 ), rgba( $kendo-picker-outline-text, .5)) !default;
22665
23429
 
22666
23430
  /// The background color of the outline hovered Picker components.
22667
23431
  /// @group picker
22668
23432
  $kendo-picker-outline-hover-bg: $kendo-picker-outline-text !default;
22669
23433
  /// The text color of the outline hovered Picker components.
22670
23434
  /// @group picker
22671
- $kendo-picker-outline-hover-text: k-contrast-legacy( $kendo-picker-outline-hover-bg ) !default;
23435
+ $kendo-picker-outline-hover-text: if($kendo-enable-color-system, k-color( base ), k-contrast-legacy( $kendo-picker-outline-hover-bg )) !default;
22672
23436
  /// The border color of the outline hovered Picker components.
22673
23437
  /// @group picker
22674
23438
  $kendo-picker-outline-hover-border: $kendo-picker-outline-hover-bg !default;
@@ -22708,13 +23472,13 @@ $kendo-picker-flat-border: $kendo-button-border !default;
22708
23472
 
22709
23473
  /// The background color of the flat hovered Picker components.
22710
23474
  /// @group picker
22711
- $kendo-picker-flat-hover-bg: rgba( $kendo-button-text, .04 ) !default;
23475
+ $kendo-picker-flat-hover-bg: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .04 ), rgba( $kendo-button-text, .04 )) !default;
22712
23476
  /// The text color of the flat hovered Picker components.
22713
23477
  /// @group picker
22714
23478
  $kendo-picker-flat-hover-text: null !default;
22715
23479
  /// The border color of the flat hovered Picker components.
22716
23480
  /// @group picker
22717
- $kendo-picker-flat-hover-border: rgba( $kendo-button-border, .16 ) !default;
23481
+ $kendo-picker-flat-hover-border: if($kendo-enable-color-system, k-color( border-alt ), rgba( $kendo-button-border, .16 )) !default;
22718
23482
 
22719
23483
  /// The background color of the flat focused Picker components.
22720
23484
  /// @group picker
@@ -22779,10 +23543,10 @@ $kendo-tooltip-callout-size: 6px !default;
22779
23543
 
22780
23544
  /// The default background of the Tooltip.
22781
23545
  /// @group tooltip
22782
- $kendo-tooltip-bg: rgba( k-contrast-legacy( $kendo-body-bg ), .75 ) !default;
23546
+ $kendo-tooltip-bg: if($kendo-enable-color-system, k-color( on-app-surface ), rgba( k-contrast-legacy( $kendo-body-bg ), .75 )) !default;
22783
23547
  /// The default text color of the Tooltip.
22784
23548
  /// @group tooltip
22785
- $kendo-tooltip-text: k-contrast-legacy( $kendo-tooltip-bg ) !default;
23549
+ $kendo-tooltip-text: if($kendo-enable-color-system, k-color( app-surface ), k-contrast-legacy( $kendo-tooltip-bg )) !default;
22786
23550
  /// The default border color of the Tooltip.
22787
23551
  /// @group tooltip
22788
23552
  $kendo-tooltip-border: $kendo-tooltip-bg !default;
@@ -22796,7 +23560,7 @@ $kendo-tooltip-shadow: k-elevation(2) !default;
22796
23560
 
22797
23561
  @each $name, $color in $colors {
22798
23562
  $_theme: k-map-merge(( $name: (
22799
- color: k-contrast-legacy( $color ),
23563
+ color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color )),
22800
23564
  background-color: $color,
22801
23565
  border: $color,
22802
23566
  )), $_theme );
@@ -22811,6 +23575,7 @@ $kendo-tooltip-theme-colors: $kendo-theme-colors !default;
22811
23575
  /// The generated theme colors map for the Tooltip.
22812
23576
  /// @group tooltip
22813
23577
  $kendo-tooltip-theme: tooltip-theme( $kendo-tooltip-theme-colors ) !default;
23578
+
22814
23579
  // #endregion
22815
23580
  // #region @import "../typography/_variables.scss"; -> scss/typography/_variables.scss
22816
23581
  // File already imported_once. Skipping output.
@@ -23080,7 +23845,7 @@ $kendo-fieldset-border: null !default;
23080
23845
  $kendo-fieldset-legend-bg: null !default;
23081
23846
  /// The text color of the Form legend.
23082
23847
  /// @group form
23083
- $kendo-fieldset-legend-text: k-try-shade( $kendo-body-text, 2 ) !default;
23848
+ $kendo-fieldset-legend-text: if($kendo-enable-color-system, k-color( on-app-surface ), k-try-shade( $kendo-body-text, 2 )) !default;
23084
23849
  /// The border color of the Form legend.
23085
23850
  /// @group form
23086
23851
  $kendo-fieldset-legend-border: null !default;
@@ -24542,9 +25307,7 @@ $_kendo-module-meta: (
24542
25307
  }
24543
25308
 
24544
25309
  // Valid
24545
- &.k-valid,
24546
- &.ng-valid.ng-touched,
24547
- &.ng-valid.ng-dirty {
25310
+ &.k-valid {
24548
25311
  @include fill( $border: $kendo-input-valid-border );
24549
25312
 
24550
25313
  .k-input-validation-icon {
@@ -24650,9 +25413,7 @@ $_kendo-module-meta: (
24650
25413
  }
24651
25414
 
24652
25415
  // Valid
24653
- &.k-valid,
24654
- &.ng-valid.ng-touched,
24655
- &.ng-valid.ng-dirty {
25416
+ &.k-valid {
24656
25417
  @include fill( $border: $kendo-input-valid-border );
24657
25418
 
24658
25419
  .k-input-validation-icon {
@@ -24753,9 +25514,7 @@ $_kendo-module-meta: (
24753
25514
  }
24754
25515
 
24755
25516
  // Valid
24756
- &.k-valid,
24757
- &.ng-valid.ng-touched,
24758
- &.ng-valid.ng-dirty {
25517
+ &.k-valid {
24759
25518
  @include fill( $border: $kendo-input-valid-border );
24760
25519
 
24761
25520
  .k-input-validation-icon {
@@ -24867,9 +25626,7 @@ $_kendo-module-meta: (
24867
25626
  }
24868
25627
 
24869
25628
  // Valid
24870
- &.k-valid,
24871
- &.ng-valid.ng-touched,
24872
- &.ng-valid.ng-dirty {
25629
+ &.k-valid {
24873
25630
  @include fill( $border: $kendo-input-valid-border );
24874
25631
 
24875
25632
  .k-input-validation-icon {
@@ -24957,9 +25714,7 @@ $_kendo-module-meta: (
24957
25714
  }
24958
25715
 
24959
25716
  // Valid
24960
- &.k-valid,
24961
- &.ng-valid.ng-touched,
24962
- &.ng-valid.ng-dirty {
25717
+ &.k-valid {
24963
25718
  @include fill( $border: $kendo-input-valid-border );
24964
25719
 
24965
25720
  .k-input-validation-icon {
@@ -25071,9 +25826,7 @@ $_kendo-module-meta: (
25071
25826
  }
25072
25827
 
25073
25828
  // Valid
25074
- &.k-valid,
25075
- &.ng-valid.ng-touched,
25076
- &.ng-valid.ng-dirty {
25829
+ &.k-valid {
25077
25830
  @include fill( $border: $kendo-input-valid-border );
25078
25831
 
25079
25832
  .k-input-validation-icon {
@@ -26055,7 +26808,7 @@ $kendo-progressbar-line-height: 1 !default;
26055
26808
 
26056
26809
  /// The background color of the ProgressBar.
26057
26810
  /// @group progressbar
26058
- $kendo-progressbar-bg: k-try-shade( $kendo-component-bg, 1 ) !default;
26811
+ $kendo-progressbar-bg: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-component-bg, 1 )) !default;
26059
26812
  /// The text color of the ProgressBar.
26060
26813
  /// @group progressbar
26061
26814
  $kendo-progressbar-text: $kendo-component-text !default;
@@ -26071,10 +26824,10 @@ $kendo-progressbar-gradient: null !default;
26071
26824
  $kendo-progressbar-value-bg: $kendo-color-primary !default;
26072
26825
  /// The progress text color of the ProgressBar.
26073
26826
  /// @group progressbar
26074
- $kendo-progressbar-value-text: k-contrast-legacy( $kendo-progressbar-value-bg ) !default;
26827
+ $kendo-progressbar-value-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-progressbar-value-bg )) !default;
26075
26828
  /// The progress border color of the ProgressBar.
26076
26829
  /// @group progressbar
26077
- $kendo-progressbar-value-border: k-try-shade( $kendo-progressbar-value-bg ) !default;
26830
+ $kendo-progressbar-value-border: if($kendo-enable-color-system, k-color( primary-active ), k-try-shade( $kendo-progressbar-value-bg )) !default;
26078
26831
  /// The progress background gradient of the ProgressBar.
26079
26832
  /// @group progressbar
26080
26833
  $kendo-progressbar-value-gradient: null !default;
@@ -26386,7 +27139,7 @@ $kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
26386
27139
 
26387
27140
  .k-progressbar-indeterminate {
26388
27141
  @include fill( $kendo-progressbar-indeterminate-text, $kendo-progressbar-indeterminate-bg, $kendo-progressbar-indeterminate-border );
26389
- @include striped-gradient( k-color-shade($kendo-progressbar-indeterminate-bg) );
27142
+ @include striped-gradient( if($kendo-enable-color-system, rgba( k-color( base-emphasis, true ), .55 ), k-color-shade($kendo-progressbar-indeterminate-bg)) );
26390
27143
  background-size: $kendo-progressbar-height $kendo-progressbar-height;
26391
27144
  animation: kendo-progressbar-indeterminate-animation $kendo-progressbar-animation-timing;
26392
27145
  }
@@ -27055,28 +27808,28 @@ $kendo-slider-draghandle-active-scale: 1 !default;
27055
27808
  $kendo-slider-draghandle-active-size: null !default;
27056
27809
 
27057
27810
  $kendo-slider-draghandle-bg: $kendo-color-primary !default;
27058
- $kendo-slider-draghandle-text: k-contrast-legacy( $kendo-color-primary ) !default;
27811
+ $kendo-slider-draghandle-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-color-primary )) !default;
27059
27812
  $kendo-slider-draghandle-border: $kendo-color-primary !default;
27060
27813
  $kendo-slider-draghandle-gradient: null !default;
27061
27814
 
27062
- $kendo-slider-draghandle-hover-bg: k-try-shade( $kendo-color-primary , .5 ) !default;
27815
+ $kendo-slider-draghandle-hover-bg: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-color-primary , .5 )) !default;
27063
27816
  $kendo-slider-draghandle-hover-text: null !default;
27064
27817
  $kendo-slider-draghandle-hover-border: $kendo-color-primary !default;
27065
27818
  $kendo-slider-draghandle-hover-gradient: null !default;
27066
27819
 
27067
- $kendo-slider-draghandle-pressed-bg: k-try-shade( $kendo-color-primary , 1.5 ) !default;
27820
+ $kendo-slider-draghandle-pressed-bg: if($kendo-enable-color-system, k-color( primary-active ), k-try-shade( $kendo-color-primary , 1.5 )) !default;
27068
27821
  $kendo-slider-draghandle-pressed-text: null !default;
27069
- $kendo-slider-draghandle-pressed-border: k-try-shade( $kendo-color-primary , 1.5 ) !default;
27822
+ $kendo-slider-draghandle-pressed-border: if($kendo-enable-color-system, k-color( primary-active ), k-try-shade( $kendo-color-primary , 1.5 )) !default;
27070
27823
  $kendo-slider-draghandle-pressed-gradient: null !default;
27071
27824
 
27072
- $kendo-slider-draghandle-focus-shadow: 0 0 0 2px rgba( $kendo-color-primary , .3 ) !default;
27825
+ $kendo-slider-draghandle-focus-shadow: 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( primary, true ), .3 ), rgba( $kendo-color-primary , .3 )) !default;
27073
27826
 
27074
27827
  $kendo-slider-transition-speed: .3s !default;
27075
27828
  $kendo-slider-transition-function: ease-out !default;
27076
27829
  $kendo-slider-draghandle-transition-speed: .4s !default;
27077
27830
  $kendo-slider-draghandle-transition-function: cubic-bezier(.25, .8, .25, 1) !default;
27078
27831
 
27079
- $kendo-slider-track-bg: k-try-shade( $kendo-component-bg, 1 ) !default;
27832
+ $kendo-slider-track-bg: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-component-bg, 1 )) !default;
27080
27833
  $kendo-slider-selection-bg: $kendo-color-primary !default;
27081
27834
  $kendo-slider-disabled-opacity: null !default;
27082
27835
 
@@ -28460,7 +29213,7 @@ $kendo-calendar-sizes: (
28460
29213
  .k-calendar { // stylelint-disable-line
28461
29214
 
28462
29215
  $kendo-calendar-range-gap: 1px !default;
28463
- $kendo-calendar-range-bg: rgba( $kendo-calendar-cell-selected-bg, .25 );
29216
+ $kendo-calendar-range-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-calendar-cell-selected-bg, .25 ));
28464
29217
  $kendo-calendar-range-split-size: 5px !default;
28465
29218
 
28466
29219
  .k-range-start,
@@ -32715,7 +33468,7 @@ $kendo-switch-off-track-bg: $kendo-component-bg !default;
32715
33468
  $kendo-switch-off-track-text: $kendo-component-text !default;
32716
33469
  /// The border color of the track when the Switch is not checked.
32717
33470
  /// @group switch
32718
- $kendo-switch-off-track-border: k-try-shade( $kendo-switch-off-track-bg, 8% ) !default;
33471
+ $kendo-switch-off-track-border: if($kendo-enable-color-system, k-color( border ), k-try-shade( $kendo-switch-off-track-bg, 8% )) !default;
32719
33472
  /// The background gradient of the track when the Switch is not checked.
32720
33473
  /// @group switch
32721
33474
  $kendo-switch-off-track-gradient: null !default;
@@ -32747,7 +33500,7 @@ $kendo-switch-off-track-focus-border: null !default;
32747
33500
  $kendo-switch-off-track-focus-gradient: null !default;
32748
33501
  /// The ring around the track when the focused Switch is not checked.
32749
33502
  /// @group switch
32750
- $kendo-switch-off-track-focus-ring: 2px solid rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ) , .08 ) !default;
33503
+ $kendo-switch-off-track-focus-ring: 2px solid if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .08 ), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ) , .08 )) !default;
32751
33504
 
32752
33505
  /// The background of the track when the disabled Switch is not checked.
32753
33506
  /// @group switch
@@ -32794,7 +33547,7 @@ $kendo-switch-off-thumb-hover-gradient: null !default;
32794
33547
  $kendo-switch-on-track-bg: $kendo-color-primary !default;
32795
33548
  /// The text color of the track when the Switch is checked.
32796
33549
  /// @group switch
32797
- $kendo-switch-on-track-text: k-contrast-legacy( $kendo-switch-on-track-bg ) !default;
33550
+ $kendo-switch-on-track-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-switch-on-track-bg )) !default;
32798
33551
  /// The border color of the track when the Switch is checked.
32799
33552
  /// @group switch
32800
33553
  $kendo-switch-on-track-border: $kendo-switch-on-track-bg !default;
@@ -32829,7 +33582,7 @@ $kendo-switch-on-track-focus-border: null !default;
32829
33582
  $kendo-switch-on-track-focus-gradient: null !default;
32830
33583
  /// The ring around the track when the focused Switch is checked.
32831
33584
  /// @group switch
32832
- $kendo-switch-on-track-focus-ring: 2px solid rgba( $kendo-switch-on-track-border, .25 ) !default;
33585
+ $kendo-switch-on-track-focus-ring: 2px solid if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-switch-on-track-border, .25 )) !default;
32833
33586
 
32834
33587
  /// The background of the track when the disabled Switch is checked.
32835
33588
  /// @group switch
@@ -33094,7 +33847,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
33094
33847
  $kendo-switch-off-track-focus-gradient
33095
33848
  );
33096
33849
  @if $kendo-enable-focus-contrast {
33097
- @include box-shadow( 0 0 0 2px if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ) );
33850
+ @include box-shadow( 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )) );
33098
33851
  } @else {
33099
33852
  outline: $kendo-switch-off-track-focus-ring;
33100
33853
  }
@@ -33174,7 +33927,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
33174
33927
  $kendo-switch-on-track-focus-gradient
33175
33928
  );
33176
33929
  @if $kendo-enable-focus-contrast {
33177
- @include box-shadow( 0 0 0 2px if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ) );
33930
+ @include box-shadow( 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )) );
33178
33931
  } @else {
33179
33932
  outline: $kendo-switch-on-track-focus-ring;
33180
33933
  }
@@ -33327,7 +34080,7 @@ $kendo-dropzone-border: $kendo-base-border !default;
33327
34080
  $kendo-dropzone-icon-spacing: k-map-get( $kendo-spacing, 6 ) !default;
33328
34081
  /// The text color of the DropZone icon.
33329
34082
  /// @group dropzone
33330
- $kendo-dropzone-icon-text: k-try-tint( $kendo-dropzone-text, 4 ) !default;
34083
+ $kendo-dropzone-icon-text: if($kendo-enable-color-system, k-color( subtle ), k-try-tint( $kendo-dropzone-text, 4 )) !default;
33331
34084
  /// The text color of the hovered DropZone icon.
33332
34085
  /// @group dropzone
33333
34086
  $kendo-dropzone-icon-hover-text: $kendo-color-primary !default;
@@ -34027,14 +34780,14 @@ $kendo-appbar-gap: k-map-get( $kendo-spacing, 2 ) !default;
34027
34780
  $kendo-appbar-light-bg: $kendo-color-light !default;
34028
34781
  /// The text color of the AppBar based on light theme color.
34029
34782
  /// @group appbar
34030
- $kendo-appbar-light-text: k-contrast-legacy( $kendo-color-light ) !default;
34783
+ $kendo-appbar-light-text: if($kendo-enable-color-system, k-color( on-light ), k-contrast-legacy( $kendo-color-light )) !default;
34031
34784
 
34032
34785
  /// The background color of the AppBar based on dark theme color.
34033
34786
  /// @group appbar
34034
34787
  $kendo-appbar-dark-bg: $kendo-color-dark !default;
34035
34788
  /// The text color of the AppBar based on dark theme color.
34036
34789
  /// @group appbar
34037
- $kendo-appbar-dark-text: k-contrast-legacy( $kendo-color-dark ) !default;
34790
+ $kendo-appbar-dark-text: if($kendo-enable-color-system, k-color( on-dark ), k-contrast-legacy( $kendo-color-dark )) !default;
34038
34791
 
34039
34792
  /// The box shadow of the AppBar.
34040
34793
  /// @group appbar
@@ -34185,7 +34938,7 @@ $kendo-appbar-bottom-box-shadow: $kendo-appbar-box-shadow !default;
34185
34938
  color: $kendo-appbar-dark-text;
34186
34939
  background-color: $kendo-appbar-dark-bg;
34187
34940
  } @else {
34188
- color: k-contrast-legacy( $color );
34941
+ color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
34189
34942
  background-color: $color;
34190
34943
  }
34191
34944
  }
@@ -34591,7 +35344,7 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
34591
35344
  outline: $kendo-fab-border-width $kendo-fab-outline-style $color;
34592
35345
  outline-offset: -$kendo-fab-border-width;
34593
35346
  border-color: $color;
34594
- color: k-contrast-legacy( $color );
35347
+ color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
34595
35348
  background-color: $color;
34596
35349
  }
34597
35350
  }
@@ -34600,8 +35353,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
34600
35353
  @each $name, $color in $kendo-fab-theme-colors {
34601
35354
  .k-hover.k-fab-solid-#{$name},
34602
35355
  .k-fab-solid-#{$name}:hover {
34603
- border-color: k-try-shade( $color, .5 );
34604
- background-color: k-try-shade( $color, .5 );
35356
+ border-color: if($kendo-enable-color-system, k-color( #{$name}-hover ), k-try-shade( $color, .5 ));
35357
+ background-color: if($kendo-enable-color-system, k-color( #{$name}-hover ), k-try-shade( $color, .5 ));
34605
35358
  }
34606
35359
  }
34607
35360
 
@@ -34612,7 +35365,7 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
34612
35365
  @if $kendo-enable-focus-contrast {
34613
35366
  @include box-shadow( inset 0 0 0 2px currentColor );
34614
35367
  } @else {
34615
- outline: $kendo-fab-outline-style $kendo-fab-outline-width rgba( $color, .3 );
35368
+ outline: $kendo-fab-outline-style $kendo-fab-outline-width if($kendo-enable-color-system, rgba( k-color( $name, true ), .3 ), rgba( $color, .3 ));
34616
35369
  }
34617
35370
  }
34618
35371
  }
@@ -34623,8 +35376,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
34623
35376
  .k-selected.k-fab-solid-#{$name},
34624
35377
  .k-fab-solid-#{$name}:active {
34625
35378
  @include box-shadow($kendo-fab-active-shadow);
34626
- border-color: k-try-shade( $color, 1.5);
34627
- background-color: k-try-shade( $color, 1.5);
35379
+ border-color: if($kendo-enable-color-system, k-color( #{$name}-active ), k-try-shade( $color, 1.5));
35380
+ background-color: if($kendo-enable-color-system, k-color( #{$name}-active ), k-try-shade( $color, 1.5));
34628
35381
  }
34629
35382
  }
34630
35383
 
@@ -34633,8 +35386,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
34633
35386
  .k-disabled.k-fab-solid-#{$name},
34634
35387
  .k-fab-solid-#{$name}:disabled {
34635
35388
  @include box-shadow($kendo-fab-disabled-shadow);
34636
- background-color: k-try-tint( $color, 5 );
34637
- color: k-try-tint( k-contrast-legacy( $color ), 5 );
35389
+ background-color: if($kendo-enable-color-system, rgba( k-color( $name, true ), .6 ), k-try-tint( $color, 5 ));
35390
+ color: if($kendo-enable-color-system, rgba( k-color( on-#{$name}, true ), .6 ), k-try-tint( k-contrast-legacy( $color ), 5 ));
34638
35391
  opacity: 1;
34639
35392
  }
34640
35393
  }
@@ -34663,8 +35416,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
34663
35416
  // Hover state
34664
35417
  .k-fab-item.k-hover .k-fab-item-icon,
34665
35418
  .k-fab-item:hover .k-fab-item-icon {
34666
- border-color: k-try-shade( $kendo-fab-item-icon-border, .5 );
34667
- background-color: k-try-shade( $kendo-fab-item-icon-bg, .5 );
35419
+ border-color: if($kendo-enable-color-system, k-color( border ), k-try-shade( $kendo-fab-item-icon-border, .5 ));
35420
+ background-color: if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-fab-item-icon-bg, .5 ));
34668
35421
  }
34669
35422
 
34670
35423
  // Focus state
@@ -34673,7 +35426,7 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
34673
35426
  .k-fab-item.k-focus .k-fab-item-text,
34674
35427
  .k-fab-item.k-focus .k-fab-item-icon {
34675
35428
  @if $kendo-enable-focus-contrast {
34676
- @include box-shadow( inset 0 0 0 2px if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ) );
35429
+ @include box-shadow( inset 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )) );
34677
35430
  } @else {
34678
35431
  outline: $kendo-fab-item-outline-style $kendo-fab-item-outline-width $kendo-fab-item-outline-color;
34679
35432
  }
@@ -34683,8 +35436,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
34683
35436
  .k-fab-item.k-active .k-fab-item-icon,
34684
35437
  .k-fab-item:active .k-fab-item-icon {
34685
35438
  @include box-shadow($kendo-fab-item-active-shadow);
34686
- border-color: k-try-shade( $kendo-fab-item-icon-border, 1);
34687
- background-color: k-try-shade( $kendo-fab-item-icon-bg, 1);
35439
+ border-color: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-fab-item-icon-border, 1 ));
35440
+ background-color: if($kendo-enable-color-system, k-color( base-active ), k-try-shade( $kendo-fab-item-icon-bg, 1 ));
34688
35441
  }
34689
35442
 
34690
35443
  // Disabled state
@@ -34695,8 +35448,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
34695
35448
  .k-fab-item-text,
34696
35449
  .k-fab-item-icon {
34697
35450
  @include box-shadow($kendo-fab-item-disabled-shadow);
34698
- background-color: k-try-tint( $kendo-fab-item-bg, 5 );
34699
- color: k-try-tint( $kendo-fab-item-text, 5 );
35451
+ background-color: if($kendo-enable-color-system, rgba( k-color( base, true ), .6 ), k-try-tint( $kendo-fab-item-bg, 5 ));
35452
+ color: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .6 ), k-try-tint( $kendo-fab-item-text, 5 ));
34700
35453
  }
34701
35454
  }
34702
35455
 
@@ -35650,7 +36403,7 @@ $_kendo-module-meta: (
35650
36403
  // Window theme colors
35651
36404
  @each $name, $color in $kendo-window-theme-colors {
35652
36405
  .k-window-#{$name} .k-window-titlebar {
35653
- color: k-contrast-legacy( $color );
36406
+ color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
35654
36407
  background-color: $color;
35655
36408
  }
35656
36409
  }
@@ -35815,7 +36568,7 @@ $kendo-dialog-theme-colors: (
35815
36568
  // Dialog theme colors
35816
36569
  @each $name, $color in $kendo-dialog-theme-colors {
35817
36570
  .k-dialog-#{$name} .k-dialog-titlebar {
35818
- color: k-contrast-legacy( $color );
36571
+ color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
35819
36572
  background-color: $color;
35820
36573
  }
35821
36574
  }
@@ -36353,7 +37106,7 @@ $kendo-notification-icon-spacing: $kendo-icon-spacing !default;
36353
37106
 
36354
37107
  @each $name, $color in $colors {
36355
37108
  $_theme: k-map-merge(( $name: (
36356
- color: k-contrast-legacy( $color ),
37109
+ color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color )),
36357
37110
  background-color: $color,
36358
37111
  border: $color,
36359
37112
  )), $_theme );
@@ -36942,6 +37695,10 @@ $kendo-card-callout-height: 20px !default;
36942
37695
  gap: $kendo-card-actions-gap;
36943
37696
  }
36944
37697
 
37698
+ .k-card-horizontal .k-actions-horizontal {
37699
+ width: auto;
37700
+ }
37701
+
36945
37702
  // List
36946
37703
  .k-card-list {
36947
37704
  display: flex;
@@ -37158,9 +37915,9 @@ $kendo-card-callout-height: 20px !default;
37158
37915
  // Card theme colors
37159
37916
  @each $name, $color in $kendo-theme-colors {
37160
37917
  .k-card-#{$name} {
37161
- background-color: k-color-tint($color, 10);
37162
- color: k-color-shade($color, 6);
37163
- border-color: k-color-tint($color, 9);
37918
+ background-color: if($kendo-enable-color-system, k-color( #{$name}-subtle ), k-color-tint($color, 10));
37919
+ color: if($kendo-enable-color-system, k-color( #{$name}-on-subtle ), k-color-shade($color, 6));
37920
+ border-color: if($kendo-enable-color-system, k-color( #{$name}-emphasis ), k-color-tint($color, 9));
37164
37921
 
37165
37922
  .k-card-subtitle {
37166
37923
  color: inherit;
@@ -37834,17 +38591,17 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
37834
38591
  @each $name, $color in $kendo-theme-colors {
37835
38592
  .k-bottom-nav-solid-#{$name} {
37836
38593
  @include fill(
37837
- $color: k-true-mix( $color, k-contrast-legacy( $color ), 35%),
38594
+ $color: if($kendo-enable-color-system, rgba( k-color( on-#{$name}, true ), .65 ), k-true-mix( $color, k-contrast-legacy( $color ), 35%)),
37838
38595
  $bg: $color
37839
38596
  );
37840
38597
 
37841
38598
  .k-bottom-nav-item.k-focus,
37842
38599
  .k-bottom-nav-item:focus {
37843
- @include fill( $bg: rgba(k-true-mix( $color, k-contrast-legacy( $color ), 35%), .2));
38600
+ @include fill( $bg: if($kendo-enable-color-system, rgba( k-color( on-#{$name}, true ), .125 ), rgba(k-true-mix( $color, k-contrast-legacy( $color ), 35%), .2)));
37844
38601
  }
37845
38602
 
37846
38603
  .k-bottom-nav-item.k-selected {
37847
- @include fill( $color: k-contrast-legacy( $color ) );
38604
+ @include fill( $color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color )) );
37848
38605
  }
37849
38606
  }
37850
38607
  // TODO: remove when suites update class names
@@ -37864,12 +38621,12 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
37864
38621
 
37865
38622
  .k-bottom-nav-item.k-focus,
37866
38623
  .k-bottom-nav-item:focus {
37867
- @include fill( $bg: rgba($kendo-bottom-nav-flat-text, .05) );
38624
+ @include fill( $bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .05), rgba($kendo-bottom-nav-flat-text, .05)) );
37868
38625
  }
37869
38626
 
37870
38627
  .k-bottom-nav-item.k-selected {
37871
38628
  @if $name == "secondary" or $name == "light" {
37872
- @include fill( $color: k-try-shade($color, 3) );
38629
+ @include fill( $color: if($kendo-enable-color-system, k-color( #{$name} ), k-try-shade($color, 3)) );
37873
38630
  } @else {
37874
38631
  @include fill( $color: $color );
37875
38632
  }
@@ -38951,24 +39708,24 @@ $kendo-stepper-indicator-bg: $kendo-component-bg !default;
38951
39708
  $kendo-stepper-indicator-text: $kendo-component-text !default;
38952
39709
  $kendo-stepper-indicator-border: #cccccc !default;
38953
39710
 
38954
- $kendo-stepper-indicator-hover-bg: k-try-shade( $kendo-stepper-indicator-bg ) !default;
39711
+ $kendo-stepper-indicator-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-stepper-indicator-bg )) !default;
38955
39712
  $kendo-stepper-indicator-hover-text: null !default;
38956
39713
  $kendo-stepper-indicator-hover-border: null !default;
38957
39714
 
38958
39715
  $kendo-stepper-indicator-disabled-bg: null !default;
38959
- $kendo-stepper-indicator-disabled-text: $kendo-disabled-text !default;
39716
+ $kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .6 ), $kendo-disabled-text) !default;
38960
39717
  $kendo-stepper-indicator-disabled-border: null !default;
38961
39718
 
38962
39719
  $kendo-stepper-indicator-done-bg: $kendo-color-primary !default;
38963
- $kendo-stepper-indicator-done-text: k-contrast-legacy( $kendo-stepper-indicator-done-bg ) !default;
39720
+ $kendo-stepper-indicator-done-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-stepper-indicator-done-bg )) !default;
38964
39721
  $kendo-stepper-indicator-done-border: $kendo-stepper-indicator-done-bg !default;
38965
39722
 
38966
- $kendo-stepper-indicator-done-hover-bg: k-try-shade( $kendo-stepper-indicator-done-bg ) !default;
39723
+ $kendo-stepper-indicator-done-hover-bg: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-stepper-indicator-done-bg )) !default;
38967
39724
  $kendo-stepper-indicator-done-hover-text: null !default;
38968
39725
  $kendo-stepper-indicator-done-hover-border: null !default;
38969
39726
 
38970
- $kendo-stepper-indicator-done-disabled-bg: k-color-mix( $kendo-stepper-indicator-done-bg, $kendo-component-bg, 60%) !default;
38971
- $kendo-stepper-indicator-done-disabled-text: k-contrast-legacy( $kendo-stepper-indicator-done-bg ) !default;
39727
+ $kendo-stepper-indicator-done-disabled-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .6 ), k-color-mix( $kendo-stepper-indicator-done-bg, $kendo-component-bg, 60%)) !default;
39728
+ $kendo-stepper-indicator-done-disabled-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-stepper-indicator-done-bg )) !default;
38972
39729
  $kendo-stepper-indicator-done-disabled-border: $kendo-stepper-indicator-done-disabled-bg !default;
38973
39730
 
38974
39731
  $kendo-stepper-indicator-current-bg: $kendo-stepper-indicator-done-bg !default;
@@ -38986,8 +39743,8 @@ $kendo-stepper-indicator-current-disabled-border: $kendo-stepper-indicator-done-
38986
39743
  $kendo-stepper-label-text: null !default;
38987
39744
  $kendo-stepper-label-success-text: $kendo-color-success !default;
38988
39745
  $kendo-stepper-label-error-text: $kendo-color-error !default;
38989
- $kendo-stepper-label-hover-text: k-try-shade( $kendo-stepper-text, 2 ) !default;
38990
- $kendo-stepper-label-disabled-text: $kendo-disabled-text !default;
39746
+ $kendo-stepper-label-hover-text: if($kendo-enable-color-system, k-color( on-base ), k-try-shade( $kendo-stepper-text, 2 )) !default;
39747
+ $kendo-stepper-label-disabled-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .6 ), $kendo-disabled-text) !default;
38991
39748
 
38992
39749
  $kendo-stepper-optional-label-text: $kendo-subtle-text !default;
38993
39750
  $kendo-stepper-optional-label-opacity: null !default;
@@ -39081,6 +39838,17 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
39081
39838
  transition-duration: .4s;
39082
39839
  transition-timing-function: ease-in-out;
39083
39840
 
39841
+ &::before {
39842
+ @include border-radius( $kendo-stepper-indicator-border-radius );
39843
+ content: "";
39844
+ width: 100%;
39845
+ height: 100%;
39846
+ position: absolute;
39847
+ top: 0;
39848
+ left: 0;
39849
+ z-index: -1;
39850
+ }
39851
+
39084
39852
  &::after {
39085
39853
  @include border-radius( 100% );
39086
39854
  content: "";
@@ -39333,11 +40101,23 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
39333
40101
  &.k-disabled,
39334
40102
  &:disabled {
39335
40103
  .k-step-indicator {
39336
- @include fill(
39337
- $kendo-stepper-indicator-disabled-text,
39338
- $kendo-stepper-indicator-disabled-bg,
39339
- $kendo-stepper-indicator-disabled-border
39340
- );
40104
+ @if($kendo-enable-color-system) {
40105
+ @include fill(
40106
+ $kendo-stepper-indicator-disabled-text,
40107
+ k-color( app-surface ),
40108
+ $kendo-stepper-indicator-disabled-border
40109
+ );
40110
+
40111
+ &::before {
40112
+ background-color: $kendo-stepper-indicator-disabled-bg;
40113
+ }
40114
+ } @else {
40115
+ @include fill(
40116
+ $kendo-stepper-indicator-disabled-text,
40117
+ $kendo-stepper-indicator-disabled-bg,
40118
+ $kendo-stepper-indicator-disabled-border
40119
+ );
40120
+ }
39341
40121
  }
39342
40122
 
39343
40123
  .k-step-label {
@@ -39395,11 +40175,23 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
39395
40175
  &.k-disabled,
39396
40176
  &:disabled {
39397
40177
  .k-step-indicator {
39398
- @include fill(
39399
- $kendo-stepper-indicator-done-disabled-text,
39400
- $kendo-stepper-indicator-done-disabled-bg,
39401
- $kendo-stepper-indicator-done-disabled-border
39402
- );
40178
+ @if($kendo-enable-color-system) {
40179
+ @include fill(
40180
+ $kendo-stepper-indicator-done-disabled-text,
40181
+ k-color( app-surface ),
40182
+ $kendo-stepper-indicator-done-disabled-border
40183
+ );
40184
+
40185
+ &::before {
40186
+ background-color: $kendo-stepper-indicator-done-disabled-bg;
40187
+ }
40188
+ } @else {
40189
+ @include fill(
40190
+ $kendo-stepper-indicator-done-disabled-text,
40191
+ $kendo-stepper-indicator-done-disabled-bg,
40192
+ $kendo-stepper-indicator-done-disabled-border
40193
+ );
40194
+ }
39403
40195
  }
39404
40196
  }
39405
40197
  }
@@ -39436,11 +40228,23 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
39436
40228
  &.k-disabled,
39437
40229
  &:disabled {
39438
40230
  .k-step-indicator {
39439
- @include fill(
39440
- $kendo-stepper-indicator-current-disabled-text,
39441
- $kendo-stepper-indicator-current-disabled-bg,
39442
- $kendo-stepper-indicator-current-disabled-border
39443
- );
40231
+ @if($kendo-enable-color-system) {
40232
+ @include fill(
40233
+ $kendo-stepper-indicator-current-disabled-text,
40234
+ k-color( app-surface ),
40235
+ $kendo-stepper-indicator-current-disabled-border
40236
+ );
40237
+
40238
+ &::before {
40239
+ background-color: $kendo-stepper-indicator-current-disabled-bg;
40240
+ }
40241
+ } @else {
40242
+ @include fill(
40243
+ $kendo-stepper-indicator-current-disabled-text,
40244
+ $kendo-stepper-indicator-current-disabled-bg,
40245
+ $kendo-stepper-indicator-current-disabled-border
40246
+ );
40247
+ }
39444
40248
  }
39445
40249
  }
39446
40250
  }
@@ -40758,7 +41562,7 @@ $kendo-panelbar-header-text: $kendo-link-text !default;
40758
41562
  $kendo-panelbar-header-border: null !default;
40759
41563
  $kendo-panelbar-header-gradient: null !default;
40760
41564
 
40761
- $kendo-panelbar-header-hover-bg: k-try-shade( $kendo-panelbar-header-bg, .5 ) !default;
41565
+ $kendo-panelbar-header-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-panelbar-header-bg, .5 )) !default;
40762
41566
  $kendo-panelbar-header-hover-text: null !default;
40763
41567
  $kendo-panelbar-header-hover-border: null !default;
40764
41568
  $kendo-panelbar-header-hover-gradient: null !default;
@@ -40779,7 +41583,7 @@ $kendo-panelbar-header-selected-text: $kendo-selected-text !default;
40779
41583
  $kendo-panelbar-header-selected-border: null !default;
40780
41584
  $kendo-panelbar-header-selected-gradient: null !default;
40781
41585
 
40782
- $kendo-panelbar-header-selected-hover-bg: k-try-shade( $kendo-panelbar-header-selected-bg ) !default;
41586
+ $kendo-panelbar-header-selected-hover-bg: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-panelbar-header-selected-bg )) !default;
40783
41587
  $kendo-panelbar-header-selected-hover-text: null !default;
40784
41588
  $kendo-panelbar-header-selected-hover-border: null !default;
40785
41589
  $kendo-panelbar-header-selected-hover-gradient: null !default;
@@ -40794,7 +41598,7 @@ $kendo-panelbar-header-selected-hover-focus-text: null !default;
40794
41598
  $kendo-panelbar-header-selected-hover-focus-border: null !default;
40795
41599
  $kendo-panelbar-header-selected-hover-focus-gradient: null !default;
40796
41600
 
40797
- $kendo-panelbar-item-hover-bg: k-try-shade( $kendo-panelbar-bg, .5 ) !default;
41601
+ $kendo-panelbar-item-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-panelbar-bg, .5 )) !default;
40798
41602
  $kendo-panelbar-item-hover-text: null !default;
40799
41603
  $kendo-panelbar-item-hover-border: null !default;
40800
41604
  $kendo-panelbar-item-hover-gradient: null !default;
@@ -40815,7 +41619,7 @@ $kendo-panelbar-item-selected-text: $kendo-selected-text !default;
40815
41619
  $kendo-panelbar-item-selected-border: null !default;
40816
41620
  $kendo-panelbar-item-selected-gradient: null !default;
40817
41621
 
40818
- $kendo-panelbar-item-selected-hover-bg: k-try-shade( $kendo-panelbar-item-selected-bg ) !default;
41622
+ $kendo-panelbar-item-selected-hover-bg: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-panelbar-item-selected-bg )) !default;
40819
41623
  $kendo-panelbar-item-selected-hover-text: null !default;
40820
41624
  $kendo-panelbar-item-selected-hover-border: null !default;
40821
41625
  $kendo-panelbar-item-selected-hover-gradient: null !default;
@@ -41290,7 +42094,7 @@ $kendo-splitter-collapse-icon-padding-y: k-map-get( $kendo-spacing, .5 ) !defaul
41290
42094
  $kendo-splitbar-bg: $kendo-base-bg !default;
41291
42095
  $kendo-splitbar-text: $kendo-base-text !default;
41292
42096
 
41293
- $kendo-splitbar-hover-bg: k-try-shade( $kendo-splitbar-bg, .5 ) !default;
42097
+ $kendo-splitbar-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-splitbar-bg, .5 )) !default;
41294
42098
  $kendo-splitbar-hover-text: $kendo-splitbar-text !default;
41295
42099
 
41296
42100
  $kendo-splitbar-selected-bg: $kendo-selected-bg !default;
@@ -41873,7 +42677,7 @@ $kendo-dock-manager-dock-preview-border-style: dashed !default;
41873
42677
  $kendo-dock-manager-dock-preview-border-radius: $kendo-border-radius-sm !default;
41874
42678
  /// The background color of the dropping area in the DockManager component.
41875
42679
  /// @group dock-manager
41876
- $kendo-dock-manager-dock-preview-bg: rgba( $kendo-color-primary, .16 ) !default;
42680
+ $kendo-dock-manager-dock-preview-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .16 ), rgba( $kendo-color-primary, .16 )) !default;
41877
42681
  /// The border color of the dropping area in the DockManager component.
41878
42682
  /// @group dock-manager
41879
42683
  $kendo-dock-manager-dock-preview-border: $kendo-color-primary !default;
@@ -42269,7 +43073,7 @@ $kendo-adaptive-content-bg: $kendo-app-bg !default;
42269
43073
  $kendo-adaptive-content-text: $kendo-app-text !default;
42270
43074
 
42271
43075
  $kendo-adaptive-menu-bg: $kendo-color-primary !default;
42272
- $kendo-adaptive-menu-text: k-contrast-legacy( $kendo-adaptive-menu-bg ) !default;
43076
+ $kendo-adaptive-menu-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-adaptive-menu-bg )) !default;
42273
43077
 
42274
43078
  $kendo-adaptive-menu-clear-text: $kendo-color-primary !default;
42275
43079
 
@@ -43198,7 +44002,7 @@ $kendo-grid-grouping-row-bg: $kendo-base-bg !default;
43198
44002
  $kendo-grid-grouping-row-text: $kendo-grid-text !default;
43199
44003
 
43200
44004
  $kendo-grid-sorted-icon-spacing: calc( #{$kendo-padding-md-x} - 1px ) !default;
43201
- $kendo-grid-sorted-bg: rgba( k-contrast-legacy( $kendo-grid-bg ), .02 ) !default;
44005
+ $kendo-grid-sorted-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .03 ), rgba( k-contrast-legacy( $kendo-grid-bg ), .02 )) !default;
43202
44006
  $kendo-grid-sorting-indicator-text: $kendo-color-primary !default;
43203
44007
  $kendo-grid-sorting-index-font-size: $kendo-font-size-sm !default;
43204
44008
  $kendo-grid-sorting-index-height: $kendo-icon-size !default;
@@ -43212,11 +44016,13 @@ $kendo-grid-command-cell-button-spacing: k-map-get( $kendo-spacing, 2 ) !default
43212
44016
  // be cautious when changing the next line; see https://github.com/MoOx/reduce-css-calc/issues/38
43213
44017
  $kendo-grid-command-cell-padding-y: calc( #{$kendo-grid-cell-padding-y} - (#{$kendo-button-calc-size} - #{$kendo-line-height-em}) / 2 ) !default;
43214
44018
 
44019
+ // Must be a solid color
43215
44020
  $kendo-grid-sticky-bg: $kendo-component-bg !default;
43216
44021
  $kendo-grid-sticky-text: $kendo-grid-text !default;
43217
44022
  $kendo-grid-sticky-border: rgba( black, .3 ) !default;
43218
44023
 
43219
- $kendo-grid-sticky-alt-bg: k-color-shade($kendo-grid-bg, 3.5%) !default;
44024
+ // Must be a solid color
44025
+ $kendo-grid-sticky-alt-bg: if($kendo-enable-color-system, k-color( base ), k-color-shade($kendo-grid-bg, 3.5%)) !default;
43220
44026
 
43221
44027
  $kendo-grid-sticky-header-bg: $kendo-grid-header-bg !default;
43222
44028
  $kendo-grid-sticky-header-text: $kendo-grid-header-text !default;
@@ -43225,11 +44031,12 @@ $kendo-grid-sticky-header-border: $kendo-grid-sticky-border !default;
43225
44031
  $kendo-grid-sticky-footer-bg: $kendo-grid-header-bg !default;
43226
44032
  $kendo-grid-sticky-footer-hover-bg: $kendo-grid-hover-bg !default;
43227
44033
 
43228
- $kendo-grid-sticky-selected-bg: k-color-mix($kendo-selected-bg, #ffffff, 25%) !default;
43229
- $kendo-grid-sticky-selected-alt-bg: k-color-shade($kendo-grid-sticky-selected-bg, .4) !default;
44034
+ $kendo-grid-sticky-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), k-color-mix($kendo-selected-bg, #ffffff, 25%)) !default;
44035
+ $kendo-grid-sticky-selected-alt-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .24 ), k-color-shade($kendo-grid-sticky-selected-bg, .4)) !default;
43230
44036
 
43231
- $kendo-grid-sticky-hover-bg: k-color-darken($kendo-grid-bg, 8%) !default;
43232
- $kendo-grid-sticky-selected-hover-bg: k-color-shade($kendo-grid-sticky-selected-bg, .7) !default;
44037
+ // Must be a solid color
44038
+ $kendo-grid-sticky-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), k-color-darken($kendo-grid-bg, 8%)) !default;
44039
+ $kendo-grid-sticky-selected-hover-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .24 ), k-color-shade($kendo-grid-sticky-selected-bg, .7)) !default;
43233
44040
 
43234
44041
  $kendo-grid-column-menu-width: 230px !default;
43235
44042
  $kendo-grid-column-menu-max-width: 320px !default;
@@ -43280,7 +44087,7 @@ $kendo-grid-group-footer-second-cell-border: 1px !default;
43280
44087
 
43281
44088
  /// Background color of the grid row resize indicator
43282
44089
  /// @group grid
43283
- $kendo-grid-row-resizer-hover-bg: rgba( k-contrast-color( $kendo-grid-bg ), .12 ) !default;
44090
+ $kendo-grid-row-resizer-hover-bg: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .2 ), rgba( k-contrast-color( $kendo-grid-bg ), .12 )) !default;
43284
44091
  /// Active background color of the grid row resize indicator
43285
44092
  /// @group grid
43286
44093
  $kendo-grid-row-resizer-active-bg: $kendo-color-primary !default;
@@ -44070,6 +44877,16 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
44070
44877
  }
44071
44878
  }
44072
44879
 
44880
+ .k-master-row .k-grid-content-sticky::before {
44881
+ content: "";
44882
+ width: 100%;
44883
+ height: 100%;
44884
+ position: absolute;
44885
+ top: 0;
44886
+ left: 0;
44887
+ z-index: -1;
44888
+ }
44889
+
44073
44890
  kendo-grid {
44074
44891
  .k-table-row.k-grid-row-sticky {
44075
44892
  border: 0;
@@ -44919,14 +45736,30 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
44919
45736
  &.k-table-row.k-selected .k-table-td.k-grid-row-sticky,
44920
45737
  &.k-table-row td.k-grid-content-sticky.k-selected,
44921
45738
  &.k-table-row .k-table-td.k-grid-content-sticky.k-selected {
44922
- @include fill( $bg: $kendo-grid-sticky-selected-bg );
45739
+ @if($kendo-enable-color-system) {
45740
+ @include fill( $bg: $kendo-grid-sticky-bg );
45741
+
45742
+ &::before {
45743
+ @include fill( $bg: $kendo-grid-sticky-selected-bg );
45744
+ }
45745
+ } @else {
45746
+ @include fill( $bg: $kendo-grid-sticky-selected-bg );
45747
+ }
44923
45748
  }
44924
45749
 
44925
45750
  &.k-selected.k-table-alt-row td.k-grid-content-sticky,
44926
45751
  &.k-selected.k-table-alt-row .k-table-td.k-grid-row-sticky,
44927
45752
  &.k-table-alt-row td.k-grid-content-sticky.k-selected,
44928
45753
  &.k-table-alt-row .k-table-td.k-grid-content-sticky.k-selected {
44929
- @include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
45754
+ @if($kendo-enable-color-system) {
45755
+ @include fill( $bg: $kendo-grid-sticky-alt-bg );
45756
+
45757
+ &::before {
45758
+ @include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
45759
+ }
45760
+ } @else {
45761
+ @include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
45762
+ }
44930
45763
  }
44931
45764
 
44932
45765
 
@@ -44948,7 +45781,15 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
44948
45781
  &.k-hover td.k-grid-content-sticky.k-selected,
44949
45782
  &:hover .k-table-td.k-grid-content-sticky.k-selected,
44950
45783
  &.k-hover .k-table-td.k-grid-content-sticky.k-selected {
44951
- background-color: $kendo-grid-sticky-selected-hover-bg;
45784
+ @if($kendo-enable-color-system) {
45785
+ background-color: $kendo-grid-sticky-hover-bg;
45786
+
45787
+ &::before {
45788
+ background-color: $kendo-grid-sticky-selected-hover-bg;
45789
+ }
45790
+ } @else {
45791
+ background-color: $kendo-grid-sticky-selected-hover-bg;
45792
+ }
44952
45793
  }
44953
45794
  }
44954
45795
 
@@ -44994,14 +45835,30 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
44994
45835
  .k-selected.k-grid-row-sticky .k-table-td,
44995
45836
  .k-grid-row-sticky .k-table-td.k-selected,
44996
45837
  .k-selected.k-grid-content-sticky {
44997
- @include fill( $bg: $kendo-grid-sticky-selected-bg );
45838
+ @if($kendo-enable-color-system) {
45839
+ @include fill( $bg: $kendo-grid-sticky-bg );
45840
+
45841
+ &::before {
45842
+ @include fill( $bg: $kendo-grid-sticky-selected-bg );
45843
+ }
45844
+ } @else {
45845
+ @include fill( $bg: $kendo-grid-sticky-selected-bg );
45846
+ }
44998
45847
  }
44999
45848
 
45000
45849
  .k-table-row.k-selected.k-table-alt-row .k-grid-content-sticky,
45001
45850
  .k-selected.k-table-alt-row.k-grid-row-sticky td,
45002
45851
  .k-selected.k-table-alt-row.k-grid-row-sticky .k-table-td,
45003
45852
  .k-table-alt-row .k-selected.k-grid-content-sticky {
45004
- @include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
45853
+ @if($kendo-enable-color-system) {
45854
+ @include fill( $bg: $kendo-grid-sticky-alt-bg );
45855
+
45856
+ &::before {
45857
+ @include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
45858
+ }
45859
+ } @else {
45860
+ @include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
45861
+ }
45005
45862
  }
45006
45863
 
45007
45864
  // Hover state
@@ -45039,7 +45896,15 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
45039
45896
  .k-grid-row-sticky.k-hover .k-table-td.k-selected,
45040
45897
  .k-table-row:hover .k-grid-content-sticky.k-selected,
45041
45898
  .k-table-row.k-hover .k-grid-content-sticky.k-selected {
45042
- background-color: $kendo-grid-sticky-selected-hover-bg;
45899
+ @if($kendo-enable-color-system) {
45900
+ background-color: $kendo-grid-sticky-hover-bg;
45901
+
45902
+ &::before {
45903
+ background-color: $kendo-grid-sticky-selected-hover-bg;
45904
+ }
45905
+ } @else {
45906
+ background-color: $kendo-grid-sticky-selected-hover-bg;
45907
+ }
45043
45908
  }
45044
45909
  }
45045
45910
 
@@ -45258,7 +46123,7 @@ $kendo-listview-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
45258
46123
  $kendo-listview-item-selected-text: null !default;
45259
46124
  /// The background color of the selected ListView items.
45260
46125
  /// @group listview
45261
- $kendo-listview-item-selected-bg: rgba( $kendo-selected-bg, .25 ) !default;
46126
+ $kendo-listview-item-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25)) !default;
45262
46127
  /// The border color of the selected ListView items.
45263
46128
  /// @group listview
45264
46129
  $kendo-listview-item-selected-border: null !default;
@@ -45622,7 +46487,7 @@ $kendo-spreadsheet-formula-input-line-height: $kendo-input-line-height !default;
45622
46487
  $kendo-spreadsheet-view-font-family: Arial, Verdana, sans-serif !default;
45623
46488
  $kendo-spreadsheet-view-font-size: $kendo-spreadsheet-font-size !default;
45624
46489
 
45625
- $kendo-spreadsheet-selection-bg: rgba( $kendo-selected-bg, .25 ) !default;
46490
+ $kendo-spreadsheet-selection-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25)) !default;
45626
46491
  $kendo-spreadsheet-selection-text: null !default;
45627
46492
  $kendo-spreadsheet-selection-border: $kendo-selected-bg !default;
45628
46493
  $kendo-spreadsheet-selection-shadow: inset 0 0 0 1px $kendo-selected-bg !default;
@@ -45631,12 +46496,12 @@ $kendo-spreadsheet-single-selection-bg: $kendo-selected-bg !default;
45631
46496
  $kendo-spreadsheet-single-selection-text: null !default;
45632
46497
  $kendo-spreadsheet-single-selection-border: $kendo-spreadsheet-bg !default;
45633
46498
 
45634
- $kendo-spreadsheet-partial-selection-bg: rgba( $kendo-selected-bg, .25 ) !default;
46499
+ $kendo-spreadsheet-partial-selection-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25)) !default;
45635
46500
 
45636
46501
  $kendo-spreadsheet-active-cell-bg: $kendo-spreadsheet-bg !default;
45637
46502
  $kendo-spreadsheet-active-cell-shadow: inset 0 0 0 1px $kendo-selected-bg !default;
45638
46503
 
45639
- $kendo-spreadsheet-auto-fill-bg: rgba( $kendo-selected-bg, .25 ) !default;
46504
+ $kendo-spreadsheet-auto-fill-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25)) !default;
45640
46505
  $kendo-spreadsheet-auto-fill-text: null !default;
45641
46506
  $kendo-spreadsheet-auto-fill-border: $kendo-selected-bg !default;
45642
46507
  $kendo-spreadsheet-auto-fill-shadow: inset 0 0 0 1px $kendo-selected-bg !default;
@@ -45684,7 +46549,7 @@ $kendo-spreadsheet-drawing-handle-bg: $kendo-color-primary !default;
45684
46549
  $kendo-spreadsheet-drawing-handle-border-radius: $kendo-border-radius-lg !default;
45685
46550
  $kendo-spreadsheet-drawing-outline-style: solid !default;
45686
46551
  $kendo-spreadsheet-drawing-outline-width: 2px !default;
45687
- $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
46552
+ $kendo-spreadsheet-drawing-anchor-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25)) !default;
45688
46553
 
45689
46554
  $kendo-spreadsheet-dropzone-spacing-y: k-map-get( $kendo-spacing, 4 ) !default;
45690
46555
 
@@ -46905,21 +47770,21 @@ $kendo-pivotgrid-bg: $kendo-component-bg !default;
46905
47770
  $kendo-pivotgrid-text: $kendo-component-text !default;
46906
47771
  $kendo-pivotgrid-border: $kendo-component-border !default;
46907
47772
 
46908
- $kendo-pivotgrid-alt-border: k-try-shade($kendo-pivotgrid-border, 2) !default;
47773
+ $kendo-pivotgrid-alt-border: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade($kendo-pivotgrid-border, 2)) !default;
46909
47774
 
46910
47775
  $kendo-pivotgrid-headers-bg: $kendo-component-header-bg !default;
46911
47776
  $kendo-pivotgrid-headers-text: $kendo-component-header-text !default;
46912
47777
  $kendo-pivotgrid-headers-border: $kendo-component-header-border !default;
46913
47778
 
46914
- $kendo-pivotgrid-total-bg: k-try-shade( $kendo-pivotgrid-bg, 1 ) !default;
47779
+ $kendo-pivotgrid-total-bg: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-pivotgrid-bg, 1 )) !default;
46915
47780
  $kendo-pivotgrid-total-text: $kendo-component-header-text !default;
46916
47781
  $kendo-pivotgrid-total-border: $kendo-component-header-border !default;
46917
47782
 
46918
- $kendo-pivotgrid-hover-bg: k-color-darken($kendo-pivotgrid-bg, 7%) !default;
47783
+ $kendo-pivotgrid-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), k-color-darken($kendo-pivotgrid-bg, 7%)) !default;
46919
47784
  $kendo-pivotgrid-hover-text: null !default;
46920
47785
  $kendo-pivotgrid-hover-border: null !default;
46921
47786
 
46922
- $kendo-pivotgrid-selected-bg: rgba($kendo-selected-bg, .25) !default;
47787
+ $kendo-pivotgrid-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25)) !default;
46923
47788
  $kendo-pivotgrid-selected-text: null !default;
46924
47789
  $kendo-pivotgrid-selected-border: null !default;
46925
47790
 
@@ -46988,7 +47853,7 @@ $kendo-pivotgrid-alt-text: $kendo-grid-header-text !default;
46988
47853
  $kendo-pivotgrid-chrome-border: $kendo-grid-border !default;
46989
47854
 
46990
47855
  $kendo-pivotgrid-container-bg: $kendo-component-bg !default;
46991
- $kendo-pivotgrid-row-headers-bg: k-try-shade( $kendo-component-bg, 1 ) !default;
47856
+ $kendo-pivotgrid-row-headers-bg: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-component-bg, 1 )) !default;
46992
47857
 
46993
47858
  $kendo-pivotgrid-button-bg: null !default;
46994
47859
  $kendo-pivotgrid-button-text: null !default;
@@ -48556,7 +49421,7 @@ $kendo-file-manager-listview-item-border: null !default;
48556
49421
  $kendo-file-manager-listview-item-icon-bg: null !default;
48557
49422
  /// The text color of the FileManager ListView item icon.
48558
49423
  /// @group filemanager
48559
- $kendo-file-manager-listview-item-icon-text: k-try-tint($kendo-file-manager-text, 4) !default;
49424
+ $kendo-file-manager-listview-item-icon-text: if($kendo-enable-color-system, k-color( subtle ), k-try-tint($kendo-file-manager-text, 4)) !default;
48560
49425
  /// The border color of the FileManager ListView item icon.
48561
49426
  /// @group filemanager
48562
49427
  $kendo-file-manager-listview-item-icon-border: null !default;
@@ -48613,7 +49478,7 @@ $kendo-file-manager-preview-border: null !default;
48613
49478
  $kendo-file-manager-preview-icon-bg: null !default;
48614
49479
  /// The text color of the FileManager preview icon.
48615
49480
  /// @group filemanager
48616
- $kendo-file-manager-preview-icon-text: k-try-tint($kendo-file-manager-text, 4) !default;
49481
+ $kendo-file-manager-preview-icon-text: if($kendo-enable-color-system, k-color( subtle ), k-try-tint($kendo-file-manager-text, 4)) !default;
48617
49482
  /// The border color of the FileManager preview icon.
48618
49483
  /// @group filemanager
48619
49484
  $kendo-file-manager-preview-icon-border: null !default;
@@ -48644,6 +49509,7 @@ $kendo-file-manager-preview-icon-border: null !default;
48644
49509
  border-bottom-width: $kendo-file-manager-toolbar-border-width;
48645
49510
  border-color: inherit;
48646
49511
  flex-shrink: 0;
49512
+ z-index: 1;
48647
49513
  }
48648
49514
 
48649
49515
 
@@ -48658,6 +49524,10 @@ $kendo-file-manager-preview-icon-border: null !default;
48658
49524
  overflow: hidden;
48659
49525
  }
48660
49526
 
49527
+ .k-filemanager-splitter {
49528
+ border-width: 0;
49529
+ }
49530
+
48661
49531
 
48662
49532
  // Navigation
48663
49533
  .k-filemanager-navigation {
@@ -49085,7 +49955,7 @@ $kendo-taskboard-column-border: transparent !default;
49085
49955
 
49086
49956
  $kendo-taskboard-column-focus-bg: null !default;
49087
49957
  $kendo-taskboard-column-focus-text: null !default;
49088
- $kendo-taskboard-column-focus-border: k-try-shade( $kendo-base-border, 2.5 ) !default;
49958
+ $kendo-taskboard-column-focus-border: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-base-border, 2.5 )) !default;
49089
49959
 
49090
49960
  $kendo-taskboard-column-header-padding-y: k-math-div( $kendo-taskboard-spacer, 2 ) !default;
49091
49961
  $kendo-taskboard-column-header-padding-x: $kendo-taskboard-column-header-padding-y !default;
@@ -49128,17 +49998,17 @@ $kendo-taskboard-card-border: $kendo-card-border !default;
49128
49998
 
49129
49999
  $kendo-taskboard-card-category-border-width: 4px !default;
49130
50000
 
49131
- $kendo-taskboard-card-focus-border: k-try-shade( $kendo-taskboard-card-border, 18% ) !default;
49132
- $kendo-taskboard-card-focus-shadow: none !default;
50001
+ $kendo-taskboard-card-hover-border: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-taskboard-card-border, 10% )) !default;
49133
50002
 
49134
- $kendo-taskboard-card-hover-border: k-try-shade( $kendo-taskboard-card-border, 10% ) !default;
50003
+ $kendo-taskboard-card-focus-border: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-taskboard-card-border, 18% )) !default;
50004
+ $kendo-taskboard-card-focus-shadow: none !default;
49135
50005
 
49136
- $kendo-taskboard-card-selected-border: k-color-tint( $kendo-color-primary-lighter, 5 ) !default;
50006
+ $kendo-taskboard-card-selected-border: if($kendo-enable-color-system, k-color( primary-emphasis ), k-color-tint( $kendo-color-primary-lighter, 5 )) !default;
49137
50007
  $kendo-taskboard-card-selected-shadow: none !default;
49138
50008
 
49139
50009
  $kendo-taskboard-card-header-text: $kendo-color-primary !default;
49140
- $kendo-taskboard-card-header-focus-text: $kendo-color-primary-darker !default;
49141
- $kendo-taskboard-card-header-hover-text: $kendo-color-primary-darker !default;
50010
+ $kendo-taskboard-card-header-hover-text: if($kendo-enable-color-system, k-color( primary-hover ), $kendo-color-primary-darker) !default;
50011
+ $kendo-taskboard-card-header-focus-text: if($kendo-enable-color-system, k-color( primary-hover ), $kendo-color-primary-darker) !default;
49142
50012
 
49143
50013
  $kendo-taskboard-drag-placeholder-border-width: 1px !default;
49144
50014
  $kendo-taskboard-drag-placeholder-border-radius: $kendo-taskboard-card-border-radius !default;
@@ -49599,7 +50469,7 @@ $kendo-editor-selected-bg: $kendo-color-primary !default;
49599
50469
 
49600
50470
  /// The highlighted background color of the Editor.
49601
50471
  /// @group editor
49602
- $kendo-editor-highlighted-bg: k-color-mix($kendo-color-primary, #ffffff, 20%) !default;
50472
+ $kendo-editor-highlighted-bg: if($kendo-enable-color-system, k-color( primary-subtle ), k-color-mix($kendo-color-primary, #ffffff, 20%)) !default;
49603
50473
 
49604
50474
  /// The horizontal margin of the Editor's export tool icon.
49605
50475
  /// @group editor
@@ -50813,12 +51683,12 @@ $kendo-gantt-treelist-bg: null !default;
50813
51683
  $kendo-gantt-treelist-text: null !default;
50814
51684
  $kendo-gantt-treelist-border: null !default;
50815
51685
 
50816
- $kendo-gantt-nonwork-bg: rgba( k-contrast-legacy( $kendo-gantt-bg ), .025 ) !default;
51686
+ $kendo-gantt-nonwork-bg: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .03 ), rgba( k-contrast-legacy( $kendo-gantt-bg ), .025 )) !default;
50817
51687
  $kendo-gantt-nonwork-text: null !default;
50818
51688
  $kendo-gantt-nonwork-border: null !default;
50819
51689
 
50820
51690
  $kendo-gantt-line-size: 2px !default;
50821
- $kendo-gantt-line-fill: k-contrast-legacy( $kendo-gantt-bg ) !default;
51691
+ $kendo-gantt-line-fill: if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $kendo-gantt-bg )) !default;
50822
51692
  $kendo-gantt-line-selected-fill: $kendo-color-primary !default;
50823
51693
 
50824
51694
  $kendo-gantt-dot-size: 8px !default;
@@ -50833,19 +51703,19 @@ $kendo-gantt-milestone-border: $kendo-gantt-border !default;
50833
51703
  $kendo-gantt-milestone-selected-bg: $kendo-selected-bg !default;
50834
51704
  $kendo-gantt-milestone-selected-border: $kendo-selected-border !default;
50835
51705
 
50836
- $kendo-gantt-summary-bg: k-try-tint( $kendo-gantt-text, 1 ) !default;
50837
- $kendo-gantt-summary-progress-bg: k-try-shade( $kendo-gantt-text, 5 ) !default;
50838
- $kendo-gantt-summary-selected-bg: k-try-tint( $kendo-selected-bg, 6 ) !default;
51706
+ $kendo-gantt-summary-bg: if($kendo-enable-color-system, k-color( subtle ), k-try-tint( $kendo-gantt-text, 1 )) !default;
51707
+ $kendo-gantt-summary-progress-bg: if($kendo-enable-color-system, k-color( on-base ), k-try-shade( $kendo-gantt-text, 5 )) !default;
51708
+ $kendo-gantt-summary-selected-bg: if($kendo-enable-color-system, k-color( primary-subtle-active ), k-try-tint( $kendo-selected-bg, 6 )) !default;
50839
51709
  $kendo-gantt-summary-progress-selected-bg: $kendo-selected-bg !default;
50840
51710
 
50841
51711
  $kendo-gantt-task-border-width: 0px !default;
50842
51712
  $kendo-gantt-task-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
50843
51713
  $kendo-gantt-task-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
50844
- $kendo-gantt-task-bg: k-try-tint( $kendo-gantt-text, 2 ) !default;
50845
- $kendo-gantt-task-text: k-contrast-legacy( $kendo-gantt-text ) !default;
51714
+ $kendo-gantt-task-bg: if($kendo-enable-color-system, k-color( subtle ), k-try-tint( $kendo-gantt-text, 2 )) !default;
51715
+ $kendo-gantt-task-text: if($kendo-enable-color-system, k-color( base ), k-contrast-legacy( $kendo-gantt-text )) !default;
50846
51716
  $kendo-gantt-task-border: null !default;
50847
51717
  $kendo-gantt-task-progress-bg: $kendo-gantt-text !default;
50848
- $kendo-gantt-task-selected-bg: k-try-tint( $kendo-selected-bg, 6 ) !default;
51718
+ $kendo-gantt-task-selected-bg: if($kendo-enable-color-system, k-color( primary-subtle-active ), k-try-tint( $kendo-selected-bg, 6 )) !default;
50849
51719
  $kendo-gantt-task-selected-text: $kendo-selected-text !default;
50850
51720
  $kendo-gantt-task-selected-border: null !default;
50851
51721
  $kendo-gantt-task-progress-selected-bg: $kendo-selected-bg !default;
@@ -50879,10 +51749,10 @@ $kendo-gantt-planned-bg: $kendo-color-primary !default;
50879
51749
  $kendo-gantt-planned-border: $kendo-gantt-planned-bg !default;
50880
51750
 
50881
51751
  $kendo-gantt-delayed-bg: $kendo-color-error !default;
50882
- $kendo-gantt-delayed-bg-lighter: k-color-tint($kendo-gantt-delayed-bg, 5) !default;
51752
+ $kendo-gantt-delayed-bg-lighter: if($kendo-enable-color-system, k-color( error-emphasis ), k-color-tint($kendo-gantt-delayed-bg, 5)) !default;
50883
51753
 
50884
51754
  $kendo-gantt-advanced-bg: $kendo-color-success !default;
50885
- $kendo-gantt-advanced-bg-lighter: k-color-tint($kendo-gantt-advanced-bg, 5) !default;
51755
+ $kendo-gantt-advanced-bg-lighter: if($kendo-enable-color-system, k-color( success-emphasis ), k-color-tint($kendo-gantt-advanced-bg, 5)) !default;
50886
51756
 
50887
51757
  $kendo-gantt-action-on-offset-text: #000000 !default;
50888
51758
  $kendo-gantt-offset-resize-handler-top: 50% !default;
@@ -51188,9 +52058,9 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
51188
52058
 
51189
52059
 
51190
52060
  // Timeline
51191
- .k-gantt-timeline {
52061
+ .k-gantt-timeline-pane {
51192
52062
 
51193
- .k-timeline {
52063
+ .k-gantt-timeline {
51194
52064
  height: 100%;
51195
52065
  border-width: 0;
51196
52066
  display: flex;
@@ -51669,7 +52539,7 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
51669
52539
  }
51670
52540
 
51671
52541
  .k-gantt,
51672
- .k-gantt-timeline,
52542
+ .k-gantt-timeline-pane,
51673
52543
  .k-gantt-dependencies {
51674
52544
  width: auto !important; // stylelint-disable-line declaration-no-important
51675
52545
  height: auto !important; // stylelint-disable-line declaration-no-important
@@ -51714,7 +52584,7 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
51714
52584
  margin-inline: -26px;
51715
52585
  }
51716
52586
 
51717
- .k-gantt-timeline {
52587
+ .k-gantt-timeline-pane {
51718
52588
  .k-header {
51719
52589
  border-width: 0 $kendo-grid-cell-vertical-border-width 1px 0;
51720
52590
  }
@@ -51774,7 +52644,7 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
51774
52644
  margin-right: $kendo-gantt-rtl-milestone-planned-moment-margin-x;
51775
52645
  }
51776
52646
 
51777
- .k-gantt-timeline .k-milestone-wrap .k-task-start {
52647
+ .k-gantt-timeline-pane .k-milestone-wrap .k-task-start {
51778
52648
  right: $kendo-gantt-rtl-milestone-dot-start-margin-x;
51779
52649
  }
51780
52650
 
@@ -52175,7 +53045,7 @@ $kendo-scheduler-event-min-height: 25px !default;
52175
53045
  $kendo-scheduler-event-border-radius: $kendo-border-radius-md !default;
52176
53046
  $kendo-scheduler-event-line-height: calc( #{$kendo-scheduler-event-min-height} - (2 * #{$kendo-padding-md-y}) ) !default;
52177
53047
 
52178
- $kendo-scheduler-event-bg: k-color-tint( $kendo-selected-bg, 2 ) !default;
53048
+ $kendo-scheduler-event-bg: if($kendo-enable-color-system, k-color( primary ), k-color-tint( $kendo-selected-bg, 2 )) !default;
52179
53049
  $kendo-scheduler-event-text: $kendo-selected-text !default;
52180
53050
  $kendo-scheduler-event-border: null !default;
52181
53051
  $kendo-scheduler-event-gradient: null !default;
@@ -52187,7 +53057,7 @@ $kendo-scheduler-event-hover-border: null !default;
52187
53057
  $kendo-scheduler-event-hover-gradient: null !default;
52188
53058
  $kendo-scheduler-event-hover-shadow: null !default;
52189
53059
 
52190
- $kendo-scheduler-event-selected-bg: $kendo-selected-bg !default;
53060
+ $kendo-scheduler-event-selected-bg: if($kendo-enable-color-system, k-color( primary-active ), $kendo-selected-bg) !default;
52191
53061
  $kendo-scheduler-event-selected-text: $kendo-selected-text !default;
52192
53062
  $kendo-scheduler-event-selected-border: null !default;
52193
53063
  $kendo-scheduler-event-selected-gradient: null !default;
@@ -52201,13 +53071,13 @@ $kendo-scheduler-cell-height: $kendo-line-height-em !default;
52201
53071
  $kendo-scheduler-datecolumn-width: 12em !default;
52202
53072
  $kendo-scheduler-timecolumn-width: 11em !default;
52203
53073
 
52204
- $kendo-scheduler-nonwork-bg: k-try-shade( $kendo-scheduler-bg, .5 ) !default;
53074
+ $kendo-scheduler-nonwork-bg: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-scheduler-bg, .5 )) !default;
52205
53075
  $kendo-scheduler-nonwork-text: null !default;
52206
53076
 
52207
53077
  $kendo-scheduler-weekend-bg: null !default;
52208
53078
  $kendo-scheduler-weekend-text: null !default;
52209
53079
 
52210
- $kendo-scheduler-othermonth-bg: k-try-shade( $kendo-scheduler-bg, .5 ) !default;
53080
+ $kendo-scheduler-othermonth-bg: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-scheduler-bg, .5 )) !default;
52211
53081
  $kendo-scheduler-othermonth-text: null !default;
52212
53082
 
52213
53083
  $kendo-scheduler-yearview-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
@@ -53357,7 +54227,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
53357
54227
 
53358
54228
  .k-scheduler-layout td.k-selected,
53359
54229
  .k-scheduler-layout .k-scheduler-cell.k-selected {
53360
- background-color: rgba($kendo-selected-bg, .25);
54230
+ background-color: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25));
53361
54231
  }
53362
54232
 
53363
54233
  .k-scheduler-layout-flex {
@@ -53400,7 +54270,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
53400
54270
  }
53401
54271
 
53402
54272
  &.k-event-inverse {
53403
- color: k-contrast-legacy( $kendo-scheduler-event-text );
54273
+ color: if($kendo-enable-color-system, k-color( on-app-surface ), k-contrast-legacy( $kendo-scheduler-event-text ));
53404
54274
  }
53405
54275
 
53406
54276
  &.k-event-ongoing {
@@ -53474,7 +54344,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
53474
54344
 
53475
54345
  // Selected
53476
54346
  .k-scheduler-content tr.k-selected {
53477
- background-color: rgba($kendo-selected-bg, .25);
54347
+ background-color: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25));
53478
54348
  }
53479
54349
  .k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
53480
54350
  .k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
@@ -53656,7 +54526,7 @@ $kendo-chat-bubble-hover-shadow: k-elevation(2) !default;
53656
54526
  $kendo-chat-bubble-selected-shadow: k-elevation(3) !default;
53657
54527
 
53658
54528
  $kendo-chat-alt-bubble-bg: $kendo-color-primary !default;
53659
- $kendo-chat-alt-bubble-text: k-contrast-legacy( $kendo-chat-alt-bubble-bg ) !default;
54529
+ $kendo-chat-alt-bubble-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-chat-alt-bubble-bg )) !default;
53660
54530
  $kendo-chat-alt-bubble-border: $kendo-chat-alt-bubble-bg !default;
53661
54531
  $kendo-chat-alt-bubble-shadow: k-elevation(1) !default;
53662
54532
  $kendo-chat-alt-bubble-hover-shadow: k-elevation(2) !default;
@@ -54315,7 +55185,7 @@ $kendo-media-player-titlebar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
54315
55185
  $kendo-media-player-titlebar-bg: null !default;
54316
55186
  $kendo-media-player-titlebar-text: $kendo-media-player-bg !default;
54317
55187
  $kendo-media-player-titlebar-border: null !default;
54318
- $kendo-media-player-titlebar-gradient: rgba( $kendo-media-player-text, .7 ), rgba( $kendo-media-player-text, 0 ) !default;
55188
+ $kendo-media-player-titlebar-gradient: if($kendo-enable-color-system, ( rgba( k-color( on-app-surface, true ), .7 ), rgba( k-color( on-app-surface, true ), 0 ) ), ( rgba( $kendo-media-player-text, .7 ), rgba( $kendo-media-player-text, 0 ) )) !default;
54319
55189
 
54320
55190
  // #endregion
54321
55191
  // #region @import "./_layout.scss"; -> scss/mediaplayer/_layout.scss
@@ -54444,7 +55314,7 @@ $kendo-media-player-titlebar-gradient: rgba( $kendo-media-player-text, .7 ), rgb
54444
55314
  .k-mediaplayer-titlebar {
54445
55315
  color: $kendo-media-player-titlebar-text;
54446
55316
  background-image: linear-gradient( $kendo-media-player-titlebar-gradient );
54447
- text-shadow: 0 0 2px rgba( $kendo-media-player-text, .5 );
55317
+ text-shadow: 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-media-player-text, .5 ));
54448
55318
  }
54449
55319
 
54450
55320
  }
@@ -54529,9 +55399,9 @@ $kendo-timeline-mobile-spacing-y: 16px !default;
54529
55399
  $kendo-timeline-track-arrow-width: 30px !default;
54530
55400
  $kendo-timeline-track-arrow-height: 30px !default;
54531
55401
 
54532
- $kendo-timeline-track-arrow-disabled-bg: k-true-mix($kendo-button-bg, $kendo-body-bg, 65%) !default;
54533
- $kendo-timeline-track-arrow-disabled-text: k-true-mix($kendo-button-text, $kendo-body-bg, 65%) !default;
54534
- $kendo-timeline-track-arrow-disabled-border: k-true-mix(#000000, $kendo-body-bg, 4.8%) !default;
55402
+ $kendo-timeline-track-arrow-disabled-bg: if($kendo-enable-color-system, rgba( k-color( base-subtle, true ), .6 ), k-true-mix($kendo-button-bg, $kendo-body-bg, 65%)) !default;
55403
+ $kendo-timeline-track-arrow-disabled-text: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .6 ), k-true-mix($kendo-button-text, $kendo-body-bg, 65%)) !default;
55404
+ $kendo-timeline-track-arrow-disabled-border: if($kendo-enable-color-system, k-color( border ), k-true-mix(#000000, $kendo-body-bg, 4.8%)) !default;
54535
55405
 
54536
55406
  $kendo-timeline-track-size: 6px !default;
54537
55407
  $kendo-timeline-track-wrap-padding-bottom: k-math-div( $kendo-timeline-track-size, 2 ) !default;
@@ -54555,7 +55425,7 @@ $kendo-timeline-flag-max-width: calc(#{$kendo-timeline-flag-min-width} + 2 * #{$
54555
55425
  $kendo-timeline-mobile-flag-max-width: calc(#{$kendo-timeline-flag-min-width} + 2 * #{$kendo-timeline-mobile-spacing-x}) !default;
54556
55426
  $kendo-timeline-horizontal-flag-min-width: 60px !default;
54557
55427
  $kendo-timeline-flag-bg: $kendo-color-primary !default;
54558
- $kendo-timeline-flag-text: k-contrast-legacy( $kendo-timeline-flag-bg ) !default;
55428
+ $kendo-timeline-flag-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-timeline-flag-bg )) !default;
54559
55429
 
54560
55430
  $kendo-timeline-flag-callout-width: 10px !default;
54561
55431
  $kendo-timeline-flag-callout-height: 10px !default;
@@ -56403,51 +57273,51 @@ $_kendo-module-meta: (
56403
57273
 
56404
57274
  /// The first base series color and its light and dark shades.
56405
57275
  /// @group charts
56406
- $kendo-series-a: #ff6358 !default;
56407
- $kendo-series-a-dark: k-color-mix(black, $kendo-series-a, 25%) !default;
56408
- $kendo-series-a-darker: k-color-mix(black, $kendo-series-a, 50%) !default;
56409
- $kendo-series-a-light: k-color-mix(white, $kendo-series-a, 25%) !default;
56410
- $kendo-series-a-lighter: k-color-mix(white, $kendo-series-a, 50%) !default;
57276
+ $kendo-series-a: if($kendo-enable-color-system, k-color( series-a ), #ff6358) !default;
57277
+ $kendo-series-a-dark: if($kendo-enable-color-system, k-color( series-a-bold ), k-color-mix(black, $kendo-series-a, 25%)) !default;
57278
+ $kendo-series-a-darker: if($kendo-enable-color-system, k-color( series-a-bolder ), k-color-mix(black, $kendo-series-a, 50%)) !default;
57279
+ $kendo-series-a-light: if($kendo-enable-color-system, k-color( series-a-subtle ), k-color-mix(white, $kendo-series-a, 25%)) !default;
57280
+ $kendo-series-a-lighter: if($kendo-enable-color-system, k-color( series-a-subtler ), k-color-mix(white, $kendo-series-a, 50%)) !default;
56411
57281
 
56412
57282
  /// The second base series color and its light and dark shades.
56413
57283
  /// @group charts
56414
- $kendo-series-b: #ffe162 !default;
56415
- $kendo-series-b-dark: k-color-mix(black, $kendo-series-b, 25%) !default;
56416
- $kendo-series-b-darker: k-color-mix(black, $kendo-series-b, 50%) !default;
56417
- $kendo-series-b-light: k-color-mix(white, $kendo-series-b, 25%) !default;
56418
- $kendo-series-b-lighter: k-color-mix(white, $kendo-series-b, 50%) !default;
57284
+ $kendo-series-b: if($kendo-enable-color-system, k-color( series-b ), #ffe162) !default;
57285
+ $kendo-series-b-dark: if($kendo-enable-color-system, k-color( series-b-bold ), k-color-mix(black, $kendo-series-b, 25%)) !default;
57286
+ $kendo-series-b-darker: if($kendo-enable-color-system, k-color( series-b-bolder ), k-color-mix(black, $kendo-series-b, 50%)) !default;
57287
+ $kendo-series-b-light: if($kendo-enable-color-system, k-color( series-b-subtle ), k-color-mix(white, $kendo-series-b, 25%)) !default;
57288
+ $kendo-series-b-lighter: if($kendo-enable-color-system, k-color( series-b-subtler ), k-color-mix(white, $kendo-series-b, 50%)) !default;
56419
57289
 
56420
57290
  /// The third base series color and its light and dark shades.
56421
57291
  /// @group charts
56422
- $kendo-series-c: #4cd180 !default;
56423
- $kendo-series-c-dark: k-color-mix(black, $kendo-series-c, 25%) !default;
56424
- $kendo-series-c-darker: k-color-mix(black, $kendo-series-c, 50%) !default;
56425
- $kendo-series-c-light: k-color-mix(white, $kendo-series-c, 25%) !default;
56426
- $kendo-series-c-lighter: k-color-mix(white, $kendo-series-c, 50%) !default;
57292
+ $kendo-series-c: if($kendo-enable-color-system, k-color( series-c ), #4cd180) !default;
57293
+ $kendo-series-c-dark: if($kendo-enable-color-system, k-color( series-c-bold ), k-color-mix(black, $kendo-series-c, 25%)) !default;
57294
+ $kendo-series-c-darker: if($kendo-enable-color-system, k-color( series-c-bolder ), k-color-mix(black, $kendo-series-c, 50%)) !default;
57295
+ $kendo-series-c-light: if($kendo-enable-color-system, k-color( series-c-subtle ), k-color-mix(white, $kendo-series-c, 25%)) !default;
57296
+ $kendo-series-c-lighter: if($kendo-enable-color-system, k-color( series-c-subtler ), k-color-mix(white, $kendo-series-c, 50%)) !default;
56427
57297
 
56428
57298
  /// The fourth base series color and its light and dark shades.
56429
57299
  /// @group charts
56430
- $kendo-series-d: #4b5ffa !default;
56431
- $kendo-series-d-dark: k-color-mix(black, $kendo-series-d, 25%) !default;
56432
- $kendo-series-d-darker: k-color-mix(black, $kendo-series-d, 50%) !default;
56433
- $kendo-series-d-light: k-color-mix(white, $kendo-series-d, 25%) !default;
56434
- $kendo-series-d-lighter: k-color-mix(white, $kendo-series-d, 50%) !default;
57300
+ $kendo-series-d: if($kendo-enable-color-system, k-color( series-d ), #4b5ffa) !default;
57301
+ $kendo-series-d-dark: if($kendo-enable-color-system, k-color( series-d-bold ), k-color-mix(black, $kendo-series-d, 25%)) !default;
57302
+ $kendo-series-d-darker: if($kendo-enable-color-system, k-color( series-d-bolder ), k-color-mix(black, $kendo-series-d, 50%)) !default;
57303
+ $kendo-series-d-light: if($kendo-enable-color-system, k-color( series-d-subtle ), k-color-mix(white, $kendo-series-d, 25%)) !default;
57304
+ $kendo-series-d-lighter: if($kendo-enable-color-system, k-color( series-d-subtler ), k-color-mix(white, $kendo-series-d, 50%)) !default;
56435
57305
 
56436
57306
  /// The fifth base series color and its light and dark shades.
56437
57307
  /// @group charts
56438
- $kendo-series-e: #ac58ff !default;
56439
- $kendo-series-e-dark: k-color-mix(black, $kendo-series-e, 25%) !default;
56440
- $kendo-series-e-darker: k-color-mix(black, $kendo-series-e, 50%) !default;
56441
- $kendo-series-e-light: k-color-mix(white, $kendo-series-e, 25%) !default;
56442
- $kendo-series-e-lighter: k-color-mix(white, $kendo-series-e, 50%) !default;
57308
+ $kendo-series-e: if($kendo-enable-color-system, k-color( series-e ), #ac58ff) !default;
57309
+ $kendo-series-e-dark: if($kendo-enable-color-system, k-color( series-e-bold ), k-color-mix(black, $kendo-series-e, 25%)) !default;
57310
+ $kendo-series-e-darker: if($kendo-enable-color-system, k-color( series-e-bolder ), k-color-mix(black, $kendo-series-e, 50%)) !default;
57311
+ $kendo-series-e-light: if($kendo-enable-color-system, k-color( series-e-subtle ), k-color-mix(white, $kendo-series-e, 25%)) !default;
57312
+ $kendo-series-e-lighter: if($kendo-enable-color-system, k-color( series-e-subtler ), k-color-mix(white, $kendo-series-e, 50%)) !default;
56443
57313
 
56444
57314
  /// The sixth base series color and its light and dark shades.
56445
57315
  /// @group charts
56446
- $kendo-series-f: #ff5892 !default;
56447
- $kendo-series-f-dark: k-color-mix(black, $kendo-series-f, 25%) !default;
56448
- $kendo-series-f-darker: k-color-mix(black, $kendo-series-f, 50%) !default;
56449
- $kendo-series-f-light: k-color-mix(white, $kendo-series-f, 25%) !default;
56450
- $kendo-series-f-lighter: k-color-mix(white, $kendo-series-f, 50%) !default;
57316
+ $kendo-series-f: if($kendo-enable-color-system, k-color( series-f ), #ff5892) !default;
57317
+ $kendo-series-f-dark: if($kendo-enable-color-system, k-color( series-f-bold ), k-color-mix(black, $kendo-series-f, 25%)) !default;
57318
+ $kendo-series-f-darker: if($kendo-enable-color-system, k-color( series-f-bolder ), k-color-mix(black, $kendo-series-f, 50%)) !default;
57319
+ $kendo-series-f-light: if($kendo-enable-color-system, k-color( series-f-subtle ), k-color-mix(white, $kendo-series-f, 25%)) !default;
57320
+ $kendo-series-f-lighter: if($kendo-enable-color-system, k-color( series-f-subtler ), k-color-mix(white, $kendo-series-f, 50%)) !default;
56451
57321
 
56452
57322
  /// The series colors in order:
56453
57323
  /// base, light, dark, lighter, darker
@@ -56498,13 +57368,13 @@ $kendo-chart-pane-title-font-weight: $kendo-font-weight-normal !default;
56498
57368
 
56499
57369
  /// The color of the Chart grid lines (major).
56500
57370
  /// @group charts
56501
- $kendo-chart-major-lines: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 ) !default;
57371
+ $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;
56502
57372
 
56503
57373
  /// The color of the Chart grid lines (minor).
56504
57374
  /// @group charts
56505
- $kendo-chart-minor-lines: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .04 ) !default;
57375
+ $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;
56506
57376
 
56507
- $kendo-chart-inactive: rgba( $kendo-body-text, .5 ) !default;
57377
+ $kendo-chart-inactive: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-body-text, .5 )) !default;
56508
57378
  $kendo-chart-area-opacity: .6 !default;
56509
57379
  $kendo-chart-area-inactive-opacity: .1 !default;
56510
57380
  $kendo-chart-line-inactive-opacity: .3 !default;
@@ -56515,20 +57385,20 @@ $kendo-chart-bg: $kendo-component-bg !default;
56515
57385
  $kendo-chart-text: $kendo-component-text !default;
56516
57386
  $kendo-chart-border: $kendo-component-border !default;
56517
57387
 
56518
- $kendo-chart-crosshair-background: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 ) !default;
57388
+ $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;
56519
57389
  $kendo-chart-crosshair-shared-tooltip-color: $kendo-chart-text !default;
56520
- $kendo-chart-crosshair-shared-tooltip-background: k-try-shade( $kendo-chart-bg, 1 ) !default;
56521
- $kendo-chart-crosshair-shared-tooltip-border: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08) !default;
57390
+ $kendo-chart-crosshair-shared-tooltip-background: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-chart-bg, 1 )) !default;
57391
+ $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;
56522
57392
 
56523
- $kendo-chart-notes-background: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 ) !default;
56524
- $kendo-chart-notes-border: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 ) !default;
56525
- $kendo-chart-notes-lines: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 ) !default;
57393
+ $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;
57394
+ $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;
57395
+ $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;
56526
57396
 
56527
- $kendo-chart-error-bars-background: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 ) !default;
57397
+ $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;
56528
57398
 
56529
57399
  $kendo-chart-selection-handle-size: 22px !default;
56530
- $kendo-chart-selection-border-color: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 ) !default;
56531
- $kendo-chart-selection-shadow: inset 0 1px 7px rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .15) !default;
57400
+ $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;
57401
+ $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;
56532
57402
 
56533
57403
 
56534
57404
  // TreeMap
@@ -56993,14 +57863,14 @@ $kendo-treemap-line-height: $kendo-line-height-md !default;
56993
57863
  series-30: $kendo-series-30,
56994
57864
 
56995
57865
  gauge-pointer: $kendo-color-primary,
56996
- gauge-track: k-try-shade( $kendo-chart-bg )
57866
+ gauge-track: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-chart-bg ))
56997
57867
  );
56998
57868
 
56999
57869
  @each $name, $value in $exported {
57000
57870
  $type: k-meta-type-of($value);
57001
57871
 
57002
57872
  .k-var--#{$name} {
57003
- @if $type == "color" {
57873
+ @if $type == "color" or $type == "string" {
57004
57874
  // background-color can store any color
57005
57875
  background-color: $value;
57006
57876
  } @else if $type == "number" {
@@ -57274,7 +58144,7 @@ $kendo-map-zoom-control-button-padding-y: $kendo-map-zoom-control-button-padding
57274
58144
  $kendo-map-attribution-padding-x: $kendo-padding-sm-x !default;
57275
58145
  $kendo-map-attribution-padding-y: $kendo-padding-sm-y !default;
57276
58146
  $kendo-map-attribution-font-size: ($kendo-map-font-size * .75) !default;
57277
- $kendo-map-attribution-bg: rgba( $kendo-map-bg, .8 ) !default;
58147
+ $kendo-map-attribution-bg: if($kendo-enable-color-system, rgba( k-color( app-surface, true ), .8 ), rgba( $kendo-map-bg, .8 )) !default;
57278
58148
 
57279
58149
  $kendo-map-marker-fill: $kendo-color-primary !default;
57280
58150
 
@@ -57843,7 +58713,7 @@ $kendo-signature-lg-padding-y: $kendo-signature-lg-padding-x !default;
57843
58713
 
57844
58714
  $kendo-signature-line-width: 1px !default;
57845
58715
  $kendo-signature-line-style: dashed !default;
57846
- $kendo-signature-line-color: rgba( $kendo-color-info, .24 ) !default;
58716
+ $kendo-signature-line-color: if($kendo-enable-color-system, rgba( k-color( info, true ), .24 ), rgba( $kendo-color-info, .24 )) !default;
57847
58717
 
57848
58718
  $kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding-x} ) !default;
57849
58719
  $kendo-signature-sm-line-size: calc( 100% - 2 * #{$kendo-signature-sm-padding-x} ) !default;