@progress/kendo-theme-classic 7.1.0-dev.8 → 7.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/dist/all.css +74 -31
  2. package/dist/all.scss +1588 -645
  3. package/dist/meta/sassdoc-data.json +1792 -662
  4. package/dist/meta/sassdoc-raw-data.json +850 -327
  5. package/dist/meta/variables.json +398 -338
  6. package/lib/swatches/classic-green-dark.json +1 -1
  7. package/lib/swatches/classic-green.json +1 -1
  8. package/lib/swatches/classic-lavender-dark.json +1 -1
  9. package/lib/swatches/classic-lavender.json +1 -1
  10. package/lib/swatches/classic-main-dark.json +1 -1
  11. package/lib/swatches/classic-main.json +1 -1
  12. package/lib/swatches/classic-metro-dark.json +1 -1
  13. package/lib/swatches/classic-metro.json +1 -1
  14. package/lib/swatches/classic-moonlight.json +1 -1
  15. package/lib/swatches/classic-opal-dark.json +1 -1
  16. package/lib/swatches/classic-opal.json +1 -1
  17. package/lib/swatches/classic-silver-dark.json +1 -1
  18. package/lib/swatches/classic-silver.json +1 -1
  19. package/lib/swatches/classic-uniform.json +1 -1
  20. package/package.json +5 -5
  21. package/scss/_variables.scss +0 -197
  22. package/scss/adaptive/_variables.scss +1 -1
  23. package/scss/appbar/_variables.scss +2 -2
  24. package/scss/button/_variables.scss +7 -7
  25. package/scss/chat/_variables.scss +1 -1
  26. package/scss/checkbox/_variables.scss +2 -2
  27. package/scss/chip/_variables.scss +3 -3
  28. package/scss/core/_index.scss +6 -0
  29. package/scss/core/color-system/_palettes.scss +277 -0
  30. package/scss/core/color-system/_swatch-legacy.scss +62 -0
  31. package/scss/core/color-system/_swatch.scss +397 -0
  32. package/scss/dataviz/_variables.scss +42 -42
  33. package/scss/dock-manager/_variables.scss +1 -1
  34. package/scss/dropzone/_variables.scss +1 -1
  35. package/scss/editor/_variables.scss +1 -1
  36. package/scss/expansion-panel/_variables.scss +1 -2
  37. package/scss/filemanager/_variables.scss +2 -2
  38. package/scss/forms/_variables.scss +1 -1
  39. package/scss/gantt/_variables.scss +10 -10
  40. package/scss/grid/_variables.scss +11 -8
  41. package/scss/input/_variables.scss +6 -6
  42. package/scss/listview/_variables.scss +1 -1
  43. package/scss/map/_variables.scss +1 -1
  44. package/scss/mediaplayer/_variables.scss +1 -1
  45. package/scss/menu/_variables.scss +1 -1
  46. package/scss/notification/_variables.scss +1 -1
  47. package/scss/panelbar/_variables.scss +3 -4
  48. package/scss/pivotgrid/_variables.scss +5 -5
  49. package/scss/progressbar/_variables.scss +3 -3
  50. package/scss/scheduler/_variables.scss +3 -3
  51. package/scss/scrollview/_variables.scss +1 -1
  52. package/scss/signature/_variables.scss +1 -1
  53. package/scss/skeleton/_variables.scss +1 -1
  54. package/scss/slider/_variables.scss +8 -8
  55. package/scss/splitter/_variables.scss +1 -1
  56. package/scss/spreadsheet/_variables.scss +4 -4
  57. package/scss/stepper/_variables.scss +7 -7
  58. package/scss/switch/_variables.scss +7 -7
  59. package/scss/table/_variables.scss +3 -3
  60. package/scss/taskboard/_variables.scss +4 -3
  61. package/scss/timeline/_variables.scss +4 -4
  62. package/scss/tooltip/_variables.scss +4 -4
  63. package/scss/core/color-system/index.import.scss +0 -1
package/dist/all.scss CHANGED
@@ -5,9 +5,8 @@
5
5
  // #region @import "./core/_index.scss"; -> scss/core/_index.scss
6
6
  $wcag-min-contrast-ratio: 4.5 !default;
7
7
 
8
- // Variables
9
- // #region @import "../_variables.scss"; -> scss/_variables.scss
10
- // #region @import "./core/functions/index.import.scss"; -> scss/core/functions/index.import.scss
8
+ // Color System
9
+ // #region @import "./color-system/_swatch.scss"; -> scss/core/color-system/_swatch.scss
11
10
  // #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
12
11
  // #region @import "./_color.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/functions/_color.import.scss
13
12
  /// Returns the alpha channel of a color.
@@ -712,6 +711,28 @@ $kendo-color-level-step: 8% !default;
712
711
  @return k-color-mix( rgba( $color1, 1 ), rgba( $color2, 1 ), $weight );
713
712
  }
714
713
 
714
+ /// Generates all color variations of a given main color
715
+ /// @param {String} $name - The name of the main color
716
+ /// @param {Color} $level - The color value to be assigned to the main color
717
+ /// @return {Map} - A map with the generated keys and values
718
+ ///
719
+ /// @group color-system
720
+ @function k-generate-colors( $name, $color ) {
721
+ $_variations: (
722
+ #{$name}-subtle: k-try-tint( $color, 80% ),
723
+ #{$name}-subtle-hover: k-try-tint( $color, 65% ),
724
+ #{$name}-subtle-active: k-try-tint( $color, 50% ),
725
+ #{$name}: $color,
726
+ #{$name}-hover: k-try-shade( $color, 0.5 ),
727
+ #{$name}-active: k-try-shade( $color, 1.5 ),
728
+ #{$name}-emphasis: k-try-tint( $color, 4.5 ),
729
+ #{$name}-on-subtle: k-try-shade( $color, 8 ),
730
+ on-#{$name}: k-contrast-legacy( $color ),
731
+ #{$name}-on-surface: $color,
732
+ );
733
+
734
+ @return $_variations;
735
+ }
715
736
  // #endregion
716
737
  // #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
738
  @function k-var( $prefix: kendo-, $var: null, $fallback: null ) {
@@ -1728,8 +1749,8 @@ $svg-escaped-characters: (
1728
1749
  // #endregion
1729
1750
 
1730
1751
  // #endregion
1731
-
1732
- // #endregion
1752
+ // #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
1753
+ // Color constants
1733
1754
 
1734
1755
  /// The color white.
1735
1756
  /// Note: you cannot change this value.
@@ -1743,6 +1764,728 @@ $kendo-color-white: #ffffff; // stylelint-disable-line scss/dollar-variable-defa
1743
1764
  /// @group color-system
1744
1765
  $kendo-color-black: #000000; // stylelint-disable-line scss/dollar-variable-default
1745
1766
 
1767
+ /// The color transparent.
1768
+ /// Note: you cannot change this value.
1769
+ /// @type Color
1770
+ /// @group color-system
1771
+ $kendo-color-rgba-transparent: rgba(0, 0, 0, 0); // stylelint-disable-line scss/dollar-variable-default
1772
+
1773
+ /// A gradient that goes from transparent to black.
1774
+ /// Note: you cannot change this value.
1775
+ /// @type Gradient
1776
+ /// @group color-system
1777
+ $kendo-gradient-transparent-to-black: rgba(black, 0), black; // stylelint-disable-line scss/dollar-variable-default
1778
+
1779
+ /// A gradient that goes from transparent to white.
1780
+ /// Note: you cannot change this value.
1781
+ /// @type Gradient
1782
+ /// @group color-system
1783
+ $kendo-gradient-transparent-to-white: rgba(white, 0), white; // stylelint-disable-line scss/dollar-variable-default
1784
+
1785
+ /// A gradient that goes from black to transparent.
1786
+ /// Note: you cannot change this value.
1787
+ /// @type Gradient
1788
+ /// @group color-system
1789
+ $kendo-gradient-black-to-transparent: black, rgba(black, 0); // stylelint-disable-line scss/dollar-variable-default
1790
+
1791
+ /// A gradient that goes from white to transparent.
1792
+ /// Note: you cannot change this value.
1793
+ /// @type Gradient
1794
+ /// @group color-system
1795
+ $kendo-gradient-white-to-transparent: white, rgba(white, 0); // stylelint-disable-line scss/dollar-variable-default
1796
+
1797
+ /// A gradient that cycles through the colors of the rainbow.
1798
+ /// Note: you cannot change this value.
1799
+ /// @type Gradient
1800
+ /// @group color-system
1801
+ $kendo-gradient-rainbow: #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000; // stylelint-disable-line scss/dollar-variable-default
1802
+
1803
+ // #endregion
1804
+ // #region @import "./_palettes.scss"; -> scss/core/color-system/_palettes.scss
1805
+ $_default-palette-ash-gray: (
1806
+ white: #ffffff,
1807
+ 1: #fafafa,
1808
+ 2: #f0f0f0,
1809
+ 3: #ebebeb,
1810
+ 4: #dddddd,
1811
+ 5: #d6d6d6,
1812
+ 6: #cacaca,
1813
+ 7: #b6b6b6,
1814
+ 8: #a3a3a3,
1815
+ 9: #8f8f8f,
1816
+ 10: #7a7a7a,
1817
+ 11: #666666,
1818
+ 12: #525252,
1819
+ 13: #404040,
1820
+ 14: #333333,
1821
+ 15: #272727,
1822
+ black: #000000,
1823
+ );
1824
+
1825
+ $_default-palette-tangerine-orange: (
1826
+ 1: #fff2eb,
1827
+ 2: #ffe5d6,
1828
+ 3: #ffd8c2,
1829
+ 4: #ffcbad,
1830
+ 5: #ffbe99,
1831
+ 6: #ffa570,
1832
+ 7: #ff8b47,
1833
+ 8: #ff711f,
1834
+ 9: #f35800,
1835
+ 10: #e05100,
1836
+ 11: #cc4a00,
1837
+ 12: #b94300,
1838
+ 13: #a53c00,
1839
+ 14: #7a2d00,
1840
+ 15: #3d1600,
1841
+ );
1842
+
1843
+ $_default-palette-dodger-blue: (
1844
+ 1: #ebf8ff,
1845
+ 2: #d7f2ff,
1846
+ 3: #b8e8fe,
1847
+ 4: #9cdffe,
1848
+ 5: #72d1fe,
1849
+ 6: #49c4fd,
1850
+ 7: #2cbbfd,
1851
+ 8: #0db1fd,
1852
+ 9: #03a9f4,
1853
+ 10: #039be0,
1854
+ 11: #038ecd,
1855
+ 12: #0280b9,
1856
+ 13: #0273a6,
1857
+ 14: #014c6f,
1858
+ 15: #01364e,
1859
+ );
1860
+
1861
+ $_default-palette-grass-green: (
1862
+ 1: #f1f8f2,
1863
+ 2: #e3f2e6,
1864
+ 3: #d8eddc,
1865
+ 4: #bbdfc1,
1866
+ 5: #9ed1a6,
1867
+ 6: #82c48c,
1868
+ 7: #6ebb7a,
1869
+ 8: #4db25c,
1870
+ 9: #3ea44e,
1871
+ 10: #399748,
1872
+ 11: #348a42,
1873
+ 12: #2f7d3b,
1874
+ 13: #2a7035,
1875
+ 14: #1f5126,
1876
+ 15: #16391b,
1877
+ );
1878
+
1879
+ $_default-palette-lake-blue: (
1880
+ 1: #eef6fb,
1881
+ 2: #deeef7,
1882
+ 3: #cce5f3,
1883
+ 4: #a6d1ea,
1884
+ 5: #8bc3e4,
1885
+ 6: #6ab2dc,
1886
+ 7: #409cd2,
1887
+ 8: #208ccb,
1888
+ 9: #007bc3,
1889
+ 10: #0071b3,
1890
+ 11: #0067a4,
1891
+ 12: #005d94,
1892
+ 13: #005485,
1893
+ 14: #004166,
1894
+ 15: #002b44,
1895
+ );
1896
+
1897
+ $_default-palette-honey-yellow: (
1898
+ 1: #fff7eb,
1899
+ 2: #ffefd6,
1900
+ 3: #ffe7c2,
1901
+ 4: #ffdead,
1902
+ 5: #ffd699,
1903
+ 6: #ffc670,
1904
+ 7: #ffb240,
1905
+ 8: #ffa41f,
1906
+ 9: #ff9800,
1907
+ 10: #eb8c00,
1908
+ 11: #d68000,
1909
+ 12: #c27400,
1910
+ 13: #ad6700,
1911
+ 14: #854f00,
1912
+ 15: #593500,
1913
+ );
1914
+
1915
+ $_default-palette-brick-red: (
1916
+ 1: #fcf0ed,
1917
+ 2: #f9e1dc,
1918
+ 3: #f7d4cc,
1919
+ 4: #f4c3b8,
1920
+ 5: #f2b4a6,
1921
+ 6: #ec8e79,
1922
+ 7: #e35e40,
1923
+ 8: #de4320,
1924
+ 9: #d92800,
1925
+ 10: #c82500,
1926
+ 11: #b62200,
1927
+ 12: #a51e00,
1928
+ 13: #941b00,
1929
+ 14: #701500,
1930
+ 15: #4c0e00,
1931
+ );
1932
+
1933
+ $_default-palette-coral: (
1934
+ 1: #fff6f5,
1935
+ 2: #ffeceb,
1936
+ 3: #ffdedb,
1937
+ 4: #ffc8c4,
1938
+ 5: #ffb1ac,
1939
+ 6: #ff9d97,
1940
+ 7: #ff8a82,
1941
+ 8: #ff766d,
1942
+ 9: #ff6358,
1943
+ 10: #ea5a51,
1944
+ 11: #d45349,
1945
+ 12: #bf4a42,
1946
+ 13: #a33f38,
1947
+ 14: #80322c,
1948
+ 15: #5c201c,
1949
+ );
1950
+
1951
+ $_default-palette-pineapple-yellow: (
1952
+ 1: #fffaeb,
1953
+ 2: #fff7db,
1954
+ 3: #fff3cc,
1955
+ 4: #ffeeb8,
1956
+ 5: #ffe9a2,
1957
+ 6: #ffe38b,
1958
+ 7: #ffdd74,
1959
+ 8: #ffd85d,
1960
+ 9: #ffd246,
1961
+ 10: #eac040,
1962
+ 11: #d4af3b,
1963
+ 12: #bf9d35,
1964
+ 13: #a0832c,
1965
+ 14: #806923,
1966
+ 15: #403412,
1967
+ );
1968
+
1969
+ $_default-palette-apple-green: (
1970
+ 1: #f3fbee,
1971
+ 2: #e9f8de,
1972
+ 3: #def4ce,
1973
+ 4: #d2f0bd,
1974
+ 5: #bbe99b,
1975
+ 6: #aae382,
1976
+ 7: #9add69,
1977
+ 8: #89d750,
1978
+ 9: #78d237,
1979
+ 10: #6ec032,
1980
+ 11: #64AF2E,
1981
+ 12: #5a9d29,
1982
+ 13: #4a8221,
1983
+ 14: #3c691c,
1984
+ 15: #1c300d,
1985
+ );
1986
+
1987
+ $_default-palette-pacific-blue: (
1988
+ 1: #ebf8fa,
1989
+ 2: #d6f1f5,
1990
+ 3: #c2e9ef,
1991
+ 4: #aee2ea,
1992
+ 5: #93d9e3,
1993
+ 6: #75d0db,
1994
+ 7: #5ec7d6,
1995
+ 8: #43becf,
1996
+ 9: #28b4c8,
1997
+ 10: #24a6b7,
1998
+ 11: #2197a6,
1999
+ 12: #1e8796,
2000
+ 13: #197480,
2001
+ 14: #145a64,
2002
+ 15: #0a2e33,
2003
+ );
2004
+
2005
+ $_default-palette-bright-blue: (
2006
+ 1: #ecf2fe,
2007
+ 2: #d8e5fd,
2008
+ 3: #c5d8fc,
2009
+ 4: #b1cbfb,
2010
+ 5: #96b9fa,
2011
+ 6: #7ba7f9,
2012
+ 7: #6296f7,
2013
+ 8: #4684f6,
2014
+ 9: #2d73f5,
2015
+ 10: #2969e1,
2016
+ 11: #2660cc,
2017
+ 12: #2256b8,
2018
+ 13: #1d499a,
2019
+ 14: #173a7b,
2020
+ 15: #0c1e40,
2021
+ );
2022
+
2023
+ $_default-palette-orchid-purple: (
2024
+ 1: #f8f0fa,
2025
+ 2: #f1e1f5,
2026
+ 3: #e7caed,
2027
+ 4: #ddb3e5,
2028
+ 5: #d5a2df,
2029
+ 6: #c98ad6,
2030
+ 7: #bf74ce,
2031
+ 8: #b45dc6,
2032
+ 9: #9d40b0,
2033
+ 10: #9c40ae,
2034
+ 11: #8e3b9e,
2035
+ 12: #80358e,
2036
+ 13: #672b73,
2037
+ 14: #55235f,
2038
+ 15: #28112d,
2039
+ );
2040
+
2041
+
2042
+ // stylelint-disable scss/no-global-function-names
2043
+ $kendo-palette-ash-gray: $_default-palette-ash-gray !default;
2044
+ $kendo-palette-ash-gray: map-merge($_default-palette-ash-gray, $kendo-palette-ash-gray);
2045
+
2046
+ $kendo-palette-tangerine-orange: $_default-palette-tangerine-orange !default;
2047
+ $kendo-palette-tangerine-orange: map-merge($_default-palette-tangerine-orange, $kendo-palette-tangerine-orange);
2048
+
2049
+ $kendo-palette-dodger-blue: $_default-palette-dodger-blue !default;
2050
+ $kendo-palette-dodger-blue: map-merge($_default-palette-dodger-blue, $kendo-palette-dodger-blue);
2051
+
2052
+ $kendo-palette-grass-green: $_default-palette-grass-green !default;
2053
+ $kendo-palette-grass-green: map-merge($_default-palette-grass-green, $kendo-palette-grass-green);
2054
+
2055
+ $kendo-palette-lake-blue: $_default-palette-lake-blue !default;
2056
+ $kendo-palette-lake-blue: map-merge($_default-palette-lake-blue, $kendo-palette-lake-blue);
2057
+
2058
+ $kendo-palette-honey-yellow: $_default-palette-honey-yellow !default;
2059
+ $kendo-palette-honey-yellow: map-merge($_default-palette-honey-yellow, $kendo-palette-honey-yellow);
2060
+
2061
+ $kendo-palette-brick-red: $_default-palette-brick-red !default;
2062
+ $kendo-palette-brick-red: map-merge($_default-palette-brick-red, $kendo-palette-brick-red);
2063
+
2064
+ $kendo-palette-coral: $_default-palette-coral !default;
2065
+ $kendo-palette-coral: map-merge($_default-palette-coral, $kendo-palette-coral);
2066
+
2067
+ $kendo-palette-pineapple-yellow: $_default-palette-pineapple-yellow !default;
2068
+ $kendo-palette-pineapple-yellow: map-merge($_default-palette-pineapple-yellow, $kendo-palette-pineapple-yellow);
2069
+
2070
+ $kendo-palette-apple-green: $_default-palette-apple-green !default;
2071
+ $kendo-palette-apple-green: map-merge($_default-palette-apple-green, $kendo-palette-apple-green);
2072
+
2073
+ $kendo-palette-pacific-blue: $_default-palette-pacific-blue !default;
2074
+ $kendo-palette-pacific-blue: map-merge($_default-palette-pacific-blue, $kendo-palette-pacific-blue);
2075
+
2076
+ $kendo-palette-bright-blue: $_default-palette-bright-blue !default;
2077
+ $kendo-palette-bright-blue: map-merge($_default-palette-bright-blue, $kendo-palette-bright-blue);
2078
+
2079
+ $kendo-palette-orchid-purple: $_default-palette-orchid-purple !default;
2080
+ $kendo-palette-orchid-purple: map-merge($_default-palette-orchid-purple, $kendo-palette-orchid-purple);
2081
+ // stylelint-enable scss/no-global-function-names
2082
+ // #endregion
2083
+
2084
+ // Config
2085
+ $kendo-enable-color-system: false !default;
2086
+
2087
+ // Colors
2088
+ $_default-colors: (
2089
+ // Misc
2090
+ app-surface: k-map-get( $kendo-palette-ash-gray, white ),
2091
+ on-app-surface: k-map-get( $kendo-palette-ash-gray, 15 ),
2092
+ subtle: k-map-get( $kendo-palette-ash-gray, 11 ),
2093
+ surface: k-map-get( $kendo-palette-ash-gray, 2 ),
2094
+ surface-alt: k-map-get( $kendo-palette-ash-gray, white ),
2095
+ border: k-map-get( $kendo-palette-ash-gray, 6 ),
2096
+ border-alt: k-map-get( $kendo-palette-ash-gray, 7 ),
2097
+ // Base
2098
+ base-subtle: k-map-get( $kendo-palette-ash-gray, 2 ),
2099
+ base-subtle-hover: k-map-get( $kendo-palette-ash-gray, 3 ),
2100
+ base-subtle-active: k-map-get( $kendo-palette-ash-gray, 4 ),
2101
+ base: k-map-get( $kendo-palette-ash-gray, 3 ),
2102
+ base-hover: k-map-get( $kendo-palette-ash-gray, 4 ),
2103
+ base-active: k-map-get( $kendo-palette-ash-gray, 5 ),
2104
+ base-emphasis: k-map-get( $kendo-palette-ash-gray, 6 ),
2105
+ base-on-subtle: k-map-get( $kendo-palette-ash-gray, 15 ),
2106
+ on-base: k-map-get( $kendo-palette-ash-gray, 15 ),
2107
+ base-on-surface: k-map-get( $kendo-palette-ash-gray, 15 ),
2108
+ // Primary
2109
+ primary-subtle: k-map-get( $kendo-palette-tangerine-orange, 1 ),
2110
+ primary-subtle-hover: k-map-get( $kendo-palette-tangerine-orange, 2 ),
2111
+ primary-subtle-active: k-map-get( $kendo-palette-tangerine-orange, 3 ),
2112
+ primary: k-map-get( $kendo-palette-tangerine-orange, 9 ),
2113
+ primary-hover: k-map-get( $kendo-palette-tangerine-orange, 10 ),
2114
+ primary-active: k-map-get( $kendo-palette-tangerine-orange, 11 ),
2115
+ primary-emphasis: k-map-get( $kendo-palette-tangerine-orange, 7 ),
2116
+ primary-on-subtle: k-map-get( $kendo-palette-tangerine-orange, 15 ),
2117
+ on-primary: k-map-get( $kendo-palette-ash-gray, white ),
2118
+ primary-on-surface: k-map-get( $kendo-palette-tangerine-orange, 9 ),
2119
+ // Secondary
2120
+ secondary-subtle: k-map-get( $kendo-palette-ash-gray, 6 ),
2121
+ secondary-subtle-hover: k-map-get( $kendo-palette-ash-gray, 7 ),
2122
+ secondary-subtle-active: k-map-get( $kendo-palette-ash-gray, 8 ),
2123
+ secondary: k-map-get( $kendo-palette-ash-gray, 7 ),
2124
+ secondary-hover: k-map-get( $kendo-palette-ash-gray, 8 ),
2125
+ secondary-active: k-map-get( $kendo-palette-ash-gray, 9 ),
2126
+ secondary-emphasis: k-map-get( $kendo-palette-ash-gray, 10 ),
2127
+ secondary-on-subtle: k-map-get( $kendo-palette-ash-gray, 15 ),
2128
+ on-secondary: k-map-get( $kendo-palette-ash-gray, black ),
2129
+ secondary-on-surface: k-map-get( $kendo-palette-ash-gray, 9 ),
2130
+ // Tertiary
2131
+ tertiary-subtle: k-map-get( $kendo-palette-dodger-blue, 4 ),
2132
+ tertiary-subtle-hover: k-map-get( $kendo-palette-dodger-blue, 5 ),
2133
+ tertiary-subtle-active: k-map-get( $kendo-palette-dodger-blue, 6 ),
2134
+ tertiary: k-map-get( $kendo-palette-dodger-blue, 9 ),
2135
+ tertiary-hover: k-map-get( $kendo-palette-dodger-blue, 10 ),
2136
+ tertiary-active: k-map-get( $kendo-palette-dodger-blue, 11 ),
2137
+ tertiary-emphasis: k-map-get( $kendo-palette-dodger-blue, 7 ),
2138
+ tertiary-on-subtle: k-map-get( $kendo-palette-dodger-blue, 15 ),
2139
+ on-tertiary: k-map-get( $kendo-palette-ash-gray, white ),
2140
+ tertiary-on-surface: k-map-get( $kendo-palette-dodger-blue, 13 ),
2141
+ // Info
2142
+ info-subtle: k-map-get( $kendo-palette-lake-blue, 3 ),
2143
+ info-subtle-hover: k-map-get( $kendo-palette-lake-blue, 4 ),
2144
+ info-subtle-active: k-map-get( $kendo-palette-lake-blue, 6 ),
2145
+ info: k-map-get( $kendo-palette-lake-blue, 9 ),
2146
+ info-hover: k-map-get( $kendo-palette-lake-blue, 10 ),
2147
+ info-active: k-map-get( $kendo-palette-lake-blue, 11 ),
2148
+ info-emphasis: k-map-get( $kendo-palette-lake-blue, 7 ),
2149
+ info-on-subtle: k-map-get( $kendo-palette-lake-blue, 15 ),
2150
+ on-info: k-map-get( $kendo-palette-ash-gray, white ),
2151
+ info-on-surface: k-map-get( $kendo-palette-lake-blue, 13 ),
2152
+ // Success
2153
+ success-subtle: k-map-get( $kendo-palette-grass-green, 4 ),
2154
+ success-subtle-hover: k-map-get( $kendo-palette-grass-green, 5 ),
2155
+ success-subtle-active: k-map-get( $kendo-palette-grass-green, 6 ),
2156
+ success: k-map-get( $kendo-palette-grass-green, 9 ),
2157
+ success-hover: k-map-get( $kendo-palette-grass-green, 10 ),
2158
+ success-active: k-map-get( $kendo-palette-grass-green, 11 ),
2159
+ success-emphasis: k-map-get( $kendo-palette-grass-green, 7 ),
2160
+ success-on-subtle: k-map-get( $kendo-palette-grass-green, 15 ),
2161
+ on-success: k-map-get( $kendo-palette-ash-gray, white ),
2162
+ success-on-surface: k-map-get( $kendo-palette-grass-green, 13 ),
2163
+ // Warning
2164
+ warning-subtle: k-map-get( $kendo-palette-honey-yellow, 4 ),
2165
+ warning-subtle-hover: k-map-get( $kendo-palette-honey-yellow, 5 ),
2166
+ warning-subtle-active: k-map-get( $kendo-palette-honey-yellow, 6 ),
2167
+ warning: k-map-get( $kendo-palette-honey-yellow, 8 ),
2168
+ warning-hover: k-map-get( $kendo-palette-honey-yellow, 9 ),
2169
+ warning-active: k-map-get( $kendo-palette-honey-yellow, 10 ),
2170
+ warning-emphasis: k-map-get( $kendo-palette-honey-yellow, 7 ),
2171
+ warning-on-subtle: k-map-get( $kendo-palette-honey-yellow, 15 ),
2172
+ on-warning: k-map-get( $kendo-palette-ash-gray, black ),
2173
+ warning-on-surface: k-map-get( $kendo-palette-honey-yellow, 8 ),
2174
+ // Error
2175
+ error-subtle: k-map-get( $kendo-palette-brick-red, 4 ),
2176
+ error-subtle-hover: k-map-get( $kendo-palette-brick-red, 5 ),
2177
+ error-subtle-active: k-map-get( $kendo-palette-brick-red, 6 ),
2178
+ error: k-map-get( $kendo-palette-brick-red, 9 ),
2179
+ error-hover: k-map-get( $kendo-palette-brick-red, 10 ),
2180
+ error-active: k-map-get( $kendo-palette-brick-red, 11 ),
2181
+ error-emphasis: k-map-get( $kendo-palette-brick-red, 7 ),
2182
+ error-on-subtle: k-map-get( $kendo-palette-brick-red, 15 ),
2183
+ on-error: k-map-get( $kendo-palette-ash-gray, white ),
2184
+ error-on-surface: k-map-get( $kendo-palette-brick-red, 13 ),
2185
+ // Light
2186
+ light-subtle: k-map-get( $kendo-palette-ash-gray, 2 ),
2187
+ light-subtle-hover: k-map-get( $kendo-palette-ash-gray, 3 ),
2188
+ light-subtle-active: k-map-get( $kendo-palette-ash-gray, 4 ),
2189
+ light: k-map-get( $kendo-palette-ash-gray, 3 ),
2190
+ light-hover: k-map-get( $kendo-palette-ash-gray, 4 ),
2191
+ light-active: k-map-get( $kendo-palette-ash-gray, 5 ),
2192
+ light-emphasis: k-map-get( $kendo-palette-ash-gray, 6 ),
2193
+ light-on-subtle: k-map-get( $kendo-palette-ash-gray, 15 ),
2194
+ on-light: k-map-get( $kendo-palette-ash-gray, black ),
2195
+ light-on-surface: k-map-get( $kendo-palette-ash-gray, 3 ),
2196
+ // Dark
2197
+ dark-subtle: k-map-get( $kendo-palette-ash-gray, 6 ),
2198
+ dark-subtle-hover: k-map-get( $kendo-palette-ash-gray, 7 ),
2199
+ dark-subtle-active: k-map-get( $kendo-palette-ash-gray, 8 ),
2200
+ dark: k-map-get( $kendo-palette-ash-gray, 13 ),
2201
+ dark-hover: k-map-get( $kendo-palette-ash-gray, 14 ),
2202
+ dark-active: k-map-get( $kendo-palette-ash-gray, 15 ),
2203
+ dark-emphasis: k-map-get( $kendo-palette-ash-gray, 10 ),
2204
+ dark-on-subtle: k-map-get( $kendo-palette-ash-gray, black ),
2205
+ on-dark: k-map-get( $kendo-palette-ash-gray, white ),
2206
+ dark-on-surface: k-map-get( $kendo-palette-ash-gray, 14 ),
2207
+ // Inverse
2208
+ inverse-subtle: k-map-get( $kendo-palette-ash-gray, 6 ),
2209
+ inverse-subtle-hover: k-map-get( $kendo-palette-ash-gray, 7 ),
2210
+ inverse-subtle-active: k-map-get( $kendo-palette-ash-gray, 8 ),
2211
+ inverse: k-map-get( $kendo-palette-ash-gray, 13 ),
2212
+ inverse-hover: k-map-get( $kendo-palette-ash-gray, 14 ),
2213
+ inverse-active: k-map-get( $kendo-palette-ash-gray, 15 ),
2214
+ inverse-emphasis: k-map-get( $kendo-palette-ash-gray, 10 ),
2215
+ inverse-on-subtle: k-map-get( $kendo-palette-ash-gray, black ),
2216
+ on-inverse: k-map-get( $kendo-palette-ash-gray, white ),
2217
+ inverse-on-surface: k-map-get( $kendo-palette-ash-gray, 14 ),
2218
+ // Series A
2219
+ series-a: k-map-get( $kendo-palette-coral, 9 ),
2220
+ series-a-bold: k-map-get( $kendo-palette-coral, 12 ),
2221
+ series-a-bolder: k-map-get( $kendo-palette-coral, 14 ),
2222
+ series-a-subtle: k-map-get( $kendo-palette-coral, 5 ),
2223
+ series-a-subtler: k-map-get( $kendo-palette-coral, 7 ),
2224
+ // Series B
2225
+ series-b: k-map-get( $kendo-palette-pineapple-yellow, 9 ),
2226
+ series-b-bold: k-map-get( $kendo-palette-pineapple-yellow, 12 ),
2227
+ series-b-bolder: k-map-get( $kendo-palette-pineapple-yellow, 14 ),
2228
+ series-b-subtle: k-map-get( $kendo-palette-pineapple-yellow, 5 ),
2229
+ series-b-subtler: k-map-get( $kendo-palette-pineapple-yellow, 7 ),
2230
+ // Series C
2231
+ series-c: k-map-get( $kendo-palette-apple-green, 9 ),
2232
+ series-c-bold: k-map-get( $kendo-palette-apple-green, 12 ),
2233
+ series-c-bolder: k-map-get( $kendo-palette-apple-green, 14 ),
2234
+ series-c-subtle: k-map-get( $kendo-palette-apple-green, 5 ),
2235
+ series-c-subtler: k-map-get( $kendo-palette-apple-green, 7 ),
2236
+ // Series D
2237
+ series-d: k-map-get( $kendo-palette-pacific-blue, 9 ),
2238
+ series-d-bold: k-map-get( $kendo-palette-pacific-blue, 12 ),
2239
+ series-d-bolder: k-map-get( $kendo-palette-pacific-blue, 14 ),
2240
+ series-d-subtle: k-map-get( $kendo-palette-pacific-blue, 5 ),
2241
+ series-d-subtler: k-map-get( $kendo-palette-pacific-blue, 7 ),
2242
+ // Series Е
2243
+ series-e: k-map-get( $kendo-palette-bright-blue, 9 ),
2244
+ series-e-bold: k-map-get( $kendo-palette-bright-blue, 12 ),
2245
+ series-e-bolder: k-map-get( $kendo-palette-bright-blue, 14 ),
2246
+ series-e-subtle: k-map-get( $kendo-palette-bright-blue, 5 ),
2247
+ series-e-subtler: k-map-get( $kendo-palette-bright-blue, 7 ),
2248
+ // Series F
2249
+ series-f: k-map-get( $kendo-palette-orchid-purple, 9 ),
2250
+ series-f-bold: k-map-get( $kendo-palette-orchid-purple, 12 ),
2251
+ series-f-bolder: k-map-get( $kendo-palette-orchid-purple, 14 ),
2252
+ series-f-subtle: k-map-get( $kendo-palette-orchid-purple, 5 ),
2253
+ series-f-subtler: k-map-get( $kendo-palette-orchid-purple, 7 ),
2254
+ ) !default;
2255
+
2256
+ /// The global default Colors map.
2257
+ /// @group color-system
2258
+ $kendo-colors: $_default-colors !default;
2259
+
2260
+ $kendo-is-dark-theme: false !default;
2261
+
2262
+ // Theme colors
2263
+ /// The color that focuses the user attention.
2264
+ /// Used for primary buttons and for elements of primary importance across the theme.
2265
+ /// @group color-system
2266
+ /// @type Color
2267
+ $kendo-color-primary: #f35800 !default;
2268
+ $kendo-color-primary-lighter: k-color-tint( $kendo-color-primary, 2 ) !default;
2269
+ $kendo-color-primary-darker: k-color-shade( $kendo-color-primary, 2 ) !default;
2270
+
2271
+ /// The color used along with the primary color denoted by $kendo-color-primary.
2272
+ /// Used to provide contrast between the background and foreground colors.
2273
+ /// @group color-system
2274
+ /// @type Color
2275
+ $kendo-color-primary-contrast: k-contrast-legacy( $kendo-color-primary ) !default;
2276
+
2277
+ /// The secondary color of the theme.
2278
+ /// @group color-system
2279
+ /// @type Color
2280
+ $kendo-color-secondary: #e9e9e9 !default;
2281
+ $kendo-color-secondary-lighter: k-color-tint( $kendo-color-secondary, 2 ) !default;
2282
+ $kendo-color-secondary-darker: k-color-shade( $kendo-color-secondary, 2 ) !default;
2283
+
2284
+ /// The color used along with the secondary color denoted by $kendo-color-secondary.
2285
+ /// Used to provide contrast between the background and foreground colors.
2286
+ /// @group color-system
2287
+ /// @type Color
2288
+ $kendo-color-secondary-contrast: k-contrast-color( $kendo-color-secondary ) !default;
2289
+
2290
+ /// The tertiary color of the theme.
2291
+ /// @group color-system
2292
+ /// @type Color
2293
+ $kendo-color-tertiary: #03a9f4 !default;
2294
+ $kendo-color-tertiary-lighter: k-color-tint( $kendo-color-tertiary, 2 ) !default;
2295
+ $kendo-color-tertiary-darker: k-color-shade( $kendo-color-tertiary, 2 ) !default;
2296
+
2297
+ /// The color used along with the tertiary color denoted by $kendo-color-tertiary.
2298
+ /// Used to provide contrast between the background and foreground colors.
2299
+ /// @group color-system
2300
+ /// @type Color
2301
+ $kendo-color-tertiary-contrast: k-contrast-color( $kendo-color-tertiary ) !default;
2302
+
2303
+ /// The color for informational messages and states.
2304
+ /// @group color-system
2305
+ /// @type Color
2306
+ $kendo-color-info: #2498bc !default;
2307
+ $kendo-color-info-lighter: k-color-tint( $kendo-color-info, 2 ) !default;
2308
+ $kendo-color-info-darker: k-color-shade( $kendo-color-info, 2 ) !default;
2309
+
2310
+ /// The color for success messages and states.
2311
+ /// @group color-system
2312
+ /// @type Color
2313
+ $kendo-color-success: #3ea44e !default;
2314
+ $kendo-color-success-lighter: k-color-tint( $kendo-color-success, 2 ) !default;
2315
+ $kendo-color-success-darker: k-color-shade( $kendo-color-success, 2 ) !default;
2316
+
2317
+ /// The color for warning messages and states.
2318
+ /// @group color-system
2319
+ /// @type Color
2320
+ $kendo-color-warning: #ff9800 !default;
2321
+ $kendo-color-warning-lighter: k-color-tint( $kendo-color-warning, 2 ) !default;
2322
+ $kendo-color-warning-darker: k-color-shade( $kendo-color-warning, 2 ) !default;
2323
+
2324
+ /// The color for error messages and states.
2325
+ /// @group color-system
2326
+ /// @type Color
2327
+ $kendo-color-error: #d92800 !default;
2328
+ $kendo-color-error-lighter: k-color-tint( $kendo-color-error, 2 ) !default;
2329
+ $kendo-color-error-darker: k-color-shade( $kendo-color-error, 2 ) !default;
2330
+
2331
+ /// The dark color of the theme.
2332
+ /// @group color-system
2333
+ /// @type Color
2334
+ $kendo-color-dark: #404040 !default;
2335
+
2336
+ /// The light color of the theme.
2337
+ /// @group color-system
2338
+ /// @type Color
2339
+ $kendo-color-light: #ebebeb !default;
2340
+
2341
+ /// Inverse color of the theme. Depending on the theme luminance dark or light, it will be light or dark
2342
+ /// @group color-system
2343
+ $kendo-color-inverse: if( $kendo-is-dark-theme, $kendo-color-light, $kendo-color-dark ) !default;
2344
+
2345
+ $kendo-theme-colors: (
2346
+ "primary": $kendo-color-primary,
2347
+ "secondary": $kendo-color-secondary,
2348
+ "tertiary": $kendo-color-tertiary,
2349
+ "info": $kendo-color-info,
2350
+ "success": $kendo-color-success,
2351
+ "warning": $kendo-color-warning,
2352
+ "error": $kendo-color-error,
2353
+ "dark": $kendo-color-dark,
2354
+ "light": $kendo-color-light,
2355
+ "inverse": $kendo-color-inverse
2356
+ ) !default;
2357
+
2358
+ // Generic styles
2359
+
2360
+ /// Background color of the body.
2361
+ /// @group common
2362
+ $kendo-body-bg: $kendo-color-white !default;
2363
+ /// Text color of the body.
2364
+ /// @group common
2365
+ $kendo-body-text: #272727 !default;
2366
+
2367
+ /// Subtle text color.
2368
+ /// @group common
2369
+ $kendo-subtle-text: #646464 !default;
2370
+
2371
+ $kendo-app-bg: $kendo-body-bg !default;
2372
+ $kendo-app-text: $kendo-body-text !default;
2373
+ $kendo-app-border: k-try-shade( $kendo-app-bg, 2 ) !default;
2374
+
2375
+ // Link
2376
+ /// Text color of the links.
2377
+ /// @group common
2378
+ $kendo-link-text: $kendo-color-primary !default;
2379
+ /// Text color of the links on hover.
2380
+ /// @group common
2381
+ $kendo-link-hover-text: $kendo-color-primary-darker !default;
2382
+
2383
+ // Components
2384
+
2385
+ /// The background of the components' chrome area.
2386
+ $kendo-base-bg: #f0f0f0 !default;
2387
+ /// The text color of the components' chrome area.
2388
+ $kendo-base-text: $kendo-body-text !default;
2389
+ /// The border color of the components' chrome area.
2390
+ $kendo-base-border: k-try-shade( $kendo-base-bg, 2 ) !default;
2391
+ /// The gradient background of the components' chrome area.
2392
+ $kendo-base-gradient: rgba( white, .1 ), rgba( white, 0 ) !default;
2393
+
2394
+ /// Background color of a component.
2395
+ /// Note: do not use this variable directly. Instead derive it as `$component-name-bg` e.g. `$kendo-grid-bg: $kendo-component-bg !default;`.
2396
+ /// @group component
2397
+ $kendo-component-bg: $kendo-body-bg !default;
2398
+ /// Text color of a component.
2399
+ /// Note: do not use this variable directly. Instead derive it as `$component-name-text` e.g. `$kendo-grid-text: $kendo-component-text !default;`.
2400
+ /// @group component
2401
+ $kendo-component-text: $kendo-body-text !default;
2402
+ /// Border color of a component.
2403
+ /// Note: do not use this variable directly. Instead derive it as `$component-name-border` e.g. `$kendo-grid-border: $kendo-component-border !default;`.
2404
+ /// @group component
2405
+ $kendo-component-border: $kendo-base-border !default;
2406
+
2407
+ /// The background of hovered items.
2408
+ $kendo-hover-bg: k-try-shade( $kendo-base-bg, 1 ) !default;
2409
+ /// The text color of hovered items.
2410
+ $kendo-hover-text: $kendo-base-text !default;
2411
+ /// The border color of hovered items.
2412
+ $kendo-hover-border: k-try-shade( $kendo-hover-bg, 2 ) !default;
2413
+ /// The gradient background of hovered items.
2414
+ $kendo-hover-gradient: $kendo-base-gradient !default;
2415
+
2416
+ /// The background of selected items.
2417
+ $kendo-selected-bg: $kendo-color-primary !default;
2418
+ /// The text color of selected items.
2419
+ $kendo-selected-text: k-contrast-legacy( $kendo-selected-bg ) !default;
2420
+ /// The border color of selected items.
2421
+ $kendo-selected-border: k-try-shade( $kendo-selected-bg, 2 ) !default;
2422
+ /// The gradient background of selected items.
2423
+ $kendo-selected-gradient: $kendo-base-gradient !default;
2424
+
2425
+ /// The background of selected and hovered items.
2426
+ $kendo-selected-hover-bg: k-try-shade( $kendo-selected-bg, 1 ) !default;
2427
+ /// The text color of selected and hovered items.
2428
+ $kendo-selected-hover-text: k-contrast-legacy( $kendo-selected-hover-bg ) !default;
2429
+ /// The border of selected and hovered items.
2430
+ $kendo-selected-hover-border: $kendo-selected-border !default;
2431
+ /// The gradient of selected and hovered items.
2432
+ $kendo-selected-hover-gradient: $kendo-selected-gradient !default;
2433
+
2434
+ /// Text color of disabled items.
2435
+ $kendo-disabled-text: #8d8d8d !default;
2436
+
2437
+ // Generic styles
2438
+
2439
+ /// Background color of the component header.
2440
+ /// @group component
2441
+ $kendo-component-header-bg: $kendo-base-bg !default;
2442
+ /// Text color of the component header.
2443
+ /// @group component
2444
+ $kendo-component-header-text: $kendo-base-text !default;
2445
+ /// Border color of the component header.
2446
+ /// @group component
2447
+ $kendo-component-header-border: $kendo-base-border !default;
2448
+ /// Gradient of the component header.
2449
+ /// @group component
2450
+ $kendo-component-header-gradient: $kendo-base-gradient !default;
2451
+
2452
+ /// Background color of the invalid items.
2453
+ /// @group component
2454
+ $kendo-invalid-bg: null !default;
2455
+ /// Text color of the invalid items.
2456
+ /// @group component
2457
+ $kendo-invalid-text: $kendo-color-error !default;
2458
+ /// Border color of the invalid items.
2459
+ /// @group component
2460
+ $kendo-invalid-border: $kendo-color-error !default;
2461
+ /// Shadow of the invalid items.
2462
+ /// @group component
2463
+ $kendo-invalid-shadow: null !default;
2464
+
2465
+ /// Background color of the valid items.
2466
+ /// @group component
2467
+ $kendo-valid-bg: null !default;
2468
+ /// Text color of the valid items.
2469
+ /// @group component
2470
+ $kendo-valid-text: $kendo-color-success !default;
2471
+ /// Border color of the valid items.
2472
+ /// @group component
2473
+ $kendo-valid-border: $kendo-color-success !default;
2474
+ /// Shadow of the valid items.
2475
+ /// @group component
2476
+ $kendo-valid-shadow: null !default;
2477
+
2478
+ // #endregion
2479
+
2480
+ // Variables
2481
+ // #region @import "../_variables.scss"; -> scss/_variables.scss
2482
+ // #region @import "./core/functions/index.import.scss"; -> scss/core/functions/index.import.scss
2483
+ // #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
2484
+ // File already imported_once. Skipping output.
2485
+ // #endregion
2486
+
2487
+ // #endregion
2488
+
1746
2489
  // Options
1747
2490
  $kendo-enable-rounded: true !default;
1748
2491
  $kendo-enable-shadows: true !default;
@@ -1846,103 +2589,6 @@ $kendo-zindex-loading: 100 !default;
1846
2589
  // Color settings
1847
2590
  $kendo-is-dark-theme: false !default;
1848
2591
 
1849
- // Theme colors
1850
- /// The color that focuses the user attention.
1851
- /// Used for primary buttons and for elements of primary importance across the theme.
1852
- /// @group color-system
1853
- /// @type Color
1854
- $kendo-color-primary: #f35800 !default;
1855
- $kendo-color-primary-lighter: k-color-tint( $kendo-color-primary, 2 ) !default;
1856
- $kendo-color-primary-darker: k-color-shade( $kendo-color-primary, 2 ) !default;
1857
-
1858
- /// The color used along with the primary color denoted by $kendo-color-primary.
1859
- /// Used to provide contrast between the background and foreground colors.
1860
- /// @group color-system
1861
- /// @type Color
1862
- $kendo-color-primary-contrast: k-contrast-legacy( $kendo-color-primary ) !default;
1863
-
1864
- /// The secondary color of the theme.
1865
- /// @group color-system
1866
- /// @type Color
1867
- $kendo-color-secondary: #e9e9e9 !default;
1868
- $kendo-color-secondary-lighter: k-color-tint( $kendo-color-secondary, 2 ) !default;
1869
- $kendo-color-secondary-darker: k-color-shade( $kendo-color-secondary, 2 ) !default;
1870
-
1871
- /// The color used along with the secondary color denoted by $kendo-color-secondary.
1872
- /// Used to provide contrast between the background and foreground colors.
1873
- /// @group color-system
1874
- /// @type Color
1875
- $kendo-color-secondary-contrast: k-contrast-color( $kendo-color-secondary ) !default;
1876
-
1877
- /// The tertiary color of the theme.
1878
- /// @group color-system
1879
- /// @type Color
1880
- $kendo-color-tertiary: #03a9f4 !default;
1881
- $kendo-color-tertiary-lighter: k-color-tint( $kendo-color-tertiary, 2 ) !default;
1882
- $kendo-color-tertiary-darker: k-color-shade( $kendo-color-tertiary, 2 ) !default;
1883
-
1884
- /// The color used along with the tertiary color denoted by $kendo-color-tertiary.
1885
- /// Used to provide contrast between the background and foreground colors.
1886
- /// @group color-system
1887
- /// @type Color
1888
- $kendo-color-tertiary-contrast: k-contrast-color( $kendo-color-tertiary ) !default;
1889
-
1890
- /// The color for informational messages and states.
1891
- /// @group color-system
1892
- /// @type Color
1893
- $kendo-color-info: #2498bc !default;
1894
- $kendo-color-info-lighter: k-color-tint( $kendo-color-info, 2 ) !default;
1895
- $kendo-color-info-darker: k-color-shade( $kendo-color-info, 2 ) !default;
1896
-
1897
- /// The color for success messages and states.
1898
- /// @group color-system
1899
- /// @type Color
1900
- $kendo-color-success: #3ea44e !default;
1901
- $kendo-color-success-lighter: k-color-tint( $kendo-color-success, 2 ) !default;
1902
- $kendo-color-success-darker: k-color-shade( $kendo-color-success, 2 ) !default;
1903
-
1904
- /// The color for warning messages and states.
1905
- /// @group color-system
1906
- /// @type Color
1907
- $kendo-color-warning: #ff9800 !default;
1908
- $kendo-color-warning-lighter: k-color-tint( $kendo-color-warning, 2 ) !default;
1909
- $kendo-color-warning-darker: k-color-shade( $kendo-color-warning, 2 ) !default;
1910
-
1911
- /// The color for error messages and states.
1912
- /// @group color-system
1913
- /// @type Color
1914
- $kendo-color-error: #d92800 !default;
1915
- $kendo-color-error-lighter: k-color-tint( $kendo-color-error, 2 ) !default;
1916
- $kendo-color-error-darker: k-color-shade( $kendo-color-error, 2 ) !default;
1917
-
1918
- /// The dark color of the theme.
1919
- /// @group color-system
1920
- /// @type Color
1921
- $kendo-color-dark: #404040 !default;
1922
-
1923
- /// The light color of the theme.
1924
- /// @group color-system
1925
- /// @type Color
1926
- $kendo-color-light: #ebebeb !default;
1927
-
1928
- /// Inverse color of the theme. Depending on the theme luminance dark or light, it will be light or dark
1929
- /// @group color-system
1930
- $kendo-color-inverse: if( $kendo-is-dark-theme, $kendo-color-light, $kendo-color-dark ) !default;
1931
-
1932
-
1933
- $kendo-theme-colors: (
1934
- "primary": $kendo-color-primary,
1935
- "secondary": $kendo-color-secondary,
1936
- "tertiary": $kendo-color-tertiary,
1937
- "info": $kendo-color-info,
1938
- "success": $kendo-color-success,
1939
- "warning": $kendo-color-warning,
1940
- "error": $kendo-color-error,
1941
- "dark": $kendo-color-dark,
1942
- "light": $kendo-color-light,
1943
- "inverse": $kendo-color-inverse
1944
- ) !default;
1945
-
1946
2592
 
1947
2593
  // Typography
1948
2594
 
@@ -1995,77 +2641,12 @@ $kendo-font-weight-bold: 700 !default;
1995
2641
  $kendo-letter-spacing: null !default;
1996
2642
 
1997
2643
 
1998
- // Generic styles
1999
-
2000
- // Root styles
2001
- $kendo-body-bg: $kendo-color-white !default;
2002
- $kendo-body-text: #272727 !default;
2003
-
2004
- $kendo-subtle-text: #646464 !default;
2005
-
2006
- $kendo-app-bg: $kendo-body-bg !default;
2007
- $kendo-app-text: $kendo-body-text !default;
2008
- $kendo-app-border: k-try-shade( $kendo-app-bg, 2 ) !default;
2009
-
2010
- // Link
2011
- $kendo-link-text: $kendo-color-primary !default;
2012
- $kendo-link-hover-text: $kendo-color-primary-darker !default;
2013
-
2014
-
2015
- // Components
2016
-
2017
- /// The background of the components' chrome area.
2018
- $kendo-base-bg: #f0f0f0 !default;
2019
- /// The text color of the components' chrome area.
2020
- $kendo-base-text: $kendo-body-text !default;
2021
- /// The border color of the components' chrome area.
2022
- $kendo-base-border: k-try-shade( $kendo-base-bg, 2 ) !default;
2023
- /// The gradient background of the components' chrome area.
2024
- $kendo-base-gradient: rgba( white, .1 ), rgba( white, 0 ) !default;
2025
-
2026
- /// Background color of a component.
2027
- /// Note: do not use this variable directly. Instead derive it as `$component-name-bg` e.g. `$kendo-grid-bg: $kendo-component-bg !default;`.
2028
- /// @group component
2029
- $kendo-component-bg: $kendo-body-bg !default;
2030
- /// Text color of a component.
2031
- /// Note: do not use this variable directly. Instead derive it as `$component-name-text` e.g. `$kendo-grid-text: $kendo-component-text !default;`.
2032
- /// @group component
2033
- $kendo-component-text: $kendo-body-text !default;
2034
- /// Border color of a component.
2035
- /// Note: do not use this variable directly. Instead derive it as `$component-name-border` e.g. `$kendo-grid-border: $kendo-component-border !default;`.
2036
- /// @group component
2037
- $kendo-component-border: $kendo-base-border !default;
2038
-
2039
- /// The background of hovered items.
2040
- $kendo-hover-bg: k-try-shade( $kendo-base-bg, 1 ) !default;
2041
- /// The text color of hovered items.
2042
- $kendo-hover-text: $kendo-base-text !default;
2043
- /// The border color of hovered items.
2044
- $kendo-hover-border: k-try-shade( $kendo-hover-bg, 2 ) !default;
2045
- /// The gradient background of hovered items.
2046
- $kendo-hover-gradient: $kendo-base-gradient !default;
2047
-
2048
- /// The background of selected items.
2049
- $kendo-selected-bg: $kendo-color-primary !default;
2050
- /// The text color of selected items.
2051
- $kendo-selected-text: k-contrast-legacy( $kendo-selected-bg ) !default;
2052
- /// The border color of selected items.
2053
- $kendo-selected-border: k-try-shade( $kendo-selected-bg, 2 ) !default;
2054
- /// The gradient background of selected items.
2055
- $kendo-selected-gradient: $kendo-base-gradient !default;
2056
-
2057
- $kendo-selected-hover-bg: k-try-shade( $kendo-selected-bg, 1 ) !default;
2058
- $kendo-selected-hover-text: k-contrast-legacy( $kendo-selected-hover-bg ) !default;
2059
- $kendo-selected-hover-border: $kendo-selected-border !default;
2060
- $kendo-selected-hover-gradient: $kendo-selected-gradient !default;
2061
-
2062
2644
  $kendo-focus-shadow: inset 0 0 0 2px rgba( black, .13 ) !default;
2063
2645
 
2064
2646
  $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;
2065
2647
 
2066
2648
 
2067
2649
  // Disabled mixin variables
2068
- $kendo-disabled-text: #8d8d8d !default;
2069
2650
  $kendo-disabled-filter: grayscale(.1) !default;
2070
2651
  $kendo-disabled-opacity: .6 !default;
2071
2652
 
@@ -2075,29 +2656,6 @@ $kendo-disabled-styling: (
2075
2656
  ) !default;
2076
2657
 
2077
2658
 
2078
- // Generic styles
2079
-
2080
- // TODO: refactor once we extract drag drop as separate module
2081
-
2082
-
2083
- // Header
2084
- $kendo-component-header-bg: $kendo-base-bg !default;
2085
- $kendo-component-header-text: $kendo-base-text !default;
2086
- $kendo-component-header-border: $kendo-base-border !default;
2087
- $kendo-component-header-gradient: $kendo-base-gradient !default;
2088
-
2089
-
2090
- // Validator
2091
- $kendo-invalid-bg: null !default;
2092
- $kendo-invalid-text: $kendo-color-error !default;
2093
- $kendo-invalid-border: $kendo-color-error !default;
2094
- $kendo-invalid-shadow: null !default;
2095
-
2096
- $kendo-valid-bg: null !default;
2097
- $kendo-valid-text: $kendo-color-success !default;
2098
- $kendo-valid-border: $kendo-color-success !default;
2099
- $kendo-valid-shadow: null !default;
2100
-
2101
2659
  // Loading
2102
2660
  $kendo-loading-opacity: .3 !default;
2103
2661
  $kendo-zindex-loading: 100 !default;
@@ -3189,6 +3747,31 @@ $kendo-palettes: (
3189
3747
  @return var( --#{$prefix}#{$name}, #{$fallback} );
3190
3748
  }
3191
3749
 
3750
+ @function k-get-swatch-color( $name, $color ) {
3751
+ $map: (
3752
+ app-surface: k-color( app-surface ),
3753
+ on-app-surface: k-color( on-app-surface ),
3754
+ subtle: k-color( subtle ),
3755
+ surface: k-color( surface ),
3756
+ surface-alt: k-color( surface-alt ),
3757
+ border: k-color( border ),
3758
+ border-alt: k-color( border-alt ),
3759
+ color-subtle: k-color( #{$color}-subtle ),
3760
+ color-subtle-hover: k-color( #{$color}-subtle-hover ),
3761
+ color-subtle-active: k-color( #{$color}-subtle-active ),
3762
+ color: k-color( #{$color} ),
3763
+ color-hover: k-color( #{$color}-hover ),
3764
+ color-active: k-color( #{$color}-active ),
3765
+ color-emphasis: k-color( #{$color}-emphasis ),
3766
+ color-on-subtle: k-color( #{$color}-on-subtle ),
3767
+ on-color: k-color( on-#{$color} ),
3768
+ color-on-surface: k-color( #{$color}-on-surface ),
3769
+ on-color-disabled: rgba( k-color( on-#{$color}, true ), .46)
3770
+ );
3771
+
3772
+ @return if( k-map-has-key( $map, $name ), k-map-get( $map, $name ), $name );
3773
+ };
3774
+
3192
3775
  @function k-generate-theme-variation( $theme-color, $source-palette-name, $mapping ) {
3193
3776
  $temp: ( );
3194
3777
 
@@ -3200,9 +3783,9 @@ $kendo-palettes: (
3200
3783
  $border-prop: k-list-nth($indices, 3);
3201
3784
 
3202
3785
  // Take value from the palette only if it is a number
3203
- $bg: if( k-meta-type-of($bg-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$bg-prop} ), $bg-prop );
3204
- $text: if( k-meta-type-of($text-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$text-prop} ), $text-prop );
3205
- $border: if( k-meta-type-of($border-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$border-prop} ), $border-prop );
3786
+ $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 ));
3787
+ $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 ));
3788
+ $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 ));
3206
3789
 
3207
3790
 
3208
3791
  $temp: k-map-deep-merge( $temp, (
@@ -3214,7 +3797,7 @@ $kendo-palettes: (
3214
3797
  // Add outline if provided in the map
3215
3798
  @if ( k-list-length($indices) > 3 ) {
3216
3799
  $outline-prop: k-list-nth($indices, 4);
3217
- $outline: if( k-meta-type-of($outline-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$outline-prop} ), $outline-prop );
3800
+ $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 ));
3218
3801
 
3219
3802
  $temp: k-map-deep-merge( $temp, (
3220
3803
  #{$prefix}outline: $outline
@@ -3241,6 +3824,18 @@ $kendo-palettes: (
3241
3824
  @return $result;
3242
3825
  }
3243
3826
 
3827
+ @function k-hex-to-rgb( $color ) {
3828
+ @if($color) {
3829
+ $r: k-color-red($color);
3830
+ $g: k-color-green($color);
3831
+ $b: k-color-blue($color);
3832
+
3833
+ @return $r, $g, $b;
3834
+ } @else {
3835
+ @return null;
3836
+ }
3837
+ }
3838
+
3244
3839
  // #endregion
3245
3840
  // #region @import "./_mixins.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/color-system/_mixins.import.scss
3246
3841
  @mixin k-css-vars($map) {
@@ -3252,204 +3847,294 @@ $kendo-palettes: (
3252
3847
  }
3253
3848
 
3254
3849
  // #endregion
3255
- // #region @import "./_variables.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/color-system/_variables.scss
3256
- // Color constants
3257
-
3258
- /// The color white.
3259
- /// Note: you cannot change this value.
3260
- /// @type Color
3261
- /// @group color-system
3262
- $kendo-color-white: #ffffff; // stylelint-disable-line scss/dollar-variable-default
3263
-
3264
- /// The color black.
3265
- /// Note: you cannot change this value.
3266
- /// @type Color
3267
- /// @group color-system
3268
- $kendo-color-black: #000000; // stylelint-disable-line scss/dollar-variable-default
3850
+ // #region @import "./_swatch.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/color-system/_swatch.scss
3851
+ // #region @import "./_functions.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/color-system/_functions.import.scss
3852
+ // File already imported_once. Skipping output.
3853
+ // #endregion
3269
3854
 
3270
- /// The color transparent.
3271
- /// Note: you cannot change this value.
3272
- /// @type Color
3273
- /// @group color-system
3274
- $kendo-color-rgba-transparent: rgba( 0, 0, 0, 0 ); // stylelint-disable-line scss/dollar-variable-default
3855
+ // Config
3856
+ $kendo-enable-color-system: false !default;
3275
3857
 
3276
- /// A gradient that goes from transparent to black.
3277
- /// Note: you cannot change this value.
3278
- /// @type Gradient
3279
- /// @group color-system
3280
- $kendo-gradient-transparent-to-black: rgba( black, 0 ), black; // stylelint-disable-line scss/dollar-variable-default
3858
+ // Colors
3859
+ $_default-colors: (
3860
+ // Misc
3861
+ app-surface: null,
3862
+ on-app-surface: null,
3863
+ subtle: null,
3864
+ surface: null,
3865
+ surface-alt: null,
3866
+ border: null,
3867
+ border-alt: null,
3868
+ // Base
3869
+ base-subtle: null,
3870
+ base-subtle-hover: null,
3871
+ base-subtle-active: null,
3872
+ base: null,
3873
+ base-hover: null,
3874
+ base-active: null,
3875
+ base-emphasis: null,
3876
+ base-on-subtle: null,
3877
+ on-base: null,
3878
+ base-on-surface: null,
3879
+ // Primary
3880
+ primary-subtle: null,
3881
+ primary-subtle-hover: null,
3882
+ primary-subtle-active: null,
3883
+ primary: null,
3884
+ primary-hover: null,
3885
+ primary-active: null,
3886
+ primary-emphasis: null,
3887
+ primary-on-subtle: null,
3888
+ on-primary: null,
3889
+ primary-on-surface: null,
3890
+ // Secondary
3891
+ secondary-subtle: null,
3892
+ secondary-subtle-hover: null,
3893
+ secondary-subtle-active: null,
3894
+ secondary: null,
3895
+ secondary-hover: null,
3896
+ secondary-active: null,
3897
+ secondary-emphasis: null,
3898
+ secondary-on-subtle: null,
3899
+ on-secondary: null,
3900
+ secondary-on-surface: null,
3901
+ // Tertiary
3902
+ tertiary-subtle: null,
3903
+ tertiary-subtle-hover: null,
3904
+ tertiary-subtle-active: null,
3905
+ tertiary: null,
3906
+ tertiary-hover: null,
3907
+ tertiary-active: null,
3908
+ tertiary-emphasis: null,
3909
+ tertiary-on-subtle: null,
3910
+ on-tertiary: null,
3911
+ tertiary-on-surface: null,
3912
+ // Info
3913
+ info-subtle: null,
3914
+ info-subtle-hover: null,
3915
+ info-subtle-active: null,
3916
+ info: null,
3917
+ info-hover: null,
3918
+ info-active: null,
3919
+ info-emphasis: null,
3920
+ info-on-subtle: null,
3921
+ on-info: null,
3922
+ info-on-surface: null,
3923
+ // Success
3924
+ success-subtle: null,
3925
+ success-subtle-hover: null,
3926
+ success-subtle-active: null,
3927
+ success: null,
3928
+ success-hover: null,
3929
+ success-active: null,
3930
+ success-emphasis: null,
3931
+ success-on-subtle: null,
3932
+ on-success: null,
3933
+ success-on-surface: null,
3934
+ // Warning
3935
+ warning-subtle: null,
3936
+ warning-subtle-hover: null,
3937
+ warning-subtle-active: null,
3938
+ warning: null,
3939
+ warning-hover: null,
3940
+ warning-active: null,
3941
+ warning-emphasis: null,
3942
+ warning-on-subtle: null,
3943
+ on-warning: null,
3944
+ warning-on-surface: null,
3945
+ // Error
3946
+ error-subtle: null,
3947
+ error-subtle-hover: null,
3948
+ error-subtle-active: null,
3949
+ error: null,
3950
+ error-hover: null,
3951
+ error-active: null,
3952
+ error-emphasis: null,
3953
+ error-on-subtle: null,
3954
+ on-error: null,
3955
+ error-on-surface: null,
3956
+ // Light
3957
+ light-subtle: null,
3958
+ light-subtle-hover: null,
3959
+ light-subtle-active: null,
3960
+ light: null,
3961
+ light-hover: null,
3962
+ light-active: null,
3963
+ light-emphasis: null,
3964
+ light-on-subtle: null,
3965
+ on-light: null,
3966
+ light-on-surface: null,
3967
+ // Dark
3968
+ dark-subtle: null,
3969
+ dark-subtle-hover: null,
3970
+ dark-subtle-active: null,
3971
+ dark: null,
3972
+ dark-hover: null,
3973
+ dark-active: null,
3974
+ dark-emphasis: null,
3975
+ dark-on-subtle: null,
3976
+ on-dark: null,
3977
+ dark-on-surface: null,
3978
+ // Inverse
3979
+ inverse-subtle: null,
3980
+ inverse-subtle-hover: null,
3981
+ inverse-subtle-active: null,
3982
+ inverse: null,
3983
+ inverse-hover: null,
3984
+ inverse-active: null,
3985
+ inverse-emphasis: null,
3986
+ inverse-on-subtle: null,
3987
+ on-inverse: null,
3988
+ inverse-on-surface: null,
3989
+ // Series A
3990
+ series-a: null,
3991
+ series-a-bold: null,
3992
+ series-a-bolder: null,
3993
+ series-a-subtle: null,
3994
+ series-a-subtler: null,
3995
+ // Series B
3996
+ series-b: null,
3997
+ series-b-bold: null,
3998
+ series-b-bolder: null,
3999
+ series-b-subtle: null,
4000
+ series-b-subtler: null,
4001
+ // Series C
4002
+ series-c: null,
4003
+ series-c-bold: null,
4004
+ series-c-bolder: null,
4005
+ series-c-subtle: null,
4006
+ series-c-subtler: null,
4007
+ // Series D
4008
+ series-d: null,
4009
+ series-d-bold: null,
4010
+ series-d-bolder: null,
4011
+ series-d-subtle: null,
4012
+ series-d-subtler: null,
4013
+ // Series Е
4014
+ series-e: null,
4015
+ series-e-bold: null,
4016
+ series-e-bolder: null,
4017
+ series-e-subtle: null,
4018
+ series-e-subtler: null,
4019
+ // Series F
4020
+ series-f: null,
4021
+ series-f-bold: null,
4022
+ series-f-bolder: null,
4023
+ series-f-subtle: null,
4024
+ series-f-subtler: null,
4025
+ ) !default;
3281
4026
 
3282
- /// A gradient that goes from transparent to white.
3283
- /// Note: you cannot change this value.
3284
- /// @type Gradient
4027
+ /// The global default Colors map.
3285
4028
  /// @group color-system
3286
- $kendo-gradient-transparent-to-white: rgba( white, 0 ), white; // stylelint-disable-line scss/dollar-variable-default
4029
+ $kendo-colors: $_default-colors !default;
4030
+ $kendo-colors: k-map-merge($_default-colors, $kendo-colors);
3287
4031
 
3288
- /// A gradient that goes from black to transparent.
3289
- /// Note: you cannot change this value.
3290
- /// @type Gradient
3291
- /// @group color-system
3292
- $kendo-gradient-black-to-transparent: black, rgba( black, 0 ); // stylelint-disable-line scss/dollar-variable-default
4032
+ @function k-color($key, $rgb: false) {
4033
+ $_color: k-map-get($kendo-colors, $key);
3293
4034
 
3294
- /// A gradient that goes from white to transparent.
3295
- /// Note: you cannot change this value.
3296
- /// @type Gradient
3297
- /// @group color-system
3298
- $kendo-gradient-white-to-transparent: white, rgba( white, 0 ); // stylelint-disable-line scss/dollar-variable-default
4035
+ @if ($_color) {
4036
+ @if ($rgb) {
4037
+ @return var(--kendo-color-#{$key}-rgb, k-hex-to-rgb($_color));
4038
+ } @else {
4039
+ @return var(--kendo-color-#{$key}, $_color);
4040
+ }
4041
+ } @else {
4042
+ @error "Color Variable \`#{$key}\` does not exists in the color collection.";
4043
+ }
4044
+ }
3299
4045
 
3300
- /// A gradient that cycles through the colors of the rainbow.
3301
- /// Note: you cannot change this value.
3302
- /// @type Gradient
3303
- /// @group color-system
3304
- $kendo-gradient-rainbow: #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000; // stylelint-disable-line scss/dollar-variable-default
4046
+ @mixin color-system--styles() {
4047
+ :root {
4048
+ @each $key, $value in $kendo-colors {
4049
+ @if($value) {
4050
+ --kendo-color-#{$key}: #{$value};
4051
+ --kendo-color-#{$key}-rgb: #{k-hex-to-rgb($value)};
4052
+ }
4053
+ }
4054
+ }
4055
+ }
3305
4056
 
4057
+ // #endregion
4058
+ // #region @import "./_constants.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/color-system/_constants.scss
4059
+ // File already imported_once. Skipping output.
4060
+ // #endregion
4061
+ // #region @import "./_swatch-legacy.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/color-system/_swatch-legacy.scss
4062
+ $kendo-is-dark-theme: false !default;
3306
4063
 
3307
4064
  // Root styles
3308
- $kendo-body-bg: $kendo-color-white !default;
3309
- $kendo-body-text: k-get-theme-color-var( neutral-160 ) !default;
4065
+ $kendo-body-bg: null !default;
4066
+ $kendo-body-text: null !default;
3310
4067
 
3311
4068
  // Component styles
3312
- $kendo-component-bg: $kendo-body-bg !default;
3313
- $kendo-component-text: $kendo-body-text !default;
3314
- $kendo-component-border: k-get-theme-color-var( neutral-30 ) !default;
4069
+ $kendo-component-bg: null !default;
4070
+ $kendo-component-text: null !default;
4071
+ $kendo-component-border: null !default;
3315
4072
 
3316
4073
  // States styles
3317
- $kendo-hover-bg: k-get-theme-color-var( neutral-20 ) !default;
3318
- $kendo-hover-text: k-get-theme-color-var( neutral-190 ) !default;
3319
- $kendo-hover-border: k-get-theme-color-var( neutral-20 ) !default;
4074
+ $kendo-hover-bg: null !default;
4075
+ $kendo-hover-text: null !default;
4076
+ $kendo-hover-border: null !default;
3320
4077
 
3321
- $kendo-selected-bg: k-get-theme-color-var( neutral-30 ) !default;
3322
- $kendo-selected-text: k-get-theme-color-var( neutral-160 ) !default;
3323
- $kendo-selected-border: k-get-theme-color-var( neutral-130 ) !default;
4078
+ $kendo-selected-bg: null !default;
4079
+ $kendo-selected-text: null !default;
4080
+ $kendo-selected-border: null !default;
3324
4081
 
3325
- $kendo-selected-hover-bg: k-get-theme-color-var( neutral-40 ) !default;
3326
- $kendo-selected-hover-text: k-get-theme-color-var( neutral-190 ) !default;
3327
- $kendo-selected-hover-border: k-get-theme-color-var( neutral-130 ) !default;
4082
+ $kendo-selected-hover-bg: null !default;
4083
+ $kendo-selected-hover-text: null !default;
4084
+ $kendo-selected-hover-border: null !default;
3328
4085
 
3329
- $kendo-focus-outline: k-get-theme-color-var( neutral-130 ) !default;
4086
+ $kendo-focus-outline: null !default;
3330
4087
 
3331
- $kendo-subtle-text: k-get-theme-color-var( neutral-130 ) !default;
4088
+ $kendo-subtle-text: null !default;
3332
4089
 
3333
4090
  // Link
3334
- $kendo-link-text: k-get-theme-color-var( primary-100 ) !default;
3335
- $kendo-link-hover-text: k-get-theme-color-var( primary-120 ) !default;
4091
+ $kendo-link-text: null !default;
4092
+ $kendo-link-hover-text: null !default;
3336
4093
 
3337
4094
  // Validator
3338
- $kendo-invalid-bg: initial !default;
3339
- $kendo-invalid-text: k-get-theme-color-var( error-190 ) !default;
3340
- $kendo-invalid-border: k-get-theme-color-var( error-190 ) !default;
4095
+ $kendo-invalid-bg: null !default;
4096
+ $kendo-invalid-text: null !default;
4097
+ $kendo-invalid-border: null !default;
3341
4098
  $kendo-invalid-shadow: null !default;
3342
4099
 
3343
- $kendo-valid-bg: initial !default;
3344
- $kendo-valid-text: k-get-theme-color-var( success-190 ) !default;
3345
- $kendo-valid-border: k-get-theme-color-var( success-190 ) !default;
3346
- $kendo-valid-shadow: null !default;
3347
-
3348
4100
  // Disabled Styling
3349
- $kendo-disabled-bg: k-get-theme-color-var( neutral-20 ) !default;
3350
- $kendo-disabled-text: k-get-theme-color-var( neutral-90 ) !default;
3351
- $kendo-disabled-border: transparent !default;
4101
+ $kendo-disabled-bg: null !default;
4102
+ $kendo-disabled-text: null !default;
4103
+ $kendo-disabled-border: null !default;
3352
4104
 
3353
4105
  // Loading
3354
- $kendo-loading-bg: $kendo-component-bg !default;
3355
- $kendo-loading-text: currentColor !default;
3356
-
3357
-
3358
- // Theme colors
3359
- $kendo-theme-colors: (
3360
- primary: (
3361
- text: k-get-theme-color-var( primary-130 ),
3362
- bg: k-get-theme-color-var( primary-20 ),
3363
- border: k-get-theme-color-var( primary-20 )
3364
- ),
3365
- info: (
3366
- text: k-get-theme-color-var( info-190 ),
3367
- bg: k-get-theme-color-var( info-20 ),
3368
- border: k-get-theme-color-var( info-20 )
3369
- ),
3370
- success: (
3371
- text: k-get-theme-color-var( success-190 ),
3372
- bg: k-get-theme-color-var( success-20 ),
3373
- border: k-get-theme-color-var( success-20 )
3374
- ),
3375
- warning: (
3376
- text: k-get-theme-color-var( neutral-160 ),
3377
- bg: k-get-theme-color-var( warning-20 ),
3378
- border: k-get-theme-color-var( warning-20 )
3379
- ),
3380
- error: (
3381
- text: k-get-theme-color-var( error-190 ),
3382
- bg: k-get-theme-color-var( error-20 ),
3383
- border: k-get-theme-color-var( error-20 )
3384
- )
3385
- ) !default;
4106
+ $kendo-loading-bg: null !default;
4107
+ $kendo-loading-text: null !default;
3386
4108
 
4109
+ $kendo-palettes: () !default;
4110
+ $kendo-theme-colors: () !default;
3387
4111
 
3388
4112
  @mixin color-system-styles() {
3389
4113
  :root {
3390
- @include k-css-vars( $kendo-palettes );
3391
- @include k-css-vars( $kendo-theme-colors );
3392
-
3393
- --kendo-body-bg: #{$kendo-body-bg};
3394
- --kendo-body-text: #{$kendo-body-text};
3395
-
3396
- --kendo-component-bg: #{$kendo-component-bg};
3397
- --kendo-component-text: #{$kendo-component-text};
3398
- --kendo-component-border: #{$kendo-component-border};
3399
-
3400
- --kendo-link-text: #{$kendo-link-text};
3401
- --kendo-link-hover-text: #{$kendo-link-hover-text};
3402
-
3403
- --kendo-disabled-bg: #{$kendo-disabled-bg};
3404
- --kendo-disabled-text: #{$kendo-disabled-text};
3405
- --kendo-disabled-border: #{$kendo-disabled-border};
4114
+ @include k-css-vars($kendo-palettes);
4115
+ @include k-css-vars($kendo-theme-colors);
3406
4116
 
3407
- --kendo-hover-bg: #{$kendo-hover-bg};
3408
- --kendo-hover-text: #{$kendo-hover-text};
3409
- --kendo-hover-border: #{$kendo-hover-border};
4117
+ // Text colors
4118
+ @each $theme-color, $color-props in $kendo-theme-colors {
4119
+ $_color: k-map-get($color-props, text);
3410
4120
 
3411
- --kendo-selected-bg: #{$kendo-selected-bg};
3412
- --kendo-selected-text: #{$kendo-selected-text};
3413
- --kendo-selected-border: #{$kendo-selected-border};
3414
-
3415
- --kendo-selected-hover-bg: #{$kendo-selected-hover-bg};
3416
- --kendo-selected-hover-text: #{$kendo-selected-hover-text};
3417
- --kendo-selected-hover-border: #{$kendo-selected-hover-border};
3418
-
3419
- --kendo-focus-outline: #{$kendo-focus-outline};
3420
-
3421
- --kendo-subtle-text: #{$kendo-subtle-text};
3422
-
3423
- --kendo-invalid-bg: #{$kendo-invalid-bg};
3424
- --kendo-invalid-text: #{$kendo-invalid-text};
3425
- --kendo-invalid-border: #{$kendo-invalid-border};
3426
- --kendo-invalid-shadow: #{$kendo-invalid-shadow};
3427
-
3428
- --kendo-border-radius-sm: #{$kendo-border-radius-sm};
3429
- --kendo-border-radius-md: #{$kendo-border-radius-md};
3430
- --kendo-border-radius-lg: #{$kendo-border-radius-lg};
3431
- }
3432
-
3433
- // Text colors
3434
- @each $theme-color, $color-props in $kendo-theme-colors {
3435
- $_color: k-map-get( $color-props, text );
3436
-
3437
- .k-text-#{$theme-color},
3438
- .k-color-#{$theme-color} {
3439
- color: var( --kendo-text-#{$theme-color}, #{$_color} );
3440
- }
3441
- .\!k-text-#{$theme-color},
3442
- .\!k-color-#{$theme-color} {
3443
- color: var( --kendo-text-#{$theme-color}, #{$_color} ) !important; // stylelint-disable-line declaration-no-important
3444
- }
4121
+ .k-text-#{$theme-color},
4122
+ .k-color-#{$theme-color} {
4123
+ color: var(--kendo-text-#{$theme-color}, #{$_color});
4124
+ }
4125
+ .\!k-text-#{$theme-color},
4126
+ .\!k-color-#{$theme-color} {
4127
+ color: var(--kendo-text-#{$theme-color}, #{$_color}) !important; // stylelint-disable-line declaration-no-important
4128
+ }
3445
4129
 
3446
- .k-bg-#{$theme-color} {
3447
- background-color: var( --kendo-bg-#{$theme-color}, #{$_color} );
3448
- }
3449
- .\!k-bg-#{$theme-color} {
3450
- background-color: var( --kendo-bg-#{$theme-color}, #{$_color} ) !important; // stylelint-disable-line declaration-no-important
4130
+ .k-bg-#{$theme-color} {
4131
+ background-color: var(--kendo-bg-#{$theme-color}, #{$_color});
4132
+ }
4133
+ .\!k-bg-#{$theme-color} {
4134
+ background-color: var(--kendo-bg-#{$theme-color}, #{$_color}) !important; // stylelint-disable-line declaration-no-important
4135
+ }
3451
4136
  }
3452
- };
4137
+ }
3453
4138
  }
3454
4139
 
3455
4140
  // #endregion
@@ -4852,9 +5537,17 @@ $_imported: () !default;
4852
5537
  }
4853
5538
  }
4854
5539
  // #endregion
5540
+ // #region @import "./_colors.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/styles/_colors.scss
5541
+ @mixin kendo-core--styles--colors() {
5542
+ @if ($kendo-enable-color-system) {
5543
+ @include color-system--styles();
5544
+ }
5545
+ }
4855
5546
 
5547
+ // #endregion
4856
5548
 
4857
5549
  @mixin kendo-core--styles() {
5550
+ @include kendo-core--styles--colors();
4858
5551
  @include kendo-core--styles--accessibility();
4859
5552
  @include kendo-core--styles--asp-fallback();
4860
5553
  @include kendo-core--styles--layout();
@@ -5024,6 +5717,73 @@ $kendo-zindex-loading: 100 !default;
5024
5717
 
5025
5718
  // #endregion
5026
5719
 
5720
+ // Backward compatibility
5721
+ // #region @import "./color-system/_swatch-legacy.scss"; -> scss/core/color-system/_swatch-legacy.scss
5722
+ @if ($kendo-enable-color-system) {
5723
+ $kendo-color-primary: k-color( primary );
5724
+ $kendo-color-primary-contrast: k-color( on-primary );
5725
+ $kendo-color-secondary: k-color( secondary );
5726
+ $kendo-color-tertiary: k-color( tertiary );
5727
+ $kendo-color-info: k-color( info );
5728
+ $kendo-color-success: k-color( success );
5729
+ $kendo-color-warning: k-color( warning );
5730
+ $kendo-color-error: k-color( error );
5731
+ $kendo-color-dark: k-color( dark );
5732
+ $kendo-color-light: k-color( light );
5733
+ $kendo-color-inverse: $kendo-color-dark;
5734
+ $kendo-body-bg: k-color( app-surface );
5735
+ $kendo-body-text: k-color( on-app-surface );
5736
+ $kendo-subtle-text: k-color( subtle );
5737
+ $kendo-app-bg: $kendo-body-bg;
5738
+ $kendo-app-text: $kendo-body-text;
5739
+ $kendo-app-border: k-color( border );
5740
+ $kendo-link-text: $kendo-color-primary;
5741
+ $kendo-link-hover-text: k-color( primary-hover );
5742
+ $kendo-component-bg: $kendo-body-bg;
5743
+ $kendo-component-text: $kendo-body-text;
5744
+ $kendo-component-border: $kendo-app-border;
5745
+ $kendo-base-bg: k-color( surface );
5746
+ $kendo-base-text: $kendo-body-text;
5747
+ $kendo-base-border: $kendo-app-border;
5748
+ $kendo-base-gradient: null;
5749
+ $kendo-hover-bg: k-color( base-hover );
5750
+ $kendo-hover-text: $kendo-base-text;
5751
+ $kendo-hover-border: $kendo-base-border;
5752
+ $kendo-hover-gradient: null;
5753
+ $kendo-selected-bg: $kendo-color-primary;
5754
+ $kendo-selected-text: $kendo-color-primary-contrast;
5755
+ $kendo-selected-border: k-color( primary );
5756
+ $kendo-selected-gradient: $kendo-base-gradient;
5757
+ $kendo-selected-hover-bg: k-color( primary-hover );
5758
+ $kendo-selected-hover-text: $kendo-selected-text;
5759
+ $kendo-selected-hover-border: k-color( primary-hover );
5760
+ $kendo-selected-hover-gradient: $kendo-base-gradient;
5761
+ $kendo-disabled-text: k-color( on-app-surface );
5762
+ $kendo-component-header-bg: $kendo-base-bg;
5763
+ $kendo-component-header-text: $kendo-base-text;
5764
+ $kendo-component-header-border: $kendo-base-border;
5765
+ $kendo-component-header-gradient: $kendo-base-gradient;
5766
+ $kendo-invalid-bg: null;
5767
+ $kendo-invalid-text: $kendo-color-error;
5768
+ $kendo-invalid-border: $kendo-color-error;
5769
+ $kendo-invalid-shadow: null;
5770
+
5771
+ $kendo-theme-colors: (
5772
+ "primary": $kendo-color-primary,
5773
+ "secondary": $kendo-color-secondary,
5774
+ "tertiary": $kendo-color-tertiary,
5775
+ "info": $kendo-color-info,
5776
+ "success": $kendo-color-success,
5777
+ "warning": $kendo-color-warning,
5778
+ "error": $kendo-color-error,
5779
+ "dark": $kendo-color-dark,
5780
+ "light": $kendo-color-light,
5781
+ "inverse": $kendo-color-inverse,
5782
+ );
5783
+ }
5784
+
5785
+ // #endregion
5786
+
5027
5787
  // Expose
5028
5788
  @include exports("kendo-core-styles") {
5029
5789
  @include kendo-core--styles();
@@ -14829,11 +15589,19 @@ $kendo-message-box-link-text-decoration: underline !default;
14829
15589
 
14830
15590
  @each $color-name, $color in $kendo-theme-colors {
14831
15591
  .k-messagebox-#{$color-name} {
14832
- @include fill(
14833
- k-color-level( $color, $kendo-message-box-text-level ),
14834
- k-color-level( $color, $kendo-message-box-bg-level ),
14835
- k-color-level( $color, $kendo-message-box-border-level )
14836
- );
15592
+ @if $color-name == "inverse" {
15593
+ @include fill(
15594
+ if($kendo-enable-color-system, k-color( dark-on-subtle ), k-color-level( $color, $kendo-message-box-text-level )),
15595
+ if($kendo-enable-color-system, k-color( dark-subtle ), k-color-level( $color, $kendo-message-box-bg-level )),
15596
+ if($kendo-enable-color-system, k-color( dark-hover ), k-color-level( $color, $kendo-message-box-border-level ))
15597
+ );
15598
+ } @else {
15599
+ @include fill(
15600
+ if($kendo-enable-color-system, k-color( #{$color-name}-on-subtle ), k-color-level( $color, $kendo-message-box-text-level )),
15601
+ if($kendo-enable-color-system, k-color( #{$color-name}-subtle ), k-color-level( $color, $kendo-message-box-bg-level )),
15602
+ if($kendo-enable-color-system, k-color( #{$color-name}-emphasis ), k-color-level( $color, $kendo-message-box-border-level ))
15603
+ );
15604
+ }
14837
15605
  }
14838
15606
  }
14839
15607
 
@@ -15498,7 +16266,7 @@ $kendo-checkbox-hover-border: null !default;
15498
16266
  $kendo-checkbox-checked-bg: $kendo-color-primary !default;
15499
16267
  /// The text color of the checked CheckBox.
15500
16268
  /// @group checkbox
15501
- $kendo-checkbox-checked-text: k-contrast-legacy( $kendo-checkbox-checked-bg ) !default;
16269
+ $kendo-checkbox-checked-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-checkbox-checked-bg )) !default;
15502
16270
  /// The border color of the checked CheckBox.
15503
16271
  /// @group checkbox
15504
16272
  $kendo-checkbox-checked-border: $kendo-checkbox-checked-bg !default;
@@ -15524,7 +16292,7 @@ $kendo-checkbox-focus-shadow: 0 0 0 2px rgba( black, .06 ) !default;
15524
16292
  $kendo-checkbox-focus-checked-border: null !default;
15525
16293
  /// The box shadow of the focused and checked CheckBox.
15526
16294
  /// @group checkbox
15527
- $kendo-checkbox-focus-checked-shadow: 0 0 0 2px rgba( $kendo-color-primary, .3 ) !default;
16295
+ $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;
15528
16296
 
15529
16297
  /// The background color of the disabled CheckBox.
15530
16298
  /// @group checkbox
@@ -16324,7 +17092,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
16324
17092
  &.k-selected:hover,
16325
17093
  &.k-selected.k-hover {
16326
17094
  color: $kendo-list-item-selected-text;
16327
- background-color: k-color-shade( $kendo-list-item-selected-bg );
17095
+ background-color: if($kendo-enable-color-system, k-color( primary-hover ), k-color-shade( $kendo-list-item-selected-bg ));
16328
17096
  }
16329
17097
  }
16330
17098
 
@@ -17275,7 +18043,7 @@ $kendo-table-group-row-border: $kendo-table-header-border !default;
17275
18043
 
17276
18044
  /// Background color of alternating rows in table.
17277
18045
  /// @group table
17278
- $kendo-table-alt-row-bg: k-try-shade( $kendo-table-bg, .5 ) !default;
18046
+ $kendo-table-alt-row-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .05 ), k-try-shade( $kendo-table-bg, .5 )) !default;
17279
18047
  /// Text color of alternating rows in table.
17280
18048
  /// @group table
17281
18049
  $kendo-table-alt-row-text: null !default;
@@ -17286,7 +18054,7 @@ $kendo-table-alt-row-border: null !default;
17286
18054
 
17287
18055
  /// Background color of hovered rows in table.
17288
18056
  /// @group table
17289
- $kendo-table-hover-bg: k-try-shade( $kendo-table-bg, 1 ) !default;
18057
+ $kendo-table-hover-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .11 ), k-try-shade( $kendo-table-bg, 1 )) !default;
17290
18058
  /// Text color of hovered rows in table.
17291
18059
  /// @group table
17292
18060
  $kendo-table-hover-text: null !default;
@@ -17311,7 +18079,7 @@ $kendo-table-focus-shadow: $kendo-list-item-focus-shadow !default;
17311
18079
 
17312
18080
  /// Background color of selected rows in table.
17313
18081
  /// @group table
17314
- $kendo-table-selected-bg: rgba( $kendo-selected-bg, .25 ) !default;
18082
+ $kendo-table-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
17315
18083
  /// Text color of selected rows in table.
17316
18084
  /// @group table
17317
18085
  $kendo-table-selected-text: null !default;
@@ -18015,7 +18783,7 @@ $kendo-avatar-theme-colors: $kendo-theme-colors !default;
18015
18783
  @each $name, $color in $kendo-avatar-theme-colors {
18016
18784
  .k-avatar-solid-#{$name} {
18017
18785
  border-color: $color;
18018
- color: k-contrast-legacy( $color );
18786
+ color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
18019
18787
  background-color: $color;
18020
18788
  }
18021
18789
  }
@@ -18368,7 +19136,7 @@ $kendo-badge-sizes: (
18368
19136
  @each $name, $color in $kendo-theme-colors {
18369
19137
  .k-badge-solid-#{$name} {
18370
19138
  border-color: $color;
18371
- color: k-contrast-legacy( $color );
19139
+ color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
18372
19140
  background-color: $color;
18373
19141
  }
18374
19142
  }
@@ -18568,7 +19336,7 @@ $kendo-button-bg: $kendo-base-bg !default;
18568
19336
  $kendo-button-text: $kendo-base-text !default;
18569
19337
  /// The base border color of the Button.
18570
19338
  /// @group button
18571
- $kendo-button-border: k-try-shade( $kendo-button-bg, 2 ) !default;
19339
+ $kendo-button-border: if($kendo-enable-color-system, k-color( border ), k-try-shade( $kendo-button-bg, 2 )) !default;
18572
19340
  /// The base background gradient of the Button.
18573
19341
  /// @group button
18574
19342
  $kendo-button-gradient: $kendo-base-gradient !default;
@@ -18578,13 +19346,13 @@ $kendo-button-shadow: null !default;
18578
19346
 
18579
19347
  /// The base background of the hovered Button.
18580
19348
  /// @group button
18581
- $kendo-button-hover-bg: k-try-shade( $kendo-button-bg, 1 ) !default;
19349
+ $kendo-button-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-button-bg, 1 )) !default;
18582
19350
  /// The base text color of the hovered Button.
18583
19351
  /// @group button
18584
19352
  $kendo-button-hover-text: null !default;
18585
19353
  /// The base border color of the hovered Button.
18586
19354
  /// @group button
18587
- $kendo-button-hover-border: k-try-shade( $kendo-button-bg, 3 ) !default;
19355
+ $kendo-button-hover-border: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-button-bg, 3 )) !default;
18588
19356
  /// The base background gradient of the hovered Button.
18589
19357
  /// @group button
18590
19358
  $kendo-button-hover-gradient: null !default;
@@ -18594,13 +19362,13 @@ $kendo-button-hover-shadow: null !default;
18594
19362
 
18595
19363
  /// The base background color of the active Button.
18596
19364
  /// @group button
18597
- $kendo-button-active-bg: k-try-shade( $kendo-button-bg, 2 ) !default;
19365
+ $kendo-button-active-bg: if($kendo-enable-color-system, k-color( base-active ), k-try-shade( $kendo-button-bg, 2 )) !default;
18598
19366
  /// The base text color of the active Button.
18599
19367
  /// @group button
18600
19368
  $kendo-button-active-text: null !default;
18601
19369
  /// The base border color of the active Button.
18602
19370
  /// @group button
18603
- $kendo-button-active-border: k-try-shade( $kendo-button-bg, 4 ) !default;
19371
+ $kendo-button-active-border: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-button-bg, 4 )) !default;
18604
19372
  /// The base background gradient of the active Button.
18605
19373
  /// @group button
18606
19374
  $kendo-button-active-gradient: null !default;
@@ -18613,7 +19381,7 @@ $kendo-button-active-shadow: null !default;
18613
19381
  $kendo-button-selected-bg: $kendo-color-primary !default;
18614
19382
  /// The text color of the selected Button.
18615
19383
  /// @group button
18616
- $kendo-button-selected-text: k-contrast-legacy( $kendo-button-selected-bg ) !default;
19384
+ $kendo-button-selected-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-button-selected-bg )) !default;
18617
19385
  /// The border color of the selected Button.
18618
19386
  /// @group button
18619
19387
  $kendo-button-selected-border: $kendo-button-selected-bg !default;
@@ -18638,7 +19406,7 @@ $kendo-button-focus-border: null !default;
18638
19406
  $kendo-button-focus-gradient: null !default;
18639
19407
  /// The base shadow of the focused Button.
18640
19408
  /// @group button
18641
- $kendo-button-focus-shadow: 0 0 4px 0 rgba( $kendo-button-border, .75 ) !default;
19409
+ $kendo-button-focus-shadow: 0 0 4px 0 if($kendo-enable-color-system, rgba( k-color( border, true ), .75), rgba( $kendo-button-border, .75 )) !default;
18642
19410
 
18643
19411
  /// The base background of the disabled Button.
18644
19412
  /// @group button
@@ -18825,7 +19593,7 @@ $kendo-chip-solid-text: $kendo-button-text !default;
18825
19593
  $kendo-chip-solid-border: $kendo-button-border !default;
18826
19594
  /// The base shadow of the solid Chip.
18827
19595
  /// @group chip
18828
- $kendo-chip-solid-shadow: 0 0 0 2px if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) ) !default;
19596
+ $kendo-chip-solid-shadow: 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .16 ), if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) )) !default;
18829
19597
  /// The base gradient of the solid Chip.
18830
19598
  /// @group chip
18831
19599
  $kendo-chip-solid-gradient: $kendo-button-gradient !default;
@@ -18862,14 +19630,14 @@ $kendo-chip-outline-text: $kendo-chip-solid-text !default;
18862
19630
  $kendo-chip-outline-border: $kendo-chip-outline-text !default;
18863
19631
  /// The base shadow of the outline Chip.
18864
19632
  /// @group chip
18865
- $kendo-chip-outline-shadow: 0 0 0 2px if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) ) !default;
19633
+ $kendo-chip-outline-shadow: 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .16 ), if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) )) !default;
18866
19634
 
18867
19635
  /// The base background color of the hovered outline Chip.
18868
19636
  /// @group chip
18869
19637
  $kendo-chip-outline-hover-bg: $kendo-chip-outline-text !default;
18870
19638
  /// The base text color of the hovered outline Chip.
18871
19639
  /// @group chip
18872
- $kendo-chip-outline-hover-text: k-contrast-legacy( $kendo-chip-outline-hover-bg ) !default;
19640
+ $kendo-chip-outline-hover-text: if($kendo-enable-color-system, k-color( base-subtle ), k-contrast-legacy( $kendo-chip-outline-hover-bg )) !default;
18873
19641
 
18874
19642
  /// The base background color of the selected outline Chip.
18875
19643
  /// @group chip
@@ -19098,24 +19866,24 @@ $kendo-chip-list-sizes: (
19098
19866
  }
19099
19867
  } @else {
19100
19868
  @include fill(
19101
- k-try-shade( $color, 65% ),
19102
- k-try-tint( $color, 80% ),
19103
- k-try-tint( $color, 25% ),
19869
+ if($kendo-enable-color-system, k-color( #{$name}-on-subtle ), k-try-shade( $color, 65% )),
19870
+ if($kendo-enable-color-system, k-color( #{$name}-subtle ), k-try-tint( $color, 80% )),
19871
+ if($kendo-enable-color-system, k-color( #{$name}-emphasis ), k-try-tint( $color, 25% )),
19104
19872
  $kendo-chip-solid-gradient
19105
19873
  );
19106
19874
 
19107
19875
  &:focus,
19108
19876
  &.k-focus {
19109
- @include focus-indicator( 0 0 0 2px rgba( $color, .16 ) );
19877
+ @include focus-indicator( 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( $name, true ), .16 ), rgba( $color, .16 )) );
19110
19878
  }
19111
19879
 
19112
19880
  &:hover,
19113
19881
  &.k-hover {
19114
- @include fill( $bg: k-try-tint($color, 65% ) );
19882
+ @include fill( $bg: if($kendo-enable-color-system, k-color( #{$name}-subtle-hover ), k-try-tint($color, 65% )) );
19115
19883
  }
19116
19884
 
19117
19885
  &.k-selected {
19118
- @include fill( $bg: k-try-tint( $color, 50% ) );
19886
+ @include fill( $bg: if($kendo-enable-color-system, k-color( #{$name}-subtle-active ), k-try-tint( $color, 50% )) );
19119
19887
  }
19120
19888
  }
19121
19889
  }
@@ -19153,54 +19921,56 @@ $kendo-chip-list-sizes: (
19153
19921
  }
19154
19922
  } @else if ($name == "warning") {
19155
19923
  @include fill(
19156
- if( $kendo-is-dark-theme, k-color-tint($color, 25%), $kendo-chip-outline-text),
19157
- if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white ),
19158
- if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color)
19924
+ if($kendo-enable-color-system, $kendo-chip-outline-text, if( $kendo-is-dark-theme, k-color-tint($color, 25%), $kendo-chip-outline-text)),
19925
+ if($kendo-enable-color-system, k-color( app-surface ), if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
19926
+ if($kendo-enable-color-system, $color, if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color))
19159
19927
  );
19160
19928
 
19161
19929
  &:focus,
19162
19930
  &.k-focus {
19163
- @include focus-indicator( 0 0 0 2px if( $kendo-is-dark-theme, rgba( k-color-tint( $color, 50% ), .32 ), rgba( $color, .16 )) );
19931
+ @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 ))) );
19164
19932
  }
19165
19933
 
19166
19934
  &:hover,
19167
19935
  &.k-hover {
19168
19936
  @include fill(
19169
- $color: if( $kendo-is-dark-theme, k-contrast-legacy( $color ), k-try-shade( $color, 80% ) ) ,
19170
- $bg: if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color)
19937
+ $color: if($kendo-enable-color-system, k-color( on-#{$name} ), if( $kendo-is-dark-theme, k-contrast-legacy( $color ), k-try-shade( $color, 80% ) )),
19938
+ $bg: if($kendo-enable-color-system, $color, if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color))
19171
19939
  );
19172
19940
  }
19173
19941
 
19174
19942
  &.k-selected {
19175
19943
  @include fill(
19176
- $color: if( $kendo-is-dark-theme, k-contrast-legacy( $color ), k-try-shade( $color, 80% ) ) ,
19177
- $bg: if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color)
19944
+ $color: if($kendo-enable-color-system, k-color( on-#{$name} ), if( $kendo-is-dark-theme, k-contrast-legacy( $color ), k-try-shade( $color, 80% ) )),
19945
+ $bg: if($kendo-enable-color-system, $color, if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color))
19178
19946
  );
19179
19947
  }
19180
19948
  } @else {
19181
19949
  @include fill(
19182
- k-try-shade( $color, 25% ),
19183
- if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white ),
19184
- k-try-shade( $color, 25% )
19950
+ if($kendo-enable-color-system, k-color( #{$name}-on-surface ), k-try-shade( $color, 25% )),
19951
+ if($kendo-enable-color-system, k-color( app-surface ), if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
19952
+ if($kendo-enable-color-system, k-color( #{$name}-on-surface ), k-try-shade( $color, 25% ))
19185
19953
  );
19186
19954
 
19187
19955
  &:focus,
19188
19956
  &.k-focus {
19189
- @include focus-indicator( 0 0 0 2px if( $kendo-is-dark-theme, rgba( k-color-tint( $color, 50% ), .32 ), rgba( $color, .16 )) );
19957
+ @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 ))) );
19190
19958
  }
19191
19959
 
19192
19960
  &:hover,
19193
19961
  &.k-hover {
19194
19962
  @include fill(
19195
- $color: k-contrast-legacy( k-try-shade( $color, 25% ) ),
19196
- $bg: k-try-shade( $color, 25% )
19963
+ if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( k-try-shade( $color, 25% ) )),
19964
+ if($kendo-enable-color-system, k-color( #{$name}-hover ), k-try-shade( $color, 25% )),
19965
+ if($kendo-enable-color-system, k-color( #{$name}-hover ), k-try-shade( $color, 25% ))
19197
19966
  );
19198
19967
  }
19199
19968
 
19200
19969
  &.k-selected {
19201
19970
  @include fill(
19202
- $color: k-contrast-legacy( k-try-shade( $color, 25% ) ),
19203
- $bg: k-try-shade( $color, 25% )
19971
+ if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( k-try-shade( $color, 25% ) )),
19972
+ if($kendo-enable-color-system, k-color( #{$name}-active ), k-try-shade( $color, 25% )),
19973
+ if($kendo-enable-color-system, k-color( #{$name}-active ), k-try-shade( $color, 25% ))
19204
19974
  );
19205
19975
  }
19206
19976
  }
@@ -20205,7 +20975,7 @@ $kendo-skeleton-circle-border-radius: 9999px !default;
20205
20975
 
20206
20976
  /// The background color of the Skeleton item.
20207
20977
  /// @group skeleton
20208
- $kendo-skeleton-item-bg: rgba( $kendo-color-inverse, .2 ) !default;
20978
+ $kendo-skeleton-item-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .2 ), rgba( $kendo-color-inverse, .2 )) !default;
20209
20979
  /// The background color of the Skeleton wave animation.
20210
20980
  /// @group skeleton
20211
20981
  $kendo-skeleton-wave-bg: rgba( black, .04 ) !default;
@@ -20896,17 +21666,17 @@ $_kendo-module-meta: (
20896
21666
 
20897
21667
  @each $name, $color in $kendo-button-theme-colors {
20898
21668
  @if ($name != "base") {
20899
- $_button-text: k-contrast-legacy( $color );
20900
- $_button-bg: if( $kendo-solid-button-shade-bg-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-shade-bg-amount ), null );
20901
- $_button-border: if( $kendo-solid-button-shade-border-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-shade-border-amount ), null );
21669
+ $_button-text: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
21670
+ $_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 ));
21671
+ $_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 ));
20902
21672
 
20903
21673
  $_button-hover-text: null;
20904
- $_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 );
20905
- $_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 );
21674
+ $_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 ));
21675
+ $_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 ));
20906
21676
 
20907
21677
  $_button-active-text: null;
20908
- $_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 );
20909
- $_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 );
21678
+ $_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 ));
21679
+ $_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 ));
20910
21680
 
20911
21681
  .k-button-solid-#{$name} {
20912
21682
  @include fill(
@@ -20930,7 +21700,7 @@ $_kendo-module-meta: (
20930
21700
  &:focus,
20931
21701
  &.k-focus {
20932
21702
  @if ( $kendo-solid-button-shadow ) {
20933
- @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 );
21703
+ @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 );
20934
21704
  }
20935
21705
  }
20936
21706
 
@@ -20974,44 +21744,72 @@ $_kendo-module-meta: (
20974
21744
  .k-button-outline-#{$name} {
20975
21745
  @include box-shadow( none );
20976
21746
  border-color: currentColor;
20977
- color: $color;
21747
+ color: if($kendo-enable-color-system, k-color( #{$name}-on-surface ), $color);
20978
21748
  background-color: transparent;
20979
21749
 
20980
21750
  // Hover state
20981
21751
  &:hover,
20982
21752
  &.k-hover {
20983
- @include fill(
20984
- k-contrast-legacy( $color ),
20985
- $color,
20986
- $color
20987
- );
21753
+ @if $name == "base" {
21754
+ @include fill(
21755
+ if($kendo-enable-color-system, $kendo-base-bg, k-contrast-legacy( $color )),
21756
+ $color,
21757
+ $color
21758
+ );
21759
+ } @else {
21760
+ @include fill(
21761
+ if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color )),
21762
+ $color,
21763
+ $color
21764
+ );
21765
+ }
20988
21766
  }
20989
21767
 
20990
21768
  // Focus state
20991
21769
  &:focus,
20992
21770
  &.k-focus {
20993
21771
  @if $kendo-outline-button-shadow {
20994
- @include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread rgba( $color, $kendo-outline-button-shadow-opacity ), true, true );
21772
+ @if $name == "base" {
21773
+ @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 );
21774
+ } @else {
21775
+ @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 );
21776
+ }
20995
21777
  }
20996
21778
  }
20997
21779
 
20998
21780
  // Active state
20999
21781
  &:active,
21000
21782
  &.k-active {
21001
- @include fill(
21002
- k-contrast-legacy( $color ),
21003
- $color,
21004
- $color
21005
- );
21783
+ @if $name == "base" {
21784
+ @include fill(
21785
+ if($kendo-enable-color-system, $kendo-base-bg, k-contrast-legacy( $color )),
21786
+ $color,
21787
+ $color
21788
+ );
21789
+ } @else {
21790
+ @include fill(
21791
+ if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color )),
21792
+ $color,
21793
+ $color
21794
+ );
21795
+ }
21006
21796
  }
21007
21797
 
21008
21798
  // Selected
21009
21799
  &.k-selected {
21010
- @include fill(
21011
- k-contrast-legacy( $color ),
21012
- $color,
21013
- $color
21014
- );
21800
+ @if $name == "base" {
21801
+ @include fill(
21802
+ if($kendo-enable-color-system, $kendo-base-bg, k-contrast-legacy( $color )),
21803
+ $color,
21804
+ $color
21805
+ );
21806
+ } @else {
21807
+ @include fill(
21808
+ if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color )),
21809
+ $color,
21810
+ $color
21811
+ );
21812
+ }
21015
21813
  }
21016
21814
 
21017
21815
  // Disabled state
@@ -21045,26 +21843,42 @@ $_kendo-module-meta: (
21045
21843
  // Hover
21046
21844
  &:hover,
21047
21845
  &.k-hover {
21048
- color: k-try-shade( $color, 2 );
21846
+ @if $name == "base" {
21847
+ color: if($kendo-enable-color-system, $kendo-base-text, k-try-shade( $color, 2 ));
21848
+ } @else {
21849
+ color: if($kendo-enable-color-system, k-color( #{$name}-hover ), k-try-shade( $color, 2 ));
21850
+ }
21049
21851
  }
21050
21852
 
21051
21853
  // Focus
21052
21854
  &:focus,
21053
21855
  &.k-focus {
21054
21856
  @if ( $kendo-link-button-shadow ) {
21055
- @include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread rgba( $color, $kendo-link-button-shadow-opacity ), true, true );
21857
+ @if $name == "base" {
21858
+ @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 );
21859
+ } @else {
21860
+ @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 );
21861
+ }
21056
21862
  }
21057
21863
  }
21058
21864
 
21059
21865
  // Active
21060
21866
  &:active,
21061
21867
  &.k-active {
21062
- color: k-try-shade( $color, 2 );
21868
+ @if $name == "base" {
21869
+ color: if($kendo-enable-color-system, $kendo-base-text, k-try-shade( $color, 2 ));
21870
+ } @else {
21871
+ color: if($kendo-enable-color-system, k-color( #{$name}-active ), k-try-shade( $color, 2 ));
21872
+ }
21063
21873
  }
21064
21874
 
21065
21875
  // Selected
21066
21876
  &.k-selected {
21067
- color: k-try-shade( $color, 2 );
21877
+ @if $name == "base" {
21878
+ color: if($kendo-enable-color-system, $kendo-base-text, k-try-shade( $color, 2 ));
21879
+ } @else {
21880
+ color: if($kendo-enable-color-system, k-color( #{$name}-active ), k-try-shade( $color, 2 ));
21881
+ }
21068
21882
  }
21069
21883
 
21070
21884
  // Disabled state
@@ -21110,7 +21924,6 @@ $_kendo-module-meta: (
21110
21924
  @mixin kendo-button--theme() {
21111
21925
  @include kendo-button--theme-base();
21112
21926
  }
21113
-
21114
21927
  // #endregion
21115
21928
 
21116
21929
 
@@ -21219,7 +22032,7 @@ $kendo-menu-item-expanded-text: $kendo-component-text !default;
21219
22032
  $kendo-menu-item-expanded-border: null !default;
21220
22033
  $kendo-menu-item-expanded-gradient: null !default;
21221
22034
 
21222
- $kendo-menu-item-focus-shadow: inset 0 0 3px 1px rgba( $kendo-menu-text, .25 ) !default;
22035
+ $kendo-menu-item-focus-shadow: inset 0 0 3px 1px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .25 ), rgba( $kendo-menu-text, .25 )) !default;
21223
22036
 
21224
22037
  $kendo-menu-separator-spacing: k-map-get( $kendo-spacing, 1 ) !default;
21225
22038
 
@@ -22731,7 +23544,7 @@ $kendo-input-outline-bg: null !default;
22731
23544
  $kendo-input-outline-text: null !default;
22732
23545
  /// The border color of the outline Input components.
22733
23546
  /// @group input
22734
- $kendo-input-outline-border: rgba( $kendo-button-text, .5) !default;
23547
+ $kendo-input-outline-border: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-button-text, .5)) !default;
22735
23548
 
22736
23549
  /// The background color of the outline hovered Input components.
22737
23550
  /// @group input
@@ -22741,7 +23554,7 @@ $kendo-input-outline-hover-bg: null !default;
22741
23554
  $kendo-input-outline-hover-text: null !default;
22742
23555
  /// The border color of the outline hovered Input components.
22743
23556
  /// @group input
22744
- $kendo-input-outline-hover-border: rgba( $kendo-button-text, .8) !default;
23557
+ $kendo-input-outline-hover-border: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .8 ), rgba( $kendo-button-text, .8)) !default;
22745
23558
 
22746
23559
  /// The background color of the outline focused Input components.
22747
23560
  /// @group input
@@ -22932,14 +23745,14 @@ $kendo-picker-outline-bg: null !default;
22932
23745
  $kendo-picker-outline-text: $kendo-button-text !default;
22933
23746
  /// The border color of the outline Picker components.
22934
23747
  /// @group picker
22935
- $kendo-picker-outline-border: rgba( $kendo-picker-outline-text, .5) !default;
23748
+ $kendo-picker-outline-border: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-picker-outline-text, .5)) !default;
22936
23749
 
22937
23750
  /// The background color of the outline hovered Picker components.
22938
23751
  /// @group picker
22939
23752
  $kendo-picker-outline-hover-bg: $kendo-picker-outline-text !default;
22940
23753
  /// The text color of the outline hovered Picker components.
22941
23754
  /// @group picker
22942
- $kendo-picker-outline-hover-text: k-contrast-color( $kendo-picker-outline-hover-bg ) !default;
23755
+ $kendo-picker-outline-hover-text: if($kendo-enable-color-system, k-color( base-subtle ), k-contrast-color( $kendo-picker-outline-hover-bg )) !default;
22943
23756
  /// The border color of the outline hovered Picker components.
22944
23757
  /// @group picker
22945
23758
  $kendo-picker-outline-hover-border: $kendo-picker-outline-hover-bg !default;
@@ -22979,13 +23792,13 @@ $kendo-picker-flat-border: $kendo-button-border !default;
22979
23792
 
22980
23793
  /// The background color of the flat hovered Picker components.
22981
23794
  /// @group picker
22982
- $kendo-picker-flat-hover-bg: rgba( $kendo-button-text, .04 ) !default;
23795
+ $kendo-picker-flat-hover-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .04 ), rgba( $kendo-button-text, .04 )) !default;
22983
23796
  /// The text color of the flat hovered Picker components.
22984
23797
  /// @group picker
22985
23798
  $kendo-picker-flat-hover-text: null !default;
22986
23799
  /// The border color of the flat hovered Picker components.
22987
23800
  /// @group picker
22988
- $kendo-picker-flat-hover-border: rgba( $kendo-button-border, .16 ) !default;
23801
+ $kendo-picker-flat-hover-border: if($kendo-enable-color-system, rgba( k-color( border, true ), .16 ), rgba( $kendo-button-border, .16 )) !default;
22989
23802
 
22990
23803
  /// The background color of the flat focused Picker components.
22991
23804
  /// @group picker
@@ -23052,10 +23865,10 @@ $kendo-tooltip-callout-size: 6px !default;
23052
23865
 
23053
23866
  /// The default background of the Tooltip.
23054
23867
  /// @group tooltip
23055
- $kendo-tooltip-bg: rgba( k-contrast-color( $kendo-body-bg ), .75 ) !default;
23868
+ $kendo-tooltip-bg: if($kendo-enable-color-system, k-color( on-app-surface ), rgba( k-contrast-color( $kendo-body-bg ), .75 )) !default;
23056
23869
  /// The default text color of the Tooltip.
23057
23870
  /// @group tooltip
23058
- $kendo-tooltip-text: k-contrast-color( $kendo-tooltip-bg ) !default;
23871
+ $kendo-tooltip-text: if($kendo-enable-color-system, k-color( app-surface ), k-contrast-color( $kendo-tooltip-bg )) !default;
23059
23872
  /// The default border color of the Tooltip.
23060
23873
  /// @group tooltip
23061
23874
  $kendo-tooltip-border: $kendo-tooltip-bg !default;
@@ -23069,7 +23882,7 @@ $kendo-tooltip-shadow: k-elevation(2) !default;
23069
23882
 
23070
23883
  @each $name, $color in $colors {
23071
23884
  $_theme: k-map-merge(( $name: (
23072
- color: k-contrast-legacy( $color ),
23885
+ color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color )),
23073
23886
  background-color: $color,
23074
23887
  border: $color,
23075
23888
  )), $_theme );
@@ -23084,6 +23897,7 @@ $kendo-tooltip-theme-colors: $kendo-theme-colors !default;
23084
23897
  /// The generated theme colors map for the Tooltip.
23085
23898
  /// @group tooltip
23086
23899
  $kendo-tooltip-theme: tooltip-theme( $kendo-tooltip-theme-colors ) !default;
23900
+
23087
23901
  // #endregion
23088
23902
  // #region @import "../typography/_variables.scss"; -> scss/typography/_variables.scss
23089
23903
  // File already imported_once. Skipping output.
@@ -23353,7 +24167,7 @@ $kendo-fieldset-border: null !default;
23353
24167
  $kendo-fieldset-legend-bg: null !default;
23354
24168
  /// The text color of the Form legend.
23355
24169
  /// @group form
23356
- $kendo-fieldset-legend-text: k-try-shade( $kendo-body-text, 2 ) !default;
24170
+ $kendo-fieldset-legend-text: if($kendo-enable-color-system, k-color( on-app-surface ), k-try-shade( $kendo-body-text, 2 )) !default;
23357
24171
  /// The border color of the Form legend.
23358
24172
  /// @group form
23359
24173
  $kendo-fieldset-legend-border: null !default;
@@ -24474,16 +25288,21 @@ $_kendo-module-meta: (
24474
25288
  margin: 0;
24475
25289
  border-style: solid;
24476
25290
  border-color: inherit;
24477
- height: auto;
24478
- align-self: stretch;
25291
+ border-width: 0 0 0 1px;
25292
+ height: $kendo-icon-size;
25293
+ align-self: center;
24479
25294
 
24480
25295
  &-horizontal {
25296
+ height: auto;
24481
25297
  margin-inline: $kendo-input-md-padding-y;
25298
+ align-self: stretch;
24482
25299
  border-width: 1px 0 0;
24483
25300
  }
24484
25301
 
24485
25302
  &-vertical {
25303
+ height: auto;
24486
25304
  margin-block: $kendo-input-md-padding-y;
25305
+ align-self: stretch;
24487
25306
  border-width: 0 0 0 1px;
24488
25307
  }
24489
25308
  }
@@ -25530,8 +26349,8 @@ $kendo-floating-label-focus-text: null !default;
25530
26349
  white-space: nowrap;
25531
26350
  text-overflow: ellipsis;
25532
26351
  position: absolute;
25533
- top: $kendo-floating-label-offset-y;
25534
- left: $kendo-floating-label-offset-x;
26352
+ top: var(--kendo-floating-label-offset-y, #{$kendo-floating-label-offset-y});
26353
+ left: var(--kendo-floating-label-offset-x, #{$kendo-floating-label-offset-x});
25535
26354
  overflow: hidden;
25536
26355
  cursor: text;
25537
26356
  transform-origin: left center;
@@ -25545,8 +26364,8 @@ $kendo-floating-label-focus-text: null !default;
25545
26364
 
25546
26365
  &.k-empty {
25547
26366
  > .k-label {
25548
- top: $kendo-floating-label-offset-y;
25549
- left: $kendo-floating-label-offset-x;
26367
+ top: var(--kendo-floating-label-offset-y, #{$kendo-floating-label-offset-y});
26368
+ left: var(--kendo-floating-label-offset-x, #{$kendo-floating-label-offset-x});
25550
26369
  transform: scale( $kendo-floating-label-scale );
25551
26370
  pointer-events: none;
25552
26371
  }
@@ -25554,13 +26373,13 @@ $kendo-floating-label-focus-text: null !default;
25554
26373
 
25555
26374
  > .k-label,
25556
26375
  &.k-focus > .k-label {
25557
- top: $kendo-floating-label-focus-offset-y;
25558
- left: $kendo-floating-label-focus-offset-x;
26376
+ top: var(--kendo-floating-label-focus-offset-y, #{$kendo-floating-label-focus-offset-y});
26377
+ left: var(--kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x});
25559
26378
  transform: scale( $kendo-floating-label-focus-scale );
25560
26379
  }
25561
26380
  &:focus-within > .k-label {
25562
- top: $kendo-floating-label-focus-offset-y;
25563
- left: $kendo-floating-label-focus-offset-x;
26381
+ top: var(--kendo-floating-label-focus-offset-y, #{$kendo-floating-label-focus-offset-y});
26382
+ left: var(--kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x});
25564
26383
  transform: scale( $kendo-floating-label-focus-scale );
25565
26384
  }
25566
26385
 
@@ -25580,18 +26399,18 @@ $kendo-floating-label-focus-text: null !default;
25580
26399
  &.k-empty {
25581
26400
  > .k-label {
25582
26401
  left: auto;
25583
- right: $kendo-floating-label-offset-x;
26402
+ right: var(--kendo-floating-label-offset-x, #{$kendo-floating-label-offset-x});
25584
26403
  }
25585
26404
  }
25586
26405
 
25587
26406
  > .k-label,
25588
26407
  &.k-focus > .k-label {
25589
26408
  left: auto;
25590
- right: $kendo-floating-label-focus-offset-x;
26409
+ right: var(--kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x});
25591
26410
  }
25592
26411
  &:focus-within > .k-label {
25593
26412
  left: auto;
25594
- right: $kendo-floating-label-focus-offset-x;
26413
+ right: var(--kendo-floating-label-focus-offset-x, #{$kendo-floating-label-focus-offset-x});
25595
26414
  }
25596
26415
  }
25597
26416
  }
@@ -26477,7 +27296,7 @@ $kendo-progressbar-line-height: 1 !default;
26477
27296
 
26478
27297
  /// The background color of the ProgressBar.
26479
27298
  /// @group progressbar
26480
- $kendo-progressbar-bg: k-try-shade( $kendo-component-bg, 1 ) !default;
27299
+ $kendo-progressbar-bg: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-component-bg, 1 )) !default;
26481
27300
  /// The text color of the ProgressBar.
26482
27301
  /// @group progressbar
26483
27302
  $kendo-progressbar-text: $kendo-component-text !default;
@@ -26493,10 +27312,10 @@ $kendo-progressbar-gradient: null !default;
26493
27312
  $kendo-progressbar-value-bg: $kendo-color-primary !default;
26494
27313
  /// The progress text color of the ProgressBar.
26495
27314
  /// @group progressbar
26496
- $kendo-progressbar-value-text: k-contrast-legacy( $kendo-progressbar-value-bg ) !default;
27315
+ $kendo-progressbar-value-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-progressbar-value-bg )) !default;
26497
27316
  /// The progress border color of the ProgressBar.
26498
27317
  /// @group progressbar
26499
- $kendo-progressbar-value-border: k-try-shade( $kendo-progressbar-value-bg ) !default;
27318
+ $kendo-progressbar-value-border: if($kendo-enable-color-system, k-color( primary-active ), k-try-shade( $kendo-progressbar-value-bg )) !default;
26500
27319
  /// The progress background gradient of the ProgressBar.
26501
27320
  /// @group progressbar
26502
27321
  $kendo-progressbar-value-gradient: null !default;
@@ -26817,7 +27636,7 @@ $kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
26817
27636
 
26818
27637
  .k-progressbar-indeterminate {
26819
27638
  @include fill( $kendo-progressbar-indeterminate-text, $kendo-progressbar-indeterminate-bg, $kendo-progressbar-indeterminate-border );
26820
- @include striped-gradient( k-color-shade($kendo-progressbar-indeterminate-bg) );
27639
+ @include striped-gradient( if($kendo-enable-color-system, rgba( k-color( base-emphasis, true ), .55 ), k-color-shade($kendo-progressbar-indeterminate-bg)) );
26821
27640
  background-size: $kendo-progressbar-height $kendo-progressbar-height;
26822
27641
  animation: kendo-progressbar-indeterminate-animation $kendo-progressbar-animation-timing;
26823
27642
  }
@@ -27509,28 +28328,28 @@ $kendo-slider-draghandle-active-scale: 1 !default;
27509
28328
  $kendo-slider-draghandle-active-size: null !default;
27510
28329
 
27511
28330
  $kendo-slider-draghandle-bg: $kendo-color-primary !default;
27512
- $kendo-slider-draghandle-text: k-contrast-legacy( $kendo-color-primary ) !default;
27513
- $kendo-slider-draghandle-border: k-try-shade( $kendo-color-primary, 2 ) !default;
28331
+ $kendo-slider-draghandle-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-color-primary )) !default;
28332
+ $kendo-slider-draghandle-border: if($kendo-enable-color-system, k-color( primary ), k-try-shade( $kendo-color-primary, 2 )) !default;
27514
28333
  $kendo-slider-draghandle-gradient: null !default;
27515
28334
 
27516
- $kendo-slider-draghandle-hover-bg: k-try-shade( $kendo-color-primary, 1 ) !default;
28335
+ $kendo-slider-draghandle-hover-bg: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-color-primary, 1 )) !default;
27517
28336
  $kendo-slider-draghandle-hover-text: null !default;
27518
- $kendo-slider-draghandle-hover-border: k-try-shade( $kendo-slider-draghandle-hover-bg, 2 ) !default;
28337
+ $kendo-slider-draghandle-hover-border: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-slider-draghandle-hover-bg, 2 )) !default;
27519
28338
  $kendo-slider-draghandle-hover-gradient: null !default;
27520
28339
 
27521
- $kendo-slider-draghandle-pressed-bg: k-try-shade( $kendo-color-primary, 2 ) !default;
28340
+ $kendo-slider-draghandle-pressed-bg: if($kendo-enable-color-system, k-color( primary-active ), k-try-shade( $kendo-color-primary, 2 )) !default;
27522
28341
  $kendo-slider-draghandle-pressed-text: null !default;
27523
- $kendo-slider-draghandle-pressed-border: k-try-shade( $kendo-slider-draghandle-pressed-bg, 2 ) !default;
28342
+ $kendo-slider-draghandle-pressed-border: if($kendo-enable-color-system, k-color( primary-active ), k-try-shade( $kendo-slider-draghandle-pressed-bg, 2 )) !default;
27524
28343
  $kendo-slider-draghandle-pressed-gradient: null !default;
27525
28344
 
27526
- $kendo-slider-draghandle-focus-shadow: 0 0 4px 0 rgba( $kendo-slider-draghandle-border, .75 ) !default;
28345
+ $kendo-slider-draghandle-focus-shadow: 0 0 4px 0 if($kendo-enable-color-system, rgba( k-color( primary, true ), .75 ), rgba( $kendo-slider-draghandle-border, .75 )) !default;
27527
28346
 
27528
28347
  $kendo-slider-transition-speed: .3s !default;
27529
28348
  $kendo-slider-transition-function: ease-out !default;
27530
28349
  $kendo-slider-draghandle-transition-speed: .4s !default;
27531
28350
  $kendo-slider-draghandle-transition-function: cubic-bezier(.25, .8, .25, 1) !default;
27532
28351
 
27533
- $kendo-slider-track-bg: k-try-shade( $kendo-component-bg, 1 ) !default;
28352
+ $kendo-slider-track-bg: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-component-bg, 1 )) !default;
27534
28353
  $kendo-slider-selection-bg: $kendo-color-primary !default;
27535
28354
  $kendo-slider-disabled-opacity: null !default;
27536
28355
 
@@ -28938,7 +29757,7 @@ $kendo-calendar-sizes: (
28938
29757
  .k-calendar { // stylelint-disable-line
28939
29758
 
28940
29759
  $kendo-calendar-range-gap: 1px !default;
28941
- $kendo-calendar-range-bg: rgba( $kendo-calendar-cell-selected-bg, .25 );
29760
+ $kendo-calendar-range-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-calendar-cell-selected-bg, .25 ));
28942
29761
  $kendo-calendar-range-split-size: 5px !default;
28943
29762
 
28944
29763
  .k-range-start,
@@ -33595,7 +34414,7 @@ $kendo-switch-off-track-focus-border: null !default;
33595
34414
  $kendo-switch-off-track-focus-gradient: null !default;
33596
34415
  /// The ring around the track when the focused Switch is not checked.
33597
34416
  /// @group switch
33598
- $kendo-switch-off-track-focus-ring: 0 0 3px 1px rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .25 ) !default;
34417
+ $kendo-switch-off-track-focus-ring: 0 0 3px 1px rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .25 ) !default;
33599
34418
 
33600
34419
  /// The background of the track when the disabled Switch is not checked.
33601
34420
  /// @group switch
@@ -33612,7 +34431,7 @@ $kendo-switch-off-track-disabled-gradient: null !default;
33612
34431
 
33613
34432
  /// The background of the thumb when the Switch is not checked.
33614
34433
  /// @group switch
33615
- $kendo-switch-off-thumb-bg: k-try-shade( $kendo-switch-off-track-bg ) !default;
34434
+ $kendo-switch-off-thumb-bg: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-switch-off-track-bg )) !default;
33616
34435
  /// The text color of the thumb when the Switch is not checked.
33617
34436
  /// @group switch
33618
34437
  $kendo-switch-off-thumb-text: null !default;
@@ -33625,7 +34444,7 @@ $kendo-switch-off-thumb-gradient: $kendo-base-gradient !default;
33625
34444
 
33626
34445
  /// The background of the thumb when the hovered Switch is not checked.
33627
34446
  /// @group switch
33628
- $kendo-switch-off-thumb-hover-bg: k-try-shade( $kendo-switch-off-thumb-bg ) !default;
34447
+ $kendo-switch-off-thumb-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-switch-off-thumb-bg )) !default;
33629
34448
  /// The text color of the thumb when the hovered Switch is not checked.
33630
34449
  /// @group switch
33631
34450
  $kendo-switch-off-thumb-hover-text: null !default;
@@ -33677,7 +34496,7 @@ $kendo-switch-on-track-focus-border: null !default;
33677
34496
  $kendo-switch-on-track-focus-gradient: null !default;
33678
34497
  /// The ring around the track wen the focused Switch is checked.
33679
34498
  /// @group switch
33680
- $kendo-switch-on-track-focus-ring: 0 0 3px 1px rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .25 ) !default;
34499
+ $kendo-switch-on-track-focus-ring: 0 0 3px 1px rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .25 ) !default;
33681
34500
 
33682
34501
  /// The background of the track when the disabled Switch is checked.
33683
34502
  /// @group switch
@@ -33700,20 +34519,20 @@ $kendo-switch-on-thumb-bg: $kendo-color-primary !default;
33700
34519
  $kendo-switch-on-thumb-text: null !default;
33701
34520
  /// The border color of the thumb when the Switch is checked.
33702
34521
  /// @group switch
33703
- $kendo-switch-on-thumb-border: k-try-shade( $kendo-switch-on-thumb-bg ) !default;
34522
+ $kendo-switch-on-thumb-border: if($kendo-enable-color-system, k-color( primary ), k-try-shade( $kendo-switch-on-thumb-bg )) !default;
33704
34523
  /// The background gradient of the thumb when the Switch is checked.
33705
34524
  /// @group switch
33706
34525
  $kendo-switch-on-thumb-gradient: $kendo-base-gradient !default;
33707
34526
 
33708
34527
  /// The background of the thumb when the hovered Switch is checked.
33709
34528
  /// @group switch
33710
- $kendo-switch-on-thumb-hover-bg: k-try-shade( $kendo-switch-on-thumb-bg ) !default;
34529
+ $kendo-switch-on-thumb-hover-bg: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-switch-on-thumb-bg )) !default;
33711
34530
  /// The text color of the thumb when the hovered Switch is checked.
33712
34531
  /// @group switch
33713
34532
  $kendo-switch-on-thumb-hover-text: null !default;
33714
34533
  /// The border color of the thumb when the hovered Switch is checked.
33715
34534
  /// @group switch
33716
- $kendo-switch-on-thumb-hover-border: k-try-shade( $kendo-switch-on-thumb-hover-bg ) !default;
34535
+ $kendo-switch-on-thumb-hover-border: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-switch-on-thumb-hover-bg )) !default;
33717
34536
  /// The background gradient of the thumb when the hovered Switch is checked.
33718
34537
  /// @group switch
33719
34538
  $kendo-switch-on-thumb-hover-gradient: null !default;
@@ -33951,7 +34770,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
33951
34770
  $kendo-switch-off-track-focus-gradient
33952
34771
  );
33953
34772
  @if $kendo-enable-focus-contrast {
33954
- @include box-shadow( 0 0 0 2px if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ) );
34773
+ @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 )) );
33955
34774
  } @else {
33956
34775
  outline: $kendo-switch-off-track-focus-ring;
33957
34776
  }
@@ -34031,7 +34850,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
34031
34850
  $kendo-switch-on-track-focus-gradient
34032
34851
  );
34033
34852
  @if $kendo-enable-focus-contrast {
34034
- @include box-shadow( 0 0 0 2px if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ) );
34853
+ @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 )) );
34035
34854
  } @else {
34036
34855
  outline: $kendo-switch-on-track-focus-ring;
34037
34856
  }
@@ -34191,7 +35010,7 @@ $kendo-dropzone-border: $kendo-base-border !default;
34191
35010
  $kendo-dropzone-icon-spacing: k-map-get( $kendo-spacing, 6 ) !default;
34192
35011
  /// The text color of the DropZone icon.
34193
35012
  /// @group dropzone
34194
- $kendo-dropzone-icon-text: k-try-tint( $kendo-dropzone-text, 4 ) !default;
35013
+ $kendo-dropzone-icon-text: if($kendo-enable-color-system, k-color( subtle ), k-try-tint( $kendo-dropzone-text, 4 )) !default;
34195
35014
  /// The text color of the hovered DropZone icon.
34196
35015
  /// @group dropzone
34197
35016
  $kendo-dropzone-icon-hover-text: $kendo-color-primary !default;
@@ -34923,14 +35742,14 @@ $kendo-appbar-gap: k-map-get( $kendo-spacing, 2 ) !default;
34923
35742
  $kendo-appbar-light-bg: $kendo-color-light !default;
34924
35743
  /// The text color of the AppBar based on light theme color.
34925
35744
  /// @group appbar
34926
- $kendo-appbar-light-text: k-contrast-color( $kendo-color-light ) !default;
35745
+ $kendo-appbar-light-text: if($kendo-enable-color-system, k-color( on-light ), k-contrast-color( $kendo-color-light )) !default;
34927
35746
 
34928
35747
  /// The background color of the AppBar based on dark theme color.
34929
35748
  /// @group appbar
34930
35749
  $kendo-appbar-dark-bg: $kendo-color-dark !default;
34931
35750
  /// The text color of the AppBar based on dark theme colorr.
34932
35751
  /// @group appbar
34933
- $kendo-appbar-dark-text: k-contrast-color( $kendo-color-dark ) !default;
35752
+ $kendo-appbar-dark-text: if($kendo-enable-color-system, k-color( on-dark ), k-contrast-color( $kendo-color-dark )) !default;
34934
35753
 
34935
35754
  /// The box shadow of the AppBar.
34936
35755
  /// @group appbar
@@ -35090,7 +35909,7 @@ $kendo-appbar-bottom-box-shadow: k-elevation(4) !default;
35090
35909
  color: $kendo-appbar-dark-text;
35091
35910
  background-color: $kendo-appbar-dark-bg;
35092
35911
  } @else {
35093
- color: k-contrast-legacy( $color );
35912
+ color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
35094
35913
  background-color: $color;
35095
35914
  }
35096
35915
  }
@@ -35513,7 +36332,7 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
35513
36332
  outline: $kendo-fab-border-width $kendo-fab-outline-style $color;
35514
36333
  outline-offset: -$kendo-fab-border-width;
35515
36334
  border-color: $color;
35516
- color: k-contrast-legacy( $color );
36335
+ color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
35517
36336
  background-color: $color;
35518
36337
  }
35519
36338
  }
@@ -35522,8 +36341,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
35522
36341
  @each $name, $color in $kendo-fab-theme-colors {
35523
36342
  .k-hover.k-fab-solid-#{$name},
35524
36343
  .k-fab-solid-#{$name}:hover {
35525
- border-color: k-try-shade( $color, .5 );
35526
- background-color: k-try-shade( $color, .5 );
36344
+ border-color: if($kendo-enable-color-system, k-color( #{$name}-hover ), k-try-shade( $color, .5 ));
36345
+ background-color: if($kendo-enable-color-system, k-color( #{$name}-hover ), k-try-shade( $color, .5 ));
35527
36346
  }
35528
36347
  }
35529
36348
 
@@ -35534,7 +36353,7 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
35534
36353
  @if $kendo-enable-focus-contrast {
35535
36354
  @include box-shadow( inset 0 0 0 2px currentColor );
35536
36355
  } @else {
35537
- outline: $kendo-fab-outline-style $kendo-fab-outline-width rgba( $color, .3 );
36356
+ outline: $kendo-fab-outline-style $kendo-fab-outline-width if($kendo-enable-color-system, rgba( k-color( $name, true ), .3 ), rgba( $color, .3 ));
35538
36357
  }
35539
36358
  }
35540
36359
  }
@@ -35545,8 +36364,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
35545
36364
  .k-selected.k-fab-solid-#{$name},
35546
36365
  .k-fab-solid-#{$name}:active {
35547
36366
  @include box-shadow($kendo-fab-active-shadow);
35548
- border-color: k-try-shade( $color, 1.5);
35549
- background-color: k-try-shade( $color, 1.5);
36367
+ border-color: if($kendo-enable-color-system, k-color( #{$name}-active ), k-try-shade( $color, 1.5));
36368
+ background-color: if($kendo-enable-color-system, k-color( #{$name}-active ), k-try-shade( $color, 1.5));
35550
36369
  }
35551
36370
  }
35552
36371
 
@@ -35555,8 +36374,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
35555
36374
  .k-disabled.k-fab-solid-#{$name},
35556
36375
  .k-fab-solid-#{$name}:disabled {
35557
36376
  @include box-shadow($kendo-fab-disabled-shadow);
35558
- background-color: k-try-tint( $color, 5 );
35559
- color: k-try-tint( k-contrast-legacy( $color ), 5 );
36377
+ background-color: if($kendo-enable-color-system, rgba( k-color( $name, true ), .6 ), k-try-tint( $color, 5 ));
36378
+ color: if($kendo-enable-color-system, rgba( k-color( on-#{$name}, true ), .6 ), k-try-tint( k-contrast-legacy( $color ), 5 ));
35560
36379
  opacity: 1;
35561
36380
  }
35562
36381
  }
@@ -35585,8 +36404,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
35585
36404
  // Hover state
35586
36405
  .k-fab-item.k-hover .k-fab-item-icon,
35587
36406
  .k-fab-item:hover .k-fab-item-icon {
35588
- border-color: k-try-shade( $kendo-fab-item-icon-border, .5 );
35589
- background-color: k-try-shade( $kendo-fab-item-icon-bg, .5 );
36407
+ border-color: if($kendo-enable-color-system, k-color( border ), k-try-shade( $kendo-fab-item-icon-border, .5 ));
36408
+ background-color: if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-fab-item-icon-bg, .5 ));
35590
36409
  }
35591
36410
 
35592
36411
  // Focus state
@@ -35595,7 +36414,7 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
35595
36414
  .k-fab-item.k-focus .k-fab-item-text,
35596
36415
  .k-fab-item.k-focus .k-fab-item-icon {
35597
36416
  @if $kendo-enable-focus-contrast {
35598
- @include box-shadow( inset 0 0 0 2px if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ) );
36417
+ @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 )) );
35599
36418
  } @else {
35600
36419
  outline: $kendo-fab-item-outline-style $kendo-fab-item-outline-width $kendo-fab-item-outline-color;
35601
36420
  }
@@ -35605,8 +36424,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
35605
36424
  .k-fab-item.k-active .k-fab-item-icon,
35606
36425
  .k-fab-item:active .k-fab-item-icon {
35607
36426
  @include box-shadow($kendo-fab-item-active-shadow);
35608
- border-color: k-try-shade( $kendo-fab-item-icon-border, 1);
35609
- background-color: k-try-shade( $kendo-fab-item-icon-bg, 1);
36427
+ border-color: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-fab-item-icon-border, 1 ));
36428
+ background-color: if($kendo-enable-color-system, k-color( base-active ), k-try-shade( $kendo-fab-item-icon-bg, 1 ));
35610
36429
  }
35611
36430
 
35612
36431
  // Disabled state
@@ -35617,8 +36436,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
35617
36436
  .k-fab-item-text,
35618
36437
  .k-fab-item-icon {
35619
36438
  @include box-shadow($kendo-fab-item-disabled-shadow);
35620
- background-color: k-try-tint( $kendo-fab-item-bg, 5 );
35621
- color: k-try-tint( $kendo-fab-item-text, 5 );
36439
+ background-color: if($kendo-enable-color-system, rgba( k-color( base, true ), .6 ), k-try-tint( $kendo-fab-item-bg, 5 ));
36440
+ color: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .6 ), k-try-tint( $kendo-fab-item-text, 5 ));
35622
36441
  }
35623
36442
  }
35624
36443
 
@@ -36604,7 +37423,7 @@ $_kendo-module-meta: (
36604
37423
  // Window theme colors
36605
37424
  @each $name, $color in $kendo-window-theme-colors {
36606
37425
  .k-window-#{$name} .k-window-titlebar {
36607
- color: k-contrast-legacy( $color );
37426
+ color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
36608
37427
  background-color: $color;
36609
37428
  }
36610
37429
  }
@@ -36785,7 +37604,7 @@ $kendo-dialog-theme-colors: (
36785
37604
  // Dialog theme colors
36786
37605
  @each $name, $color in $kendo-dialog-theme-colors {
36787
37606
  .k-dialog-#{$name} .k-dialog-titlebar {
36788
- color: k-contrast-legacy( $color );
37607
+ color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
36789
37608
  background-color: $color;
36790
37609
  }
36791
37610
  }
@@ -37347,7 +38166,7 @@ $kendo-notification-icon-spacing: $kendo-icon-spacing !default;
37347
38166
 
37348
38167
  @each $name, $color in $colors {
37349
38168
  $_theme: k-map-merge(( $name: (
37350
- color: k-contrast-legacy( $color ),
38169
+ color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color )),
37351
38170
  background-color: $color,
37352
38171
  border: $color,
37353
38172
  )), $_theme );
@@ -37953,6 +38772,10 @@ $kendo-card-callout-height: 20px !default;
37953
38772
  gap: $kendo-card-actions-gap;
37954
38773
  }
37955
38774
 
38775
+ .k-card-horizontal .k-actions-horizontal {
38776
+ width: auto;
38777
+ }
38778
+
37956
38779
  // List
37957
38780
  .k-card-list {
37958
38781
  display: flex;
@@ -38177,9 +39000,9 @@ $kendo-card-callout-height: 20px !default;
38177
39000
  // Card theme colors
38178
39001
  @each $name, $color in $kendo-theme-colors {
38179
39002
  .k-card-#{$name} {
38180
- background-color: k-color-tint($color, 10);
38181
- color: k-color-shade($color, 6);
38182
- border-color: k-color-tint($color, 9);
39003
+ background-color: if($kendo-enable-color-system, k-color( #{$name}-subtle ), k-color-tint($color, 10));
39004
+ color: if($kendo-enable-color-system, k-color( #{$name}-on-subtle ), k-color-shade($color, 6));
39005
+ border-color: if($kendo-enable-color-system, k-color( #{$name}-emphasis ), k-color-tint($color, 9));
38183
39006
 
38184
39007
  .k-card-subtitle {
38185
39008
  color: inherit;
@@ -38901,17 +39724,17 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
38901
39724
  @each $name, $color in $kendo-theme-colors {
38902
39725
  .k-bottom-nav-solid-#{$name} {
38903
39726
  @include fill(
38904
- $color: k-true-mix( $color, k-contrast-legacy( $color ), 35%),
39727
+ $color: if($kendo-enable-color-system, rgba( k-color( on-#{$name}, true ), .65 ), k-true-mix( $color, k-contrast-legacy( $color ), 35%)),
38905
39728
  $bg: $color
38906
39729
  );
38907
39730
 
38908
39731
  .k-bottom-nav-item.k-focus,
38909
39732
  .k-bottom-nav-item:focus {
38910
- @include fill( $bg: rgba(k-true-mix( $color, k-contrast-legacy( $color ), 35%), .2));
39733
+ @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)));
38911
39734
  }
38912
39735
 
38913
39736
  .k-bottom-nav-item.k-selected {
38914
- @include fill( $color: k-contrast-legacy( $color ) );
39737
+ @include fill( $color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color )) );
38915
39738
  }
38916
39739
  }
38917
39740
  // TODO: remove when suites update class names
@@ -38931,12 +39754,12 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
38931
39754
 
38932
39755
  .k-bottom-nav-item.k-focus,
38933
39756
  .k-bottom-nav-item:focus {
38934
- @include fill( $bg: rgba($kendo-bottom-nav-flat-text, .05) );
39757
+ @include fill( $bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .05), rgba($kendo-bottom-nav-flat-text, .05)) );
38935
39758
  }
38936
39759
 
38937
39760
  .k-bottom-nav-item.k-selected {
38938
39761
  @if $name == "secondary" or $name == "light" {
38939
- @include fill( $color: k-try-shade($color, 3) );
39762
+ @include fill( $color: if($kendo-enable-color-system, k-color( #{$name} ), k-try-shade($color, 3)) );
38940
39763
  } @else {
38941
39764
  @include fill( $color: $color );
38942
39765
  }
@@ -40061,24 +40884,24 @@ $kendo-stepper-indicator-bg: $kendo-component-bg !default;
40061
40884
  $kendo-stepper-indicator-text: $kendo-component-text !default;
40062
40885
  $kendo-stepper-indicator-border: $kendo-component-border !default;
40063
40886
 
40064
- $kendo-stepper-indicator-hover-bg: k-try-shade( $kendo-stepper-indicator-bg ) !default;
40887
+ $kendo-stepper-indicator-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-hover ), k-try-shade( $kendo-stepper-indicator-bg )) !default;
40065
40888
  $kendo-stepper-indicator-hover-text: null !default;
40066
40889
  $kendo-stepper-indicator-hover-border: null !default;
40067
40890
 
40068
40891
  $kendo-stepper-indicator-disabled-bg: null !default;
40069
- $kendo-stepper-indicator-disabled-text: $kendo-disabled-text !default;
40892
+ $kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .6 ), $kendo-disabled-text) !default;
40070
40893
  $kendo-stepper-indicator-disabled-border: null !default;
40071
40894
 
40072
40895
  $kendo-stepper-indicator-done-bg: $kendo-color-primary !default;
40073
- $kendo-stepper-indicator-done-text: k-contrast-legacy( $kendo-stepper-indicator-done-bg ) !default;
40896
+ $kendo-stepper-indicator-done-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-stepper-indicator-done-bg )) !default;
40074
40897
  $kendo-stepper-indicator-done-border: $kendo-stepper-indicator-done-bg !default;
40075
40898
 
40076
- $kendo-stepper-indicator-done-hover-bg: k-try-shade( $kendo-stepper-indicator-done-bg ) !default;
40899
+ $kendo-stepper-indicator-done-hover-bg: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-stepper-indicator-done-bg )) !default;
40077
40900
  $kendo-stepper-indicator-done-hover-text: null !default;
40078
40901
  $kendo-stepper-indicator-done-hover-border: null !default;
40079
40902
 
40080
- $kendo-stepper-indicator-done-disabled-bg: k-color-mix( $kendo-stepper-indicator-done-bg, $kendo-component-bg, 60% ) !default;
40081
- $kendo-stepper-indicator-done-disabled-text: k-contrast-legacy( $kendo-stepper-indicator-done-bg ) !default;
40903
+ $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;
40904
+ $kendo-stepper-indicator-done-disabled-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-stepper-indicator-done-bg )) !default;
40082
40905
  $kendo-stepper-indicator-done-disabled-border: $kendo-stepper-indicator-done-disabled-bg !default;
40083
40906
 
40084
40907
  $kendo-stepper-indicator-current-bg: $kendo-stepper-indicator-done-bg !default;
@@ -40097,7 +40920,7 @@ $kendo-stepper-label-text: null !default;
40097
40920
  $kendo-stepper-label-success-text: $kendo-color-success !default;
40098
40921
  $kendo-stepper-label-error-text: $kendo-color-error !default;
40099
40922
  $kendo-stepper-label-hover-text: null !default;
40100
- $kendo-stepper-label-disabled-text: $kendo-disabled-text !default;
40923
+ $kendo-stepper-label-disabled-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .6 ), $kendo-disabled-text) !default;
40101
40924
 
40102
40925
  $kendo-stepper-optional-label-text: $kendo-subtle-text !default;
40103
40926
  $kendo-stepper-optional-label-opacity: null !default;
@@ -40192,6 +41015,17 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
40192
41015
  transition-duration: .4s;
40193
41016
  transition-timing-function: ease-in-out;
40194
41017
 
41018
+ &::before {
41019
+ @include border-radius( $kendo-stepper-indicator-border-radius );
41020
+ content: "";
41021
+ width: 100%;
41022
+ height: 100%;
41023
+ position: absolute;
41024
+ top: 0;
41025
+ left: 0;
41026
+ z-index: -1;
41027
+ }
41028
+
40195
41029
  &::after {
40196
41030
  @include border-radius( 100% );
40197
41031
  content: "";
@@ -40452,11 +41286,23 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
40452
41286
  &.k-disabled,
40453
41287
  &:disabled {
40454
41288
  .k-step-indicator {
40455
- @include fill(
40456
- $kendo-stepper-indicator-disabled-text,
40457
- $kendo-stepper-indicator-disabled-bg,
40458
- $kendo-stepper-indicator-disabled-border
40459
- );
41289
+ @if($kendo-enable-color-system) {
41290
+ @include fill(
41291
+ $kendo-stepper-indicator-disabled-text,
41292
+ k-color( app-surface ),
41293
+ $kendo-stepper-indicator-disabled-border
41294
+ );
41295
+
41296
+ &::before {
41297
+ background-color: $kendo-stepper-indicator-disabled-bg;
41298
+ }
41299
+ } @else {
41300
+ @include fill(
41301
+ $kendo-stepper-indicator-disabled-text,
41302
+ $kendo-stepper-indicator-disabled-bg,
41303
+ $kendo-stepper-indicator-disabled-border
41304
+ );
41305
+ }
40460
41306
  }
40461
41307
 
40462
41308
  .k-step-label {
@@ -40514,11 +41360,23 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
40514
41360
  &.k-disabled,
40515
41361
  &:disabled {
40516
41362
  .k-step-indicator {
40517
- @include fill(
40518
- $kendo-stepper-indicator-done-disabled-text,
40519
- $kendo-stepper-indicator-done-disabled-bg,
40520
- $kendo-stepper-indicator-done-disabled-border
40521
- );
41363
+ @if($kendo-enable-color-system) {
41364
+ @include fill(
41365
+ $kendo-stepper-indicator-done-disabled-text,
41366
+ k-color( app-surface ),
41367
+ $kendo-stepper-indicator-done-disabled-border
41368
+ );
41369
+
41370
+ &::before {
41371
+ background-color: $kendo-stepper-indicator-done-disabled-bg;
41372
+ }
41373
+ } @else {
41374
+ @include fill(
41375
+ $kendo-stepper-indicator-done-disabled-text,
41376
+ $kendo-stepper-indicator-done-disabled-bg,
41377
+ $kendo-stepper-indicator-done-disabled-border
41378
+ );
41379
+ }
40522
41380
  }
40523
41381
  }
40524
41382
  }
@@ -40555,11 +41413,23 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
40555
41413
  &.k-disabled,
40556
41414
  &:disabled {
40557
41415
  .k-step-indicator {
40558
- @include fill(
40559
- $kendo-stepper-indicator-current-disabled-text,
40560
- $kendo-stepper-indicator-current-disabled-bg,
40561
- $kendo-stepper-indicator-current-disabled-border
40562
- );
41416
+ @if($kendo-enable-color-system) {
41417
+ @include fill(
41418
+ $kendo-stepper-indicator-current-disabled-text,
41419
+ k-color( app-surface ),
41420
+ $kendo-stepper-indicator-current-disabled-border
41421
+ );
41422
+
41423
+ &::before {
41424
+ background-color: $kendo-stepper-indicator-current-disabled-bg;
41425
+ }
41426
+ } @else {
41427
+ @include fill(
41428
+ $kendo-stepper-indicator-current-disabled-text,
41429
+ $kendo-stepper-indicator-current-disabled-bg,
41430
+ $kendo-stepper-indicator-current-disabled-border
41431
+ );
41432
+ }
40563
41433
  }
40564
41434
  }
40565
41435
  }
@@ -41666,10 +42536,9 @@ $kendo-expander-header-bg: transparent !default;
41666
42536
  /// The border color of the ExpansionPanel header.
41667
42537
  /// @group expander
41668
42538
  $kendo-expander-header-border: null !default;
41669
-
41670
42539
  /// The background color of the hovered ExpansionPanel header.
41671
42540
  /// @group expander
41672
- $kendo-expander-header-hover-bg: k-color-shade( $kendo-expander-bg, 1 ) !default;
42541
+ $kendo-expander-header-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-hover ), k-color-shade( $kendo-expander-bg, 1 )) !default;
41673
42542
  /// The background color of the focused ExpansionPanel header.
41674
42543
  /// @group expander
41675
42544
  $kendo-expander-header-focus-bg: null !default;
@@ -41952,7 +42821,7 @@ $kendo-panelbar-header-selected-text: $kendo-selected-text !default;
41952
42821
  $kendo-panelbar-header-selected-border: $kendo-selected-border !default;
41953
42822
  $kendo-panelbar-header-selected-gradient: null !default;
41954
42823
 
41955
- $kendo-panelbar-header-selected-hover-bg: k-try-shade( $kendo-panelbar-header-selected-bg ) !default;
42824
+ $kendo-panelbar-header-selected-hover-bg: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-panelbar-header-selected-bg )) !default;
41956
42825
  $kendo-panelbar-header-selected-hover-text: null !default;
41957
42826
  $kendo-panelbar-header-selected-hover-border: null !default;
41958
42827
  $kendo-panelbar-header-selected-hover-gradient: null !default;
@@ -41967,8 +42836,7 @@ $kendo-panelbar-header-selected-hover-focus-text: null !default;
41967
42836
  $kendo-panelbar-header-selected-hover-focus-border: null !default;
41968
42837
  $kendo-panelbar-header-selected-hover-focus-gradient: null !default;
41969
42838
 
41970
-
41971
- $kendo-panelbar-item-hover-bg: k-try-shade( $kendo-panelbar-bg, .5 ) !default;
42839
+ $kendo-panelbar-item-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-hover ), k-try-shade( $kendo-panelbar-bg, .5 )) !default;
41972
42840
  $kendo-panelbar-item-hover-text: null !default;
41973
42841
  $kendo-panelbar-item-hover-border: null !default;
41974
42842
  $kendo-panelbar-item-hover-gradient: null !default;
@@ -41989,7 +42857,7 @@ $kendo-panelbar-item-selected-text: $kendo-selected-text !default;
41989
42857
  $kendo-panelbar-item-selected-border: null !default;
41990
42858
  $kendo-panelbar-item-selected-gradient: null !default;
41991
42859
 
41992
- $kendo-panelbar-item-selected-hover-bg: k-try-shade( $kendo-panelbar-item-selected-bg ) !default;
42860
+ $kendo-panelbar-item-selected-hover-bg: if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-panelbar-item-selected-bg )) !default;
41993
42861
  $kendo-panelbar-item-selected-hover-text: null !default;
41994
42862
  $kendo-panelbar-item-selected-hover-border: null !default;
41995
42863
  $kendo-panelbar-item-selected-hover-gradient: null !default;
@@ -42480,7 +43348,7 @@ $kendo-splitter-collapse-icon-padding-y: k-map-get( $kendo-spacing, .5 ) !defaul
42480
43348
  $kendo-splitbar-bg: $kendo-base-bg !default;
42481
43349
  $kendo-splitbar-text: $kendo-base-text !default;
42482
43350
 
42483
- $kendo-splitbar-hover-bg: k-try-shade( $kendo-splitbar-bg, .5 ) !default;
43351
+ $kendo-splitbar-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-hover ), k-try-shade( $kendo-splitbar-bg, .5 )) !default;
42484
43352
  $kendo-splitbar-hover-text: $kendo-splitbar-text !default;
42485
43353
 
42486
43354
  $kendo-splitbar-selected-bg: $kendo-selected-bg !default;
@@ -43093,7 +43961,7 @@ $kendo-dock-manager-dock-preview-border-style: dashed !default;
43093
43961
  $kendo-dock-manager-dock-preview-border-radius: $kendo-border-radius-sm !default;
43094
43962
  /// The background color of the dropping area in the DockManager component.
43095
43963
  /// @group dock-manager
43096
- $kendo-dock-manager-dock-preview-bg: rgba( $kendo-color-primary, .16 ) !default;
43964
+ $kendo-dock-manager-dock-preview-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .16 ), rgba( $kendo-color-primary, .16 )) !default;
43097
43965
  /// The border color of the dropping area in the DockManager component.
43098
43966
  /// @group dock-manager
43099
43967
  $kendo-dock-manager-dock-preview-border: $kendo-color-primary !default;
@@ -43505,7 +44373,7 @@ $kendo-adaptive-content-bg: $kendo-app-bg !default;
43505
44373
  $kendo-adaptive-content-text: $kendo-app-text !default;
43506
44374
 
43507
44375
  $kendo-adaptive-menu-bg: $kendo-color-primary !default;
43508
- $kendo-adaptive-menu-text: k-contrast-legacy( $kendo-adaptive-menu-bg ) !default;
44376
+ $kendo-adaptive-menu-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-adaptive-menu-bg )) !default;
43509
44377
 
43510
44378
  $kendo-adaptive-menu-clear-text: $kendo-color-primary !default;
43511
44379
 
@@ -44455,14 +45323,14 @@ $kendo-grid-selection-aggregates-line-height: $kendo-grid-line-height !default;
44455
45323
  $kendo-grid-selection-aggregates-font-weight: $kendo-font-weight-bold !default;
44456
45324
 
44457
45325
  $kendo-grid-sorted-icon-spacing: calc( #{$kendo-padding-md-x} - 1px ) !default;
44458
- $kendo-grid-sorted-bg: rgba( k-contrast-color( $kendo-grid-bg ), .02 ) !default;
45326
+ $kendo-grid-sorted-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .03 ), rgba( k-contrast-color( $kendo-grid-bg ), .02 )) !default;
44459
45327
  $kendo-grid-sorting-indicator-text: $kendo-color-primary !default;
44460
45328
  $kendo-grid-sorting-index-font-size: $kendo-font-size-sm !default;
44461
45329
  $kendo-grid-sorting-index-height: $kendo-icon-size !default;
44462
45330
  $kendo-grid-sorting-index-spacing-y: k-math-div( $kendo-icon-spacing, 2 ) !default;
44463
45331
  $kendo-grid-sorting-index-spacing-x: -$kendo-grid-sorting-index-spacing-y !default;
44464
45332
 
44465
- $kendo-grid-grouping-row-bg: k-try-shade( $kendo-grid-bg, 1 ) !default;
45333
+ $kendo-grid-grouping-row-bg: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-grid-bg, 1 )) !default;
44466
45334
  $kendo-grid-grouping-row-text: $kendo-grid-text !default;
44467
45335
 
44468
45336
  $kendo-grid-focus-shadow: $kendo-table-focus-shadow !default;
@@ -44471,11 +45339,13 @@ $kendo-grid-command-cell-button-spacing: k-map-get( $kendo-spacing, 2 ) !default
44471
45339
  // be cautious when changing the next line; see https://github.com/MoOx/reduce-css-calc/issues/38
44472
45340
  $kendo-grid-command-cell-padding-y: calc( #{$kendo-grid-cell-padding-y} - (#{$kendo-button-calc-size} - #{$kendo-line-height-em}) / 2 ) !default;
44473
45341
 
45342
+ // Must be a solid color
44474
45343
  $kendo-grid-sticky-bg: $kendo-grid-bg !default;
44475
45344
  $kendo-grid-sticky-text: $kendo-grid-text !default;
44476
45345
  $kendo-grid-sticky-border: $kendo-grid-border !default;
44477
45346
 
44478
- $kendo-grid-sticky-alt-bg: $kendo-grid-alt-bg !default;
45347
+ // Must be a solid color
45348
+ $kendo-grid-sticky-alt-bg: if($kendo-enable-color-system, k-color( base-subtle ), $kendo-grid-alt-bg) !default;
44479
45349
 
44480
45350
  $kendo-grid-sticky-header-bg: $kendo-grid-header-bg !default;
44481
45351
  $kendo-grid-sticky-header-text: $kendo-grid-header-text !default;
@@ -44484,11 +45354,12 @@ $kendo-grid-sticky-header-border: $kendo-grid-sticky-border !default;
44484
45354
  $kendo-grid-sticky-footer-bg: $kendo-grid-header-bg !default;
44485
45355
  $kendo-grid-sticky-footer-hover-bg: $kendo-grid-hover-bg !default;
44486
45356
 
44487
- $kendo-grid-sticky-selected-bg: k-color-mix($kendo-selected-bg, #ffffff, 25%) !default;
44488
- $kendo-grid-sticky-selected-alt-bg: k-try-shade( $kendo-grid-sticky-selected-bg, .5 ) !default;
45357
+ $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;
45358
+ $kendo-grid-sticky-selected-alt-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), k-try-shade( $kendo-grid-sticky-selected-bg, .5 )) !default;
44489
45359
 
44490
- $kendo-grid-sticky-hover-bg: $kendo-grid-hover-bg !default;
44491
- $kendo-grid-sticky-selected-hover-bg: k-try-shade( $kendo-grid-sticky-selected-bg, 1 ) !default;
45360
+ // Must be a solid color
45361
+ $kendo-grid-sticky-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-hover ), $kendo-grid-hover-bg) !default;
45362
+ $kendo-grid-sticky-selected-hover-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), k-try-shade( $kendo-grid-sticky-selected-bg, 1 )) !default;
44492
45363
 
44493
45364
  $kendo-grid-column-menu-width: 230px !default;
44494
45365
  $kendo-grid-column-menu-max-width: 320px !default;
@@ -44539,7 +45410,7 @@ $kendo-grid-group-footer-second-cell-border: 1px !default;
44539
45410
 
44540
45411
  /// Background color of the grid row resize indicator
44541
45412
  /// @group grid
44542
- $kendo-grid-row-resizer-hover-bg: rgba( k-contrast-color( $kendo-grid-bg ), .12 ) !default;
45413
+ $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;
44543
45414
  /// Active background color of the grid row resize indicator
44544
45415
  /// @group grid
44545
45416
  $kendo-grid-row-resizer-active-bg: $kendo-color-primary !default;
@@ -45330,6 +46201,16 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
45330
46201
  }
45331
46202
  }
45332
46203
 
46204
+ .k-master-row .k-grid-content-sticky::before {
46205
+ content: "";
46206
+ width: 100%;
46207
+ height: 100%;
46208
+ position: absolute;
46209
+ top: 0;
46210
+ left: 0;
46211
+ z-index: -1;
46212
+ }
46213
+
45333
46214
  kendo-grid {
45334
46215
  .k-table-row.k-grid-row-sticky {
45335
46216
  border: 0;
@@ -46187,14 +47068,30 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
46187
47068
  &.k-table-row.k-selected .k-table-td.k-grid-row-sticky,
46188
47069
  &.k-table-row td.k-grid-content-sticky.k-selected,
46189
47070
  &.k-table-row .k-table-td.k-grid-content-sticky.k-selected {
46190
- @include fill( $bg: $kendo-grid-sticky-selected-bg );
47071
+ @if($kendo-enable-color-system) {
47072
+ @include fill( $bg: $kendo-grid-sticky-bg );
47073
+
47074
+ &::before {
47075
+ @include fill( $bg: $kendo-grid-sticky-selected-bg );
47076
+ }
47077
+ } @else {
47078
+ @include fill( $bg: $kendo-grid-sticky-selected-bg );
47079
+ }
46191
47080
  }
46192
47081
 
46193
47082
  &.k-selected.k-table-alt-row td.k-grid-content-sticky,
46194
47083
  &.k-selected.k-table-alt-row .k-table-td.k-grid-row-sticky,
46195
47084
  &.k-table-alt-row td.k-grid-content-sticky.k-selected,
46196
47085
  &.k-table-alt-row .k-table-td.k-grid-content-sticky.k-selected {
46197
- @include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
47086
+ @if($kendo-enable-color-system) {
47087
+ @include fill( $bg: $kendo-grid-sticky-alt-bg );
47088
+
47089
+ &::before {
47090
+ @include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
47091
+ }
47092
+ } @else {
47093
+ @include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
47094
+ }
46198
47095
  }
46199
47096
 
46200
47097
 
@@ -46216,7 +47113,15 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
46216
47113
  &.k-hover td.k-grid-content-sticky.k-selected,
46217
47114
  &:hover .k-table-td.k-grid-content-sticky.k-selected,
46218
47115
  &.k-hover .k-table-td.k-grid-content-sticky.k-selected {
46219
- background-color: $kendo-grid-sticky-selected-hover-bg;
47116
+ @if($kendo-enable-color-system) {
47117
+ background-color: $kendo-grid-sticky-hover-bg;
47118
+
47119
+ &::before {
47120
+ background-color: $kendo-grid-sticky-selected-hover-bg;
47121
+ }
47122
+ } @else {
47123
+ background-color: $kendo-grid-sticky-selected-hover-bg;
47124
+ }
46220
47125
  }
46221
47126
  }
46222
47127
 
@@ -46262,14 +47167,30 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
46262
47167
  .k-selected.k-grid-row-sticky .k-table-td,
46263
47168
  .k-grid-row-sticky .k-table-td.k-selected,
46264
47169
  .k-selected.k-grid-content-sticky {
46265
- @include fill( $bg: $kendo-grid-sticky-selected-bg );
47170
+ @if($kendo-enable-color-system) {
47171
+ @include fill( $bg: $kendo-grid-sticky-bg );
47172
+
47173
+ &::before {
47174
+ @include fill( $bg: $kendo-grid-sticky-selected-bg );
47175
+ }
47176
+ } @else {
47177
+ @include fill( $bg: $kendo-grid-sticky-selected-bg );
47178
+ }
46266
47179
  }
46267
47180
 
46268
47181
  .k-table-row.k-selected.k-table-alt-row .k-grid-content-sticky,
46269
47182
  .k-selected.k-table-alt-row.k-grid-row-sticky td,
46270
47183
  .k-selected.k-table-alt-row.k-grid-row-sticky .k-table-td,
46271
47184
  .k-table-alt-row .k-selected.k-grid-content-sticky {
46272
- @include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
47185
+ @if($kendo-enable-color-system) {
47186
+ @include fill( $bg: $kendo-grid-sticky-alt-bg );
47187
+
47188
+ &::before {
47189
+ @include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
47190
+ }
47191
+ } @else {
47192
+ @include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
47193
+ }
46273
47194
  }
46274
47195
 
46275
47196
  // Hover state
@@ -46307,7 +47228,15 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
46307
47228
  .k-grid-row-sticky.k-hover .k-table-td.k-selected,
46308
47229
  .k-table-row:hover .k-grid-content-sticky.k-selected,
46309
47230
  .k-table-row.k-hover .k-grid-content-sticky.k-selected {
46310
- background-color: $kendo-grid-sticky-selected-hover-bg;
47231
+ @if($kendo-enable-color-system) {
47232
+ background-color: $kendo-grid-sticky-hover-bg;
47233
+
47234
+ &::before {
47235
+ background-color: $kendo-grid-sticky-selected-hover-bg;
47236
+ }
47237
+ } @else {
47238
+ background-color: $kendo-grid-sticky-selected-hover-bg;
47239
+ }
46311
47240
  }
46312
47241
  }
46313
47242
 
@@ -46533,7 +47462,7 @@ $kendo-listview-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
46533
47462
  $kendo-listview-item-selected-text: null !default;
46534
47463
  /// The background color of the selected ListView items.
46535
47464
  /// @group listview
46536
- $kendo-listview-item-selected-bg: rgba( $kendo-selected-bg, .25 ) !default;
47465
+ $kendo-listview-item-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
46537
47466
  /// The border color of the selected ListView items.
46538
47467
  /// @group listview
46539
47468
  $kendo-listview-item-selected-border: null !default;
@@ -46912,7 +47841,7 @@ $kendo-spreadsheet-formula-input-line-height: $kendo-input-line-height !default;
46912
47841
  $kendo-spreadsheet-view-font-family: Arial, Verdana, sans-serif !default;
46913
47842
  $kendo-spreadsheet-view-font-size: $kendo-spreadsheet-font-size !default;
46914
47843
 
46915
- $kendo-spreadsheet-selection-bg: rgba( $kendo-selected-bg, .25 ) !default;
47844
+ $kendo-spreadsheet-selection-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
46916
47845
  $kendo-spreadsheet-selection-text: null !default;
46917
47846
  $kendo-spreadsheet-selection-border: $kendo-selected-bg !default;
46918
47847
  $kendo-spreadsheet-selection-shadow: inset 0 0 0 1px $kendo-selected-bg !default;
@@ -46921,12 +47850,12 @@ $kendo-spreadsheet-single-selection-bg: $kendo-selected-bg !default;
46921
47850
  $kendo-spreadsheet-single-selection-text: null !default;
46922
47851
  $kendo-spreadsheet-single-selection-border: $kendo-spreadsheet-bg !default;
46923
47852
 
46924
- $kendo-spreadsheet-partial-selection-bg: rgba( $kendo-selected-bg, .25 ) !default;
47853
+ $kendo-spreadsheet-partial-selection-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
46925
47854
 
46926
47855
  $kendo-spreadsheet-active-cell-bg: $kendo-spreadsheet-bg !default;
46927
47856
  $kendo-spreadsheet-active-cell-shadow: inset 0 0 0 1px $kendo-selected-bg !default;
46928
47857
 
46929
- $kendo-spreadsheet-auto-fill-bg: rgba( $kendo-selected-bg, .25 ) !default;
47858
+ $kendo-spreadsheet-auto-fill-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
46930
47859
  $kendo-spreadsheet-auto-fill-text: null !default;
46931
47860
  $kendo-spreadsheet-auto-fill-border: $kendo-selected-bg !default;
46932
47861
  $kendo-spreadsheet-auto-fill-shadow: inset 0 0 0 1px $kendo-selected-bg !default;
@@ -46976,7 +47905,7 @@ $kendo-spreadsheet-drawing-handle-border-radius: $kendo-border-radius-lg !defaul
46976
47905
  $kendo-spreadsheet-drawing-outline-style: solid !default;
46977
47906
  $kendo-spreadsheet-drawing-outline-width: 2px !default;
46978
47907
 
46979
- $kendo-spreadsheet-drawing-anchor-bg: rgba( $kendo-selected-bg, .25 ) !default;
47908
+ $kendo-spreadsheet-drawing-anchor-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
46980
47909
 
46981
47910
  $kendo-spreadsheet-dropzone-spacing-y: k-map-get( $kendo-spacing, 4 ) !default;
46982
47911
 
@@ -48212,21 +49141,21 @@ $kendo-pivotgrid-bg: $kendo-component-bg !default;
48212
49141
  $kendo-pivotgrid-text: $kendo-component-text !default;
48213
49142
  $kendo-pivotgrid-border: $kendo-component-border !default;
48214
49143
 
48215
- $kendo-pivotgrid-alt-border: k-try-shade( $kendo-pivotgrid-border, 2 ) !default;
49144
+ $kendo-pivotgrid-alt-border: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-pivotgrid-border, 2 )) !default;
48216
49145
 
48217
49146
  $kendo-pivotgrid-headers-bg: $kendo-component-header-bg !default;
48218
49147
  $kendo-pivotgrid-headers-text: $kendo-component-header-text !default;
48219
49148
  $kendo-pivotgrid-headers-border: $kendo-component-header-border !default;
48220
49149
 
48221
- $kendo-pivotgrid-total-bg: k-try-shade( $kendo-pivotgrid-bg, 1 ) !default;
49150
+ $kendo-pivotgrid-total-bg: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-pivotgrid-bg, 1 )) !default;
48222
49151
  $kendo-pivotgrid-total-text: $kendo-component-header-text !default;
48223
49152
  $kendo-pivotgrid-total-border: $kendo-component-header-border !default;
48224
49153
 
48225
- $kendo-pivotgrid-hover-bg: k-color-darken( $kendo-pivotgrid-bg, 7% ) !default;
49154
+ $kendo-pivotgrid-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-hover ), k-color-darken( $kendo-pivotgrid-bg, 7% )) !default;
48226
49155
  $kendo-pivotgrid-hover-text: null !default;
48227
49156
  $kendo-pivotgrid-hover-border: null !default;
48228
49157
 
48229
- $kendo-pivotgrid-selected-bg: rgba( $kendo-selected-bg, .25 ) !default;
49158
+ $kendo-pivotgrid-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
48230
49159
  $kendo-pivotgrid-selected-text: null !default;
48231
49160
  $kendo-pivotgrid-selected-border: null !default;
48232
49161
 
@@ -48295,7 +49224,7 @@ $kendo-pivotgrid-alt-text: $kendo-grid-header-text !default;
48295
49224
  $kendo-pivotgrid-chrome-border: $kendo-grid-border !default;
48296
49225
 
48297
49226
  $kendo-pivotgrid-container-bg: $kendo-component-bg !default;
48298
- $kendo-pivotgrid-row-headers-bg: k-try-shade( $kendo-component-bg, 2 ) !default;
49227
+ $kendo-pivotgrid-row-headers-bg: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-component-bg, 2 )) !default;
48299
49228
 
48300
49229
  $kendo-pivotgrid-button-bg: null !default;
48301
49230
  $kendo-pivotgrid-button-text: null !default;
@@ -49911,7 +50840,7 @@ $kendo-file-manager-listview-item-border: null !default;
49911
50840
  $kendo-file-manager-listview-item-icon-bg: null !default;
49912
50841
  /// The text color of the FileManager ListView item icon.
49913
50842
  /// @group filemanager
49914
- $kendo-file-manager-listview-item-icon-text: k-try-tint($kendo-file-manager-text, 4) !default;
50843
+ $kendo-file-manager-listview-item-icon-text: if($kendo-enable-color-system, k-color( subtle ), k-try-tint($kendo-file-manager-text, 4)) !default;
49915
50844
  /// The border color of the FileManager ListView item icon.
49916
50845
  /// @group filemanager
49917
50846
  $kendo-file-manager-listview-item-icon-border: null !default;
@@ -49968,7 +50897,7 @@ $kendo-file-manager-preview-border: null !default;
49968
50897
  $kendo-file-manager-preview-icon-bg: null !default;
49969
50898
  /// The text color of the FileManager preview icon.
49970
50899
  /// @group filemanager
49971
- $kendo-file-manager-preview-icon-text: k-try-tint($kendo-file-manager-text, 4) !default;
50900
+ $kendo-file-manager-preview-icon-text: if($kendo-enable-color-system, k-color( subtle ), k-try-tint($kendo-file-manager-text, 4)) !default;
49972
50901
  /// The border color of the FileManager preview icon.
49973
50902
  /// @group filemanager
49974
50903
  $kendo-file-manager-preview-icon-border: null !default;
@@ -50000,6 +50929,7 @@ $kendo-file-manager-preview-icon-border: null !default;
50000
50929
  border-bottom-width: $kendo-file-manager-toolbar-border-width;
50001
50930
  border-color: inherit;
50002
50931
  flex-shrink: 0;
50932
+ z-index: 1;
50003
50933
  }
50004
50934
 
50005
50935
 
@@ -50014,6 +50944,10 @@ $kendo-file-manager-preview-icon-border: null !default;
50014
50944
  overflow: hidden;
50015
50945
  }
50016
50946
 
50947
+ .k-filemanager-splitter {
50948
+ border-width: 0;
50949
+ }
50950
+
50017
50951
 
50018
50952
  // Navigation
50019
50953
  .k-filemanager-navigation {
@@ -50456,7 +51390,7 @@ $kendo-taskboard-column-border: transparent !default;
50456
51390
 
50457
51391
  $kendo-taskboard-column-focus-bg: null !default;
50458
51392
  $kendo-taskboard-column-focus-text: null !default;
50459
- $kendo-taskboard-column-focus-border: k-try-shade( $kendo-base-border, 2.5 ) !default;
51393
+ $kendo-taskboard-column-focus-border: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-base-border, 2.5 )) !default;
50460
51394
 
50461
51395
  $kendo-taskboard-column-header-padding-y: k-math-div( $kendo-taskboard-spacer, 2 ) !default;
50462
51396
  $kendo-taskboard-column-header-padding-x: $kendo-taskboard-column-header-padding-y !default;
@@ -50499,10 +51433,11 @@ $kendo-taskboard-card-shadow: $kendo-card-shadow !default;
50499
51433
 
50500
51434
  $kendo-taskboard-card-category-border-width: 4px !default;
50501
51435
 
50502
- $kendo-taskboard-card-focus-border: k-try-shade( $kendo-taskboard-card-border, 18% ) !default;
51436
+ $kendo-taskboard-card-hover-border: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-taskboard-card-border, 10% )) !default;
51437
+
51438
+ $kendo-taskboard-card-focus-border: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-taskboard-card-border, 18% )) !default;
50503
51439
  $kendo-taskboard-card-focus-shadow: none !default;
50504
51440
 
50505
- $kendo-taskboard-card-hover-border: k-try-shade( $kendo-taskboard-card-border, 10% ) !default;
50506
51441
 
50507
51442
  $kendo-taskboard-card-selected-border: k-color-tint( $kendo-color-primary-lighter, 5 ) !default;
50508
51443
  $kendo-taskboard-card-selected-shadow: none !default;
@@ -50986,7 +51921,7 @@ $kendo-editor-selected-bg: $kendo-color-primary !default;
50986
51921
 
50987
51922
  /// The highlighted background color of the Editor.
50988
51923
  /// @group editor
50989
- $kendo-editor-highlighted-bg: k-color-mix( $kendo-color-primary, #ffffff, 20% ) !default;
51924
+ $kendo-editor-highlighted-bg: if($kendo-enable-color-system, k-color( primary-subtle ), k-color-mix( $kendo-color-primary, #ffffff, 20% )) !default;
50990
51925
 
50991
51926
  /// The horizontal margin of the Editor's export tool icon.
50992
51927
  /// @group editor
@@ -52226,12 +53161,12 @@ $kendo-gantt-treelist-bg: null !default;
52226
53161
  $kendo-gantt-treelist-text: null !default;
52227
53162
  $kendo-gantt-treelist-border: null !default;
52228
53163
 
52229
- $kendo-gantt-nonwork-bg: rgba( k-contrast-color( $kendo-gantt-bg ), .025 ) !default;
53164
+ $kendo-gantt-nonwork-bg: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .03 ), rgba( k-contrast-color( $kendo-gantt-bg ), .025 )) !default;
52230
53165
  $kendo-gantt-nonwork-text: null !default;
52231
53166
  $kendo-gantt-nonwork-border: null !default;
52232
53167
 
52233
53168
  $kendo-gantt-line-size: 2px !default;
52234
- $kendo-gantt-line-fill: k-contrast-color( $kendo-gantt-bg ) !default;
53169
+ $kendo-gantt-line-fill: if($kendo-enable-color-system, k-color( on-base ), k-contrast-color( $kendo-gantt-bg )) !default;
52235
53170
  $kendo-gantt-line-selected-fill: $kendo-color-primary !default;
52236
53171
 
52237
53172
  $kendo-gantt-dot-size: 8px !default;
@@ -52246,19 +53181,19 @@ $kendo-gantt-milestone-border: $kendo-gantt-border !default;
52246
53181
  $kendo-gantt-milestone-selected-bg: $kendo-selected-bg !default;
52247
53182
  $kendo-gantt-milestone-selected-border: $kendo-selected-border !default;
52248
53183
 
52249
- $kendo-gantt-summary-bg: k-try-tint( $kendo-gantt-text, 1 ) !default;
52250
- $kendo-gantt-summary-progress-bg: k-try-shade( $kendo-gantt-text, 5 ) !default;
52251
- $kendo-gantt-summary-selected-bg: k-try-tint( $kendo-selected-bg, 6 ) !default;
53184
+ $kendo-gantt-summary-bg: if($kendo-enable-color-system, k-color( subtle ), k-try-tint( $kendo-gantt-text, 1 )) !default;
53185
+ $kendo-gantt-summary-progress-bg: if($kendo-enable-color-system, k-color( on-base ), k-try-shade( $kendo-gantt-text, 5 )) !default;
53186
+ $kendo-gantt-summary-selected-bg: if($kendo-enable-color-system, k-color( primary-subtle-active ), k-try-tint( $kendo-selected-bg, 6 )) !default;
52252
53187
  $kendo-gantt-summary-progress-selected-bg: $kendo-selected-bg !default;
52253
53188
 
52254
53189
  $kendo-gantt-task-border-width: 0px !default;
52255
53190
  $kendo-gantt-task-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
52256
53191
  $kendo-gantt-task-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
52257
- $kendo-gantt-task-bg: k-try-tint( $kendo-gantt-text, 2 ) !default;
52258
- $kendo-gantt-task-text: k-contrast-color( $kendo-gantt-text ) !default;
53192
+ $kendo-gantt-task-bg: if($kendo-enable-color-system, k-color( subtle ), k-try-tint( $kendo-gantt-text, 2 )) !default;
53193
+ $kendo-gantt-task-text: if($kendo-enable-color-system, k-color( base-subtle ), k-contrast-color( $kendo-gantt-text )) !default;
52259
53194
  $kendo-gantt-task-border: null !default;
52260
53195
  $kendo-gantt-task-progress-bg: $kendo-gantt-text !default;
52261
- $kendo-gantt-task-selected-bg: k-try-tint( $kendo-selected-bg, 6 ) !default;
53196
+ $kendo-gantt-task-selected-bg: if($kendo-enable-color-system, k-color( primary-subtle-active ), k-try-tint( $kendo-selected-bg, 6 )) !default;
52262
53197
  $kendo-gantt-task-selected-text: $kendo-selected-text !default;
52263
53198
  $kendo-gantt-task-selected-border: null !default;
52264
53199
  $kendo-gantt-task-progress-selected-bg: $kendo-selected-bg !default;
@@ -52292,10 +53227,10 @@ $kendo-gantt-planned-bg: $kendo-color-primary !default;
52292
53227
  $kendo-gantt-planned-border: $kendo-gantt-planned-bg !default;
52293
53228
 
52294
53229
  $kendo-gantt-delayed-bg: $kendo-color-error !default;
52295
- $kendo-gantt-delayed-bg-lighter: k-color-tint($kendo-gantt-delayed-bg, 5) !default;
53230
+ $kendo-gantt-delayed-bg-lighter: if($kendo-enable-color-system, k-color( error-emphasis ), k-color-tint($kendo-gantt-delayed-bg, 5)) !default;
52296
53231
 
52297
53232
  $kendo-gantt-advanced-bg: $kendo-color-success !default;
52298
- $kendo-gantt-advanced-bg-lighter: k-color-tint($kendo-gantt-advanced-bg, 5) !default;
53233
+ $kendo-gantt-advanced-bg-lighter: if($kendo-enable-color-system, k-color( success-emphasis ), k-color-tint($kendo-gantt-advanced-bg, 5)) !default;
52299
53234
 
52300
53235
  $kendo-gantt-action-on-offset-text: #000000 !default;
52301
53236
  $kendo-gantt-offset-resize-handler-top: 50% !default;
@@ -52602,12 +53537,20 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
52602
53537
 
52603
53538
 
52604
53539
  // Timeline
52605
- .k-gantt-timeline {
53540
+ .k-gantt-timeline-pane {
52606
53541
 
52607
- .k-timeline {
53542
+ .k-gantt-timeline {
52608
53543
  height: 100%;
52609
53544
  border-width: 0;
52610
53545
  display: flex;
53546
+
53547
+ *,
53548
+ *::before,
53549
+ *::after,
53550
+ &::before,
53551
+ &::after {
53552
+ box-sizing: border-box;
53553
+ }
52611
53554
  }
52612
53555
  .k-grid-header {}
52613
53556
  .k-grid-content {
@@ -53083,7 +54026,7 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
53083
54026
  }
53084
54027
 
53085
54028
  .k-gantt,
53086
- .k-gantt-timeline,
54029
+ .k-gantt-timeline-pane,
53087
54030
  .k-gantt-dependencies {
53088
54031
  width: auto !important; // stylelint-disable-line declaration-no-important
53089
54032
  height: auto !important; // stylelint-disable-line declaration-no-important
@@ -53128,7 +54071,7 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
53128
54071
  margin-inline: -26px;
53129
54072
  }
53130
54073
 
53131
- .k-gantt-timeline {
54074
+ .k-gantt-timeline-pane {
53132
54075
  .k-header {
53133
54076
  border-width: 0 $kendo-grid-cell-vertical-border-width 1px 0;
53134
54077
  }
@@ -53188,7 +54131,7 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
53188
54131
  margin-right: $kendo-gantt-rtl-milestone-planned-moment-margin-x;
53189
54132
  }
53190
54133
 
53191
- .k-gantt-timeline .k-milestone-wrap .k-task-start {
54134
+ .k-gantt-timeline-pane .k-milestone-wrap .k-task-start {
53192
54135
  right: $kendo-gantt-rtl-milestone-dot-start-margin-x;
53193
54136
  }
53194
54137
 
@@ -53604,7 +54547,7 @@ $kendo-scheduler-event-min-height: 25px !default;
53604
54547
  $kendo-scheduler-event-border-radius: $kendo-border-radius-md !default;
53605
54548
  $kendo-scheduler-event-line-height: calc( #{$kendo-scheduler-event-min-height} - (2 * #{$kendo-padding-md-y}) ) !default;
53606
54549
 
53607
- $kendo-scheduler-event-bg: k-color-tint( $kendo-selected-bg, 2 ) !default;
54550
+ $kendo-scheduler-event-bg: if($kendo-enable-color-system, k-color( primary ), k-color-tint( $kendo-selected-bg, 2 )) !default;
53608
54551
  $kendo-scheduler-event-text: $kendo-selected-text !default;
53609
54552
  $kendo-scheduler-event-border: null !default;
53610
54553
  $kendo-scheduler-event-gradient: null !default;
@@ -53630,13 +54573,13 @@ $kendo-scheduler-cell-height: $kendo-line-height-em !default;
53630
54573
  $kendo-scheduler-datecolumn-width: 12em !default;
53631
54574
  $kendo-scheduler-timecolumn-width: 11em !default;
53632
54575
 
53633
- $kendo-scheduler-nonwork-bg: k-try-shade( $kendo-scheduler-bg, .5 ) !default;
54576
+ $kendo-scheduler-nonwork-bg: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-scheduler-bg, .5 )) !default;
53634
54577
  $kendo-scheduler-nonwork-text: null !default;
53635
54578
 
53636
54579
  $kendo-scheduler-weekend-bg: null !default;
53637
54580
  $kendo-scheduler-weekend-text: null !default;
53638
54581
 
53639
- $kendo-scheduler-othermonth-bg: k-try-shade( $kendo-scheduler-bg, .5 ) !default;
54582
+ $kendo-scheduler-othermonth-bg: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-scheduler-bg, .5 )) !default;
53640
54583
  $kendo-scheduler-othermonth-text: null !default;
53641
54584
 
53642
54585
  $kendo-scheduler-yearview-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
@@ -54797,7 +55740,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
54797
55740
 
54798
55741
  .k-scheduler-layout td.k-selected,
54799
55742
  .k-scheduler-layout .k-scheduler-cell.k-selected {
54800
- background-color: rgba($kendo-selected-bg, .25);
55743
+ background-color: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25));
54801
55744
  }
54802
55745
 
54803
55746
  .k-scheduler-layout-flex {
@@ -54840,7 +55783,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
54840
55783
  }
54841
55784
 
54842
55785
  &.k-event-inverse {
54843
- color: k-contrast-legacy( $kendo-scheduler-event-text );
55786
+ color: if($kendo-enable-color-system, k-color( on-app-surface ), k-contrast-legacy( $kendo-scheduler-event-text ));
54844
55787
  }
54845
55788
 
54846
55789
  &.k-event-ongoing {
@@ -54914,7 +55857,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
54914
55857
 
54915
55858
  // Selected
54916
55859
  .k-scheduler-content tr.k-selected {
54917
- background-color: rgba($kendo-selected-bg, .25);
55860
+ background-color: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25));
54918
55861
  }
54919
55862
  .k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
54920
55863
  .k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
@@ -55103,7 +56046,7 @@ $kendo-chat-bubble-hover-shadow: k-elevation(2) !default;
55103
56046
  $kendo-chat-bubble-selected-shadow: k-elevation(3) !default;
55104
56047
 
55105
56048
  $kendo-chat-alt-bubble-bg: $kendo-color-primary !default;
55106
- $kendo-chat-alt-bubble-text: k-contrast-legacy( $kendo-chat-alt-bubble-bg ) !default;
56049
+ $kendo-chat-alt-bubble-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-chat-alt-bubble-bg )) !default;
55107
56050
  $kendo-chat-alt-bubble-border: $kendo-chat-alt-bubble-bg !default;
55108
56051
  $kendo-chat-alt-bubble-shadow: k-elevation(1) !default;
55109
56052
  $kendo-chat-alt-bubble-hover-shadow: k-elevation(2) !default;
@@ -55778,7 +56721,7 @@ $kendo-media-player-titlebar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
55778
56721
  $kendo-media-player-titlebar-bg: null !default;
55779
56722
  $kendo-media-player-titlebar-text: $kendo-media-player-bg !default;
55780
56723
  $kendo-media-player-titlebar-border: null !default;
55781
- $kendo-media-player-titlebar-gradient: rgba( $kendo-media-player-text, .7 ), rgba( $kendo-media-player-text, 0 ) !default;
56724
+ $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;
55782
56725
 
55783
56726
  // #endregion
55784
56727
  // #region @import "./_layout.scss"; -> scss/mediaplayer/_layout.scss
@@ -55916,7 +56859,7 @@ $kendo-media-player-titlebar-gradient: rgba( $kendo-media-player-text, .7 ), rgb
55916
56859
  .k-mediaplayer-titlebar {
55917
56860
  color: $kendo-media-player-titlebar-text;
55918
56861
  background-image: linear-gradient( $kendo-media-player-titlebar-gradient );
55919
- text-shadow: 0 0 2px rgba( $kendo-media-player-text, .5 );
56862
+ text-shadow: 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-media-player-text, .5 ));
55920
56863
  }
55921
56864
 
55922
56865
  }
@@ -56008,9 +56951,9 @@ $kendo-timeline-mobile-spacing-y: 16px !default;
56008
56951
  $kendo-timeline-track-arrow-width: 30px !default;
56009
56952
  $kendo-timeline-track-arrow-height: 30px !default;
56010
56953
 
56011
- $kendo-timeline-track-arrow-disabled-text: k-true-mix( $kendo-button-text, $kendo-body-bg, 65% ) !default;
56012
- $kendo-timeline-track-arrow-disabled-bg: k-true-mix( $kendo-button-bg, $kendo-body-bg, 65% ) !default;
56013
- $kendo-timeline-track-arrow-disabled-border: k-true-mix( #000000, $kendo-body-bg, 4.8% ) !default;
56954
+ $kendo-timeline-track-arrow-disabled-bg: if($kendo-enable-color-system, rgba( k-color( base, true ), .6 ), k-true-mix( $kendo-button-bg, $kendo-body-bg, 65% )) !default;
56955
+ $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;
56956
+ $kendo-timeline-track-arrow-disabled-border: if($kendo-enable-color-system, rgba( k-color( border, true ), .15 ), k-true-mix( #000000, $kendo-body-bg, 4.8% )) !default;
56014
56957
 
56015
56958
  $kendo-timeline-track-size: 6px !default;
56016
56959
  $kendo-timeline-track-wrap-padding-bottom: k-math-div( $kendo-timeline-track-size, 2 ) !default;
@@ -56034,7 +56977,7 @@ $kendo-timeline-flag-max-width: calc(#{$kendo-timeline-flag-min-width} + 2 * #{$
56034
56977
  $kendo-timeline-mobile-flag-max-width: calc(#{$kendo-timeline-flag-min-width} + 2 * #{$kendo-timeline-mobile-spacing-x}) !default;
56035
56978
  $kendo-timeline-horizontal-flag-min-width: 60px !default;
56036
56979
  $kendo-timeline-flag-bg: $kendo-color-primary !default;
56037
- $kendo-timeline-flag-text: k-contrast-legacy( $kendo-timeline-flag-bg ) !default;
56980
+ $kendo-timeline-flag-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-timeline-flag-bg )) !default;
56038
56981
 
56039
56982
  $kendo-timeline-flag-callout-width: 10px !default;
56040
56983
  $kendo-timeline-flag-callout-height: 10px !default;
@@ -57309,7 +58252,7 @@ $kendo-scrollview-pagebutton-border: $kendo-button-border !default;
57309
58252
  $kendo-scrollview-pagebutton-primary-bg: $kendo-color-primary !default;
57310
58253
  /// The primary border color of the ScrollView page button.
57311
58254
  /// @group scrollview
57312
- $kendo-scrollview-pagebutton-primary-border: k-try-shade( $kendo-color-primary, 2 ) !default;
58255
+ $kendo-scrollview-pagebutton-primary-border: if($kendo-enable-color-system, k-color( primary ), k-try-shade( $kendo-color-primary, 2 )) !default;
57313
58256
  /// The box shadow of the ScrollView page button.
57314
58257
  /// @group scrollview
57315
58258
  $kendo-scrollview-pagebutton-shadow: 0 0 0 2px rgba( black, .13 ) !default;
@@ -57962,51 +58905,51 @@ $_kendo-module-meta: (
57962
58905
 
57963
58906
  /// The first base series color and its light and dark shades.
57964
58907
  /// @group charts
57965
- $kendo-series-a: #ff6358 !default;
57966
- $kendo-series-a-dark: k-color-mix( black, $kendo-series-a, 25% ) !default;
57967
- $kendo-series-a-darker: k-color-mix( black, $kendo-series-a, 50% ) !default;
57968
- $kendo-series-a-light: k-color-mix( white, $kendo-series-a, 25% ) !default;
57969
- $kendo-series-a-lighter: k-color-mix( white, $kendo-series-a, 50% ) !default;
58908
+ $kendo-series-a: if($kendo-enable-color-system, k-color( series-a ), #ff6358) !default;
58909
+ $kendo-series-a-dark: if($kendo-enable-color-system, k-color( series-a-bold ), k-color-mix(black, $kendo-series-a, 25%)) !default;
58910
+ $kendo-series-a-darker: if($kendo-enable-color-system, k-color( series-a-bolder ), k-color-mix(black, $kendo-series-a, 50%)) !default;
58911
+ $kendo-series-a-light: if($kendo-enable-color-system, k-color( series-a-subtle ), k-color-mix(white, $kendo-series-a, 25%)) !default;
58912
+ $kendo-series-a-lighter: if($kendo-enable-color-system, k-color( series-a-subtler ), k-color-mix(white, $kendo-series-a, 50%)) !default;
57970
58913
 
57971
58914
  /// The second base series color and its light and dark shades.
57972
58915
  /// @group charts
57973
- $kendo-series-b: #ffd246 !default;
57974
- $kendo-series-b-dark: k-color-mix( black, $kendo-series-b, 25% ) !default;
57975
- $kendo-series-b-darker: k-color-mix( black, $kendo-series-b, 50% ) !default;
57976
- $kendo-series-b-light: k-color-mix( white, $kendo-series-b, 25% ) !default;
57977
- $kendo-series-b-lighter: k-color-mix( white, $kendo-series-b, 50% ) !default;
58916
+ $kendo-series-b: if($kendo-enable-color-system, k-color( series-b ), #ffd246) !default;
58917
+ $kendo-series-b-dark: if($kendo-enable-color-system, k-color( series-b-bold ), k-color-mix(black, $kendo-series-b, 25%)) !default;
58918
+ $kendo-series-b-darker: if($kendo-enable-color-system, k-color( series-b-bolder ), k-color-mix(black, $kendo-series-b, 50%)) !default;
58919
+ $kendo-series-b-light: if($kendo-enable-color-system, k-color( series-b-subtle ), k-color-mix(white, $kendo-series-b, 25%)) !default;
58920
+ $kendo-series-b-lighter: if($kendo-enable-color-system, k-color( series-b-subtler ), k-color-mix(white, $kendo-series-b, 50%)) !default;
57978
58921
 
57979
58922
  /// The third base series color and its light and dark shades.
57980
58923
  /// @group charts
57981
- $kendo-series-c: #78d237 !default;
57982
- $kendo-series-c-dark: k-color-mix( black, $kendo-series-c, 25% ) !default;
57983
- $kendo-series-c-darker: k-color-mix( black, $kendo-series-c, 50% ) !default;
57984
- $kendo-series-c-light: k-color-mix( white, $kendo-series-c, 25% ) !default;
57985
- $kendo-series-c-lighter: k-color-mix( white, $kendo-series-c, 50% ) !default;
58924
+ $kendo-series-c: if($kendo-enable-color-system, k-color( series-c ), #78d237) !default;
58925
+ $kendo-series-c-dark: if($kendo-enable-color-system, k-color( series-c-bold ), k-color-mix(black, $kendo-series-c, 25%)) !default;
58926
+ $kendo-series-c-darker: if($kendo-enable-color-system, k-color( series-c-bolder ), k-color-mix(black, $kendo-series-c, 50%)) !default;
58927
+ $kendo-series-c-light: if($kendo-enable-color-system, k-color( series-c-subtle ), k-color-mix(white, $kendo-series-c, 25%)) !default;
58928
+ $kendo-series-c-lighter: if($kendo-enable-color-system, k-color( series-c-subtler ), k-color-mix(white, $kendo-series-c, 50%)) !default;
57986
58929
 
57987
58930
  /// The fourth base series color and its light and dark shades.
57988
58931
  /// @group charts
57989
- $kendo-series-d: #28b4c8 !default;
57990
- $kendo-series-d-dark: k-color-mix( black, $kendo-series-d, 25% ) !default;
57991
- $kendo-series-d-darker: k-color-mix( black, $kendo-series-d, 50% ) !default;
57992
- $kendo-series-d-light: k-color-mix( white, $kendo-series-d, 25% ) !default;
57993
- $kendo-series-d-lighter: k-color-mix( white, $kendo-series-d, 50% ) !default;
58932
+ $kendo-series-d: if($kendo-enable-color-system, k-color( series-d ), #28b4c8) !default;
58933
+ $kendo-series-d-dark: if($kendo-enable-color-system, k-color( series-d-bold ), k-color-mix(black, $kendo-series-d, 25%)) !default;
58934
+ $kendo-series-d-darker: if($kendo-enable-color-system, k-color( series-d-bolder ), k-color-mix(black, $kendo-series-d, 50%)) !default;
58935
+ $kendo-series-d-light: if($kendo-enable-color-system, k-color( series-d-subtle ), k-color-mix(white, $kendo-series-d, 25%)) !default;
58936
+ $kendo-series-d-lighter: if($kendo-enable-color-system, k-color( series-d-subtler ), k-color-mix(white, $kendo-series-d, 50%)) !default;
57994
58937
 
57995
58938
  /// The fifth base series color and its light and dark shades.
57996
58939
  /// @group charts
57997
- $kendo-series-e: #2d73f5 !default;
57998
- $kendo-series-e-dark: k-color-mix( black, $kendo-series-e, 25% ) !default;
57999
- $kendo-series-e-darker: k-color-mix( black, $kendo-series-e, 50% ) !default;
58000
- $kendo-series-e-light: k-color-mix( white, $kendo-series-e, 25% ) !default;
58001
- $kendo-series-e-lighter: k-color-mix( white, $kendo-series-e, 50% ) !default;
58940
+ $kendo-series-e: if($kendo-enable-color-system, k-color( series-e ), #2d73f5) !default;
58941
+ $kendo-series-e-dark: if($kendo-enable-color-system, k-color( series-e-bold ), k-color-mix(black, $kendo-series-e, 25%)) !default;
58942
+ $kendo-series-e-darker: if($kendo-enable-color-system, k-color( series-e-bolder ), k-color-mix(black, $kendo-series-e, 50%)) !default;
58943
+ $kendo-series-e-light: if($kendo-enable-color-system, k-color( series-e-subtle ), k-color-mix(white, $kendo-series-e, 25%)) !default;
58944
+ $kendo-series-e-lighter: if($kendo-enable-color-system, k-color( series-e-subtler ), k-color-mix(white, $kendo-series-e, 50%)) !default;
58002
58945
 
58003
58946
  /// The sixth base series color and its light and dark shades.
58004
58947
  /// @group charts
58005
- $kendo-series-f: #aa46be !default;
58006
- $kendo-series-f-dark: k-color-mix( black, $kendo-series-f, 25% ) !default;
58007
- $kendo-series-f-darker: k-color-mix( black, $kendo-series-f, 50% ) !default;
58008
- $kendo-series-f-light: k-color-mix( white, $kendo-series-f, 25% ) !default;
58009
- $kendo-series-f-lighter: k-color-mix( white, $kendo-series-f, 50% ) !default;
58948
+ $kendo-series-f: if($kendo-enable-color-system, k-color( series-f ), #aa46be) !default;
58949
+ $kendo-series-f-dark: if($kendo-enable-color-system, k-color( series-f-bold ), k-color-mix(black, $kendo-series-f, 25%)) !default;
58950
+ $kendo-series-f-darker: if($kendo-enable-color-system, k-color( series-f-bolder ), k-color-mix(black, $kendo-series-f, 50%)) !default;
58951
+ $kendo-series-f-light: if($kendo-enable-color-system, k-color( series-f-subtle ), k-color-mix(white, $kendo-series-f, 25%)) !default;
58952
+ $kendo-series-f-lighter: if($kendo-enable-color-system, k-color( series-f-subtler ), k-color-mix(white, $kendo-series-f, 50%)) !default;
58010
58953
 
58011
58954
  /// The series colors in order:
58012
58955
  /// base, light, dark, lighter, darker
@@ -58057,13 +59000,13 @@ $kendo-chart-pane-title-font-weight: $kendo-font-weight-normal !default;
58057
59000
 
58058
59001
  /// The color of the Chart grid lines (major).
58059
59002
  /// @group charts
58060
- $kendo-chart-major-lines: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 ) !default;
59003
+ $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;
58061
59004
 
58062
59005
  /// The color of the Chart grid lines (minor).
58063
59006
  /// @group charts
58064
- $kendo-chart-minor-lines: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .04 ) !default;
59007
+ $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;
58065
59008
 
58066
- $kendo-chart-inactive: rgba( $kendo-body-text, .5 ) !default;
59009
+ $kendo-chart-inactive: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-body-text, .5 )) !default;
58067
59010
  $kendo-chart-area-opacity: .6 !default;
58068
59011
  $kendo-chart-area-inactive-opacity: .1 !default;
58069
59012
  $kendo-chart-line-inactive-opacity: .1 !default;
@@ -58074,20 +59017,20 @@ $kendo-chart-bg: $kendo-component-bg !default;
58074
59017
  $kendo-chart-text: $kendo-component-text !default;
58075
59018
  $kendo-chart-border: $kendo-component-border !default;
58076
59019
 
58077
- $kendo-chart-crosshair-background: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 ) !default;
59020
+ $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;
58078
59021
  $kendo-chart-crosshair-shared-tooltip-color: $kendo-chart-text !default;
58079
- $kendo-chart-crosshair-shared-tooltip-background: k-try-shade( $kendo-chart-bg, 1 ) !default;
58080
- $kendo-chart-crosshair-shared-tooltip-border: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08) !default;
59022
+ $kendo-chart-crosshair-shared-tooltip-background: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-chart-bg, 1 )) !default;
59023
+ $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;
58081
59024
 
58082
- $kendo-chart-notes-background: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 ) !default;
58083
- $kendo-chart-notes-border: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 ) !default;
58084
- $kendo-chart-notes-lines: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 ) !default;
59025
+ $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;
59026
+ $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;
59027
+ $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;
58085
59028
 
58086
- $kendo-chart-error-bars-background: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 ) !default;
59029
+ $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;
58087
59030
 
58088
59031
  $kendo-chart-selection-handle-size: 22px !default;
58089
- $kendo-chart-selection-border-color: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 ) !default;
58090
- $kendo-chart-selection-shadow: inset 0 1px 7px rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .15) !default;
59032
+ $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;
59033
+ $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;
58091
59034
 
58092
59035
 
58093
59036
  // TreeMap
@@ -58553,14 +59496,14 @@ $kendo-treemap-line-height: $kendo-line-height-md !default;
58553
59496
  series-30: $kendo-series-30,
58554
59497
 
58555
59498
  gauge-pointer: $kendo-color-primary,
58556
- gauge-track: k-try-shade( $kendo-chart-bg )
59499
+ gauge-track: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-chart-bg ))
58557
59500
  );
58558
59501
 
58559
59502
  @each $name, $value in $exported {
58560
59503
  $type: k-meta-type-of($value);
58561
59504
 
58562
59505
  .k-var--#{$name} {
58563
- @if $type == "color" {
59506
+ @if $type == "color" or $type == "string" {
58564
59507
  // background-color can store any color
58565
59508
  background-color: $value;
58566
59509
  } @else if $type == "number" {
@@ -58849,7 +59792,7 @@ $kendo-map-zoom-control-button-padding-y: $kendo-map-zoom-control-button-padding
58849
59792
  $kendo-map-attribution-padding-x: $kendo-padding-sm-x !default;
58850
59793
  $kendo-map-attribution-padding-y: $kendo-padding-sm-y !default;
58851
59794
  $kendo-map-attribution-font-size: ($kendo-map-font-size * .75) !default;
58852
- $kendo-map-attribution-bg: rgba( $kendo-map-bg, .8 ) !default;
59795
+ $kendo-map-attribution-bg: if($kendo-enable-color-system, rgba( k-color( app-surface, true ), .8 ), rgba( $kendo-map-bg, .8 )) !default;
58853
59796
 
58854
59797
  $kendo-map-marker-fill: $kendo-color-primary !default;
58855
59798
 
@@ -59450,7 +60393,7 @@ $kendo-signature-lg-padding-y: $kendo-signature-lg-padding-x !default;
59450
60393
 
59451
60394
  $kendo-signature-line-width: 1px !default;
59452
60395
  $kendo-signature-line-style: dashed !default;
59453
- $kendo-signature-line-color: rgba( $kendo-color-info, .24 ) !default;
60396
+ $kendo-signature-line-color: if($kendo-enable-color-system, rgba( k-color( info, true ), .24 ), rgba( $kendo-color-info, .24 )) !default;
59454
60397
 
59455
60398
  $kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding-x} ) !default;
59456
60399
  $kendo-signature-sm-line-size: calc( 100% - 2 * #{$kendo-signature-sm-padding-x} ) !default;