@progress/kendo-theme-classic 7.1.0-dev.1 → 7.1.0-dev.10

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 (68) hide show
  1. package/dist/all.css +313 -29
  2. package/dist/all.scss +2030 -633
  3. package/dist/meta/sassdoc-data.json +3484 -1052
  4. package/dist/meta/sassdoc-raw-data.json +1644 -521
  5. package/dist/meta/variables.json +510 -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 +6 -6
  21. package/scss/_variables.scss +1 -193
  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/index.scss +2 -0
  42. package/scss/input/_variables.scss +20 -7
  43. package/scss/listview/_variables.scss +1 -1
  44. package/scss/map/_variables.scss +1 -1
  45. package/scss/mediaplayer/_variables.scss +1 -1
  46. package/scss/menu/_variables.scss +1 -1
  47. package/scss/notification/_variables.scss +1 -1
  48. package/scss/panelbar/_variables.scss +3 -4
  49. package/scss/pivotgrid/_variables.scss +5 -5
  50. package/scss/progressbar/_variables.scss +3 -3
  51. package/scss/prompt/_index.scss +37 -0
  52. package/scss/prompt/_layout.scss +6 -0
  53. package/scss/prompt/_theme.scss +6 -0
  54. package/scss/prompt/_variables.scss +66 -0
  55. package/scss/scheduler/_variables.scss +3 -3
  56. package/scss/scrollview/_variables.scss +1 -1
  57. package/scss/signature/_variables.scss +1 -1
  58. package/scss/skeleton/_variables.scss +1 -1
  59. package/scss/slider/_variables.scss +8 -8
  60. package/scss/splitter/_variables.scss +1 -1
  61. package/scss/spreadsheet/_variables.scss +4 -4
  62. package/scss/stepper/_variables.scss +7 -7
  63. package/scss/switch/_variables.scss +7 -7
  64. package/scss/table/_variables.scss +3 -3
  65. package/scss/taskboard/_variables.scss +4 -3
  66. package/scss/timeline/_variables.scss +4 -4
  67. package/scss/tooltip/_variables.scss +4 -4
  68. 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,27 +2656,10 @@ $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
2659
  // Loading
2097
2660
  $kendo-loading-opacity: .3 !default;
2098
2661
  $kendo-zindex-loading: 100 !default;
2662
+
2099
2663
  // #endregion
2100
2664
 
2101
2665
  // #region @import "@progress/kendo-theme-core/scss/index.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/index.import.scss
@@ -3183,6 +3747,31 @@ $kendo-palettes: (
3183
3747
  @return var( --#{$prefix}#{$name}, #{$fallback} );
3184
3748
  }
3185
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
+
3186
3775
  @function k-generate-theme-variation( $theme-color, $source-palette-name, $mapping ) {
3187
3776
  $temp: ( );
3188
3777
 
@@ -3194,9 +3783,9 @@ $kendo-palettes: (
3194
3783
  $border-prop: k-list-nth($indices, 3);
3195
3784
 
3196
3785
  // Take value from the palette only if it is a number
3197
- $bg: if( k-meta-type-of($bg-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$bg-prop} ), $bg-prop );
3198
- $text: if( k-meta-type-of($text-prop) == number, k-get-theme-color-var( #{$source-palette-name}-#{$text-prop} ), $text-prop );
3199
- $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 ));
3200
3789
 
3201
3790
 
3202
3791
  $temp: k-map-deep-merge( $temp, (
@@ -3208,7 +3797,7 @@ $kendo-palettes: (
3208
3797
  // Add outline if provided in the map
3209
3798
  @if ( k-list-length($indices) > 3 ) {
3210
3799
  $outline-prop: k-list-nth($indices, 4);
3211
- $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 ));
3212
3801
 
3213
3802
  $temp: k-map-deep-merge( $temp, (
3214
3803
  #{$prefix}outline: $outline
@@ -3235,6 +3824,18 @@ $kendo-palettes: (
3235
3824
  @return $result;
3236
3825
  }
3237
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
+
3238
3839
  // #endregion
3239
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
3240
3841
  @mixin k-css-vars($map) {
@@ -3246,199 +3847,294 @@ $kendo-palettes: (
3246
3847
  }
3247
3848
 
3248
3849
  // #endregion
3249
- // #region @import "./_variables.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/color-system/_variables.scss
3250
- // Color constants
3251
-
3252
- /// The color white.
3253
- /// Note: you cannot change this value.
3254
- /// @type Color
3255
- /// @group color-system
3256
- $kendo-color-white: #ffffff; // 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
3257
3854
 
3258
- /// The color black.
3259
- /// Note: you cannot change this value.
3260
- /// @type Color
3261
- /// @group color-system
3262
- $kendo-color-black: #000000; // stylelint-disable-line scss/dollar-variable-default
3855
+ // Config
3856
+ $kendo-enable-color-system: false !default;
3263
3857
 
3264
- /// The color transparent.
3265
- /// Note: you cannot change this value.
3266
- /// @type Color
3267
- /// @group color-system
3268
- $kendo-color-rgba-transparent: rgba( 0, 0, 0, 0 ); // stylelint-disable-line scss/dollar-variable-default
3269
-
3270
- /// A gradient that goes from transparent to black.
3271
- /// Note: you cannot change this value.
3272
- /// @type Gradient
3273
- /// @group color-system
3274
- $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;
3275
4026
 
3276
- /// A gradient that goes from transparent to white.
3277
- /// Note: you cannot change this value.
3278
- /// @type Gradient
4027
+ /// The global default Colors map.
3279
4028
  /// @group color-system
3280
- $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);
3281
4031
 
3282
- /// A gradient that goes from black to transparent.
3283
- /// Note: you cannot change this value.
3284
- /// @type Gradient
3285
- /// @group color-system
3286
- $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);
3287
4034
 
3288
- /// A gradient that goes from white to transparent.
3289
- /// Note: you cannot change this value.
3290
- /// @type Gradient
3291
- /// @group color-system
3292
- $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
+ }
3293
4045
 
3294
- /// A gradient that cycles through the colors of the rainbow.
3295
- /// Note: you cannot change this value.
3296
- /// @type Gradient
3297
- /// @group color-system
3298
- $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
+ }
3299
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;
3300
4063
 
3301
4064
  // Root styles
3302
- $kendo-body-bg: $kendo-color-white !default;
3303
- $kendo-body-text: k-get-theme-color-var( neutral-160 ) !default;
4065
+ $kendo-body-bg: null !default;
4066
+ $kendo-body-text: null !default;
3304
4067
 
3305
4068
  // Component styles
3306
- $kendo-component-bg: $kendo-body-bg !default;
3307
- $kendo-component-text: $kendo-body-text !default;
3308
- $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;
3309
4072
 
3310
4073
  // States styles
3311
- $kendo-hover-bg: k-get-theme-color-var( neutral-20 ) !default;
3312
- $kendo-hover-text: k-get-theme-color-var( neutral-190 ) !default;
3313
- $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;
3314
4077
 
3315
- $kendo-selected-bg: k-get-theme-color-var( neutral-30 ) !default;
3316
- $kendo-selected-text: k-get-theme-color-var( neutral-160 ) !default;
3317
- $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;
3318
4081
 
3319
- $kendo-selected-hover-bg: k-get-theme-color-var( neutral-40 ) !default;
3320
- $kendo-selected-hover-text: k-get-theme-color-var( neutral-190 ) !default;
3321
- $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;
3322
4085
 
3323
- $kendo-focus-outline: k-get-theme-color-var( neutral-130 ) !default;
4086
+ $kendo-focus-outline: null !default;
3324
4087
 
3325
- $kendo-subtle-text: k-get-theme-color-var( neutral-130 ) !default;
4088
+ $kendo-subtle-text: null !default;
3326
4089
 
3327
4090
  // Link
3328
- $kendo-link-text: k-get-theme-color-var( primary-100 ) !default;
3329
- $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;
3330
4093
 
3331
4094
  // Validator
3332
- $kendo-invalid-bg: initial !default;
3333
- $kendo-invalid-text: k-get-theme-color-var( error-190 ) !default;
3334
- $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;
3335
4098
  $kendo-invalid-shadow: null !default;
3336
4099
 
3337
4100
  // Disabled Styling
3338
- $kendo-disabled-bg: k-get-theme-color-var( neutral-20 ) !default;
3339
- $kendo-disabled-text: k-get-theme-color-var( neutral-90 ) !default;
3340
- $kendo-disabled-border: transparent !default;
4101
+ $kendo-disabled-bg: null !default;
4102
+ $kendo-disabled-text: null !default;
4103
+ $kendo-disabled-border: null !default;
3341
4104
 
3342
4105
  // Loading
3343
- $kendo-loading-bg: $kendo-component-bg !default;
3344
- $kendo-loading-text: currentColor !default;
3345
-
3346
-
3347
- // Theme colors
3348
- $kendo-theme-colors: (
3349
- primary: (
3350
- text: k-get-theme-color-var( primary-130 ),
3351
- bg: k-get-theme-color-var( primary-20 ),
3352
- border: k-get-theme-color-var( primary-20 )
3353
- ),
3354
- info: (
3355
- text: k-get-theme-color-var( info-190 ),
3356
- bg: k-get-theme-color-var( info-20 ),
3357
- border: k-get-theme-color-var( info-20 )
3358
- ),
3359
- success: (
3360
- text: k-get-theme-color-var( success-190 ),
3361
- bg: k-get-theme-color-var( success-20 ),
3362
- border: k-get-theme-color-var( success-20 )
3363
- ),
3364
- warning: (
3365
- text: k-get-theme-color-var( neutral-160 ),
3366
- bg: k-get-theme-color-var( warning-20 ),
3367
- border: k-get-theme-color-var( warning-20 )
3368
- ),
3369
- error: (
3370
- text: k-get-theme-color-var( error-190 ),
3371
- bg: k-get-theme-color-var( error-20 ),
3372
- border: k-get-theme-color-var( error-20 )
3373
- )
3374
- ) !default;
4106
+ $kendo-loading-bg: null !default;
4107
+ $kendo-loading-text: null !default;
3375
4108
 
4109
+ $kendo-palettes: () !default;
4110
+ $kendo-theme-colors: () !default;
3376
4111
 
3377
4112
  @mixin color-system-styles() {
3378
4113
  :root {
3379
- @include k-css-vars( $kendo-palettes );
3380
- @include k-css-vars( $kendo-theme-colors );
3381
-
3382
- --kendo-body-bg: #{$kendo-body-bg};
3383
- --kendo-body-text: #{$kendo-body-text};
3384
-
3385
- --kendo-component-bg: #{$kendo-component-bg};
3386
- --kendo-component-text: #{$kendo-component-text};
3387
- --kendo-component-border: #{$kendo-component-border};
3388
-
3389
- --kendo-link-text: #{$kendo-link-text};
3390
- --kendo-link-hover-text: #{$kendo-link-hover-text};
3391
-
3392
- --kendo-disabled-bg: #{$kendo-disabled-bg};
3393
- --kendo-disabled-text: #{$kendo-disabled-text};
3394
- --kendo-disabled-border: #{$kendo-disabled-border};
3395
-
3396
- --kendo-hover-bg: #{$kendo-hover-bg};
3397
- --kendo-hover-text: #{$kendo-hover-text};
3398
- --kendo-hover-border: #{$kendo-hover-border};
3399
-
3400
- --kendo-selected-bg: #{$kendo-selected-bg};
3401
- --kendo-selected-text: #{$kendo-selected-text};
3402
- --kendo-selected-border: #{$kendo-selected-border};
3403
-
3404
- --kendo-selected-hover-bg: #{$kendo-selected-hover-bg};
3405
- --kendo-selected-hover-text: #{$kendo-selected-hover-text};
3406
- --kendo-selected-hover-border: #{$kendo-selected-hover-border};
3407
-
3408
- --kendo-focus-outline: #{$kendo-focus-outline};
3409
-
3410
- --kendo-subtle-text: #{$kendo-subtle-text};
3411
-
3412
- --kendo-invalid-bg: #{$kendo-invalid-bg};
3413
- --kendo-invalid-text: #{$kendo-invalid-text};
3414
- --kendo-invalid-border: #{$kendo-invalid-border};
3415
- --kendo-invalid-shadow: #{$kendo-invalid-shadow};
3416
-
3417
- --kendo-border-radius-sm: #{$kendo-border-radius-sm};
3418
- --kendo-border-radius-md: #{$kendo-border-radius-md};
3419
- --kendo-border-radius-lg: #{$kendo-border-radius-lg};
3420
- }
4114
+ @include k-css-vars($kendo-palettes);
4115
+ @include k-css-vars($kendo-theme-colors);
3421
4116
 
3422
- // Text colors
3423
- @each $theme-color, $color-props in $kendo-theme-colors {
3424
- $_color: k-map-get( $color-props, text );
4117
+ // Text colors
4118
+ @each $theme-color, $color-props in $kendo-theme-colors {
4119
+ $_color: k-map-get($color-props, text);
3425
4120
 
3426
- .k-text-#{$theme-color},
3427
- .k-color-#{$theme-color} {
3428
- color: var( --kendo-text-#{$theme-color}, #{$_color} );
3429
- }
3430
- .\!k-text-#{$theme-color},
3431
- .\!k-color-#{$theme-color} {
3432
- color: var( --kendo-text-#{$theme-color}, #{$_color} ) !important; // stylelint-disable-line declaration-no-important
3433
- }
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
+ }
3434
4129
 
3435
- .k-bg-#{$theme-color} {
3436
- background-color: var( --kendo-bg-#{$theme-color}, #{$_color} );
3437
- }
3438
- .\!k-bg-#{$theme-color} {
3439
- 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
+ }
3440
4136
  }
3441
- };
4137
+ }
3442
4138
  }
3443
4139
 
3444
4140
  // #endregion
@@ -3839,6 +4535,7 @@ $kendo-components: (
3839
4535
  "pdf-viewer",
3840
4536
  "scroller",
3841
4537
  "scrollview",
4538
+ "prompt",
3842
4539
 
3843
4540
  // Dataviz
3844
4541
  "dataviz",
@@ -4177,6 +4874,7 @@ $_kendo-dependencies: (
4177
4874
  ),
4178
4875
  popup: (),
4179
4876
  progressbar: (),
4877
+ prompt: (),
4180
4878
  radio: (),
4181
4879
  rating: (
4182
4880
  "icon"
@@ -4839,9 +5537,17 @@ $_imported: () !default;
4839
5537
  }
4840
5538
  }
4841
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
+ }
4842
5546
 
5547
+ // #endregion
4843
5548
 
4844
5549
  @mixin kendo-core--styles() {
5550
+ @include kendo-core--styles--colors();
4845
5551
  @include kendo-core--styles--accessibility();
4846
5552
  @include kendo-core--styles--asp-fallback();
4847
5553
  @include kendo-core--styles--layout();
@@ -5011,6 +5717,73 @@ $kendo-zindex-loading: 100 !default;
5011
5717
 
5012
5718
  // #endregion
5013
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
+
5014
5787
  // Expose
5015
5788
  @include exports("kendo-core-styles") {
5016
5789
  @include kendo-core--styles();
@@ -5947,12 +6720,10 @@ $kendo-zindex-loading: 100 !default;
5947
6720
  // #region @import "@progress/kendo-theme-default/scss/common/_indicators.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-default/scss/common/_indicators.scss
5948
6721
  @include exports( "common/indicators/current-time" ) {
5949
6722
 
5950
- $kendo-current-time-width: 1px !default;
5951
6723
  $kendo-current-time-color: #ff0000 !default;
5952
6724
 
5953
6725
  // Layout
5954
6726
  .k-current-time {
5955
- width: $kendo-current-time-width;
5956
6727
  position: absolute;
5957
6728
 
5958
6729
  &.k-current-time-arrow-left,
@@ -14818,11 +15589,19 @@ $kendo-message-box-link-text-decoration: underline !default;
14818
15589
 
14819
15590
  @each $color-name, $color in $kendo-theme-colors {
14820
15591
  .k-messagebox-#{$color-name} {
14821
- @include fill(
14822
- k-color-level( $color, $kendo-message-box-text-level ),
14823
- k-color-level( $color, $kendo-message-box-bg-level ),
14824
- k-color-level( $color, $kendo-message-box-border-level )
14825
- );
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
+ }
14826
15605
  }
14827
15606
  }
14828
15607
 
@@ -15487,7 +16266,7 @@ $kendo-checkbox-hover-border: null !default;
15487
16266
  $kendo-checkbox-checked-bg: $kendo-color-primary !default;
15488
16267
  /// The text color of the checked CheckBox.
15489
16268
  /// @group checkbox
15490
- $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;
15491
16270
  /// The border color of the checked CheckBox.
15492
16271
  /// @group checkbox
15493
16272
  $kendo-checkbox-checked-border: $kendo-checkbox-checked-bg !default;
@@ -15513,7 +16292,7 @@ $kendo-checkbox-focus-shadow: 0 0 0 2px rgba( black, .06 ) !default;
15513
16292
  $kendo-checkbox-focus-checked-border: null !default;
15514
16293
  /// The box shadow of the focused and checked CheckBox.
15515
16294
  /// @group checkbox
15516
- $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;
15517
16296
 
15518
16297
  /// The background color of the disabled CheckBox.
15519
16298
  /// @group checkbox
@@ -16313,7 +17092,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
16313
17092
  &.k-selected:hover,
16314
17093
  &.k-selected.k-hover {
16315
17094
  color: $kendo-list-item-selected-text;
16316
- 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 ));
16317
17096
  }
16318
17097
  }
16319
17098
 
@@ -17264,7 +18043,7 @@ $kendo-table-group-row-border: $kendo-table-header-border !default;
17264
18043
 
17265
18044
  /// Background color of alternating rows in table.
17266
18045
  /// @group table
17267
- $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;
17268
18047
  /// Text color of alternating rows in table.
17269
18048
  /// @group table
17270
18049
  $kendo-table-alt-row-text: null !default;
@@ -17275,7 +18054,7 @@ $kendo-table-alt-row-border: null !default;
17275
18054
 
17276
18055
  /// Background color of hovered rows in table.
17277
18056
  /// @group table
17278
- $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;
17279
18058
  /// Text color of hovered rows in table.
17280
18059
  /// @group table
17281
18060
  $kendo-table-hover-text: null !default;
@@ -17300,7 +18079,7 @@ $kendo-table-focus-shadow: $kendo-list-item-focus-shadow !default;
17300
18079
 
17301
18080
  /// Background color of selected rows in table.
17302
18081
  /// @group table
17303
- $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;
17304
18083
  /// Text color of selected rows in table.
17305
18084
  /// @group table
17306
18085
  $kendo-table-selected-text: null !default;
@@ -18004,7 +18783,7 @@ $kendo-avatar-theme-colors: $kendo-theme-colors !default;
18004
18783
  @each $name, $color in $kendo-avatar-theme-colors {
18005
18784
  .k-avatar-solid-#{$name} {
18006
18785
  border-color: $color;
18007
- color: k-contrast-legacy( $color );
18786
+ color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
18008
18787
  background-color: $color;
18009
18788
  }
18010
18789
  }
@@ -18357,7 +19136,7 @@ $kendo-badge-sizes: (
18357
19136
  @each $name, $color in $kendo-theme-colors {
18358
19137
  .k-badge-solid-#{$name} {
18359
19138
  border-color: $color;
18360
- color: k-contrast-legacy( $color );
19139
+ color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
18361
19140
  background-color: $color;
18362
19141
  }
18363
19142
  }
@@ -18557,7 +19336,7 @@ $kendo-button-bg: $kendo-base-bg !default;
18557
19336
  $kendo-button-text: $kendo-base-text !default;
18558
19337
  /// The base border color of the Button.
18559
19338
  /// @group button
18560
- $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;
18561
19340
  /// The base background gradient of the Button.
18562
19341
  /// @group button
18563
19342
  $kendo-button-gradient: $kendo-base-gradient !default;
@@ -18567,13 +19346,13 @@ $kendo-button-shadow: null !default;
18567
19346
 
18568
19347
  /// The base background of the hovered Button.
18569
19348
  /// @group button
18570
- $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;
18571
19350
  /// The base text color of the hovered Button.
18572
19351
  /// @group button
18573
19352
  $kendo-button-hover-text: null !default;
18574
19353
  /// The base border color of the hovered Button.
18575
19354
  /// @group button
18576
- $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;
18577
19356
  /// The base background gradient of the hovered Button.
18578
19357
  /// @group button
18579
19358
  $kendo-button-hover-gradient: null !default;
@@ -18583,13 +19362,13 @@ $kendo-button-hover-shadow: null !default;
18583
19362
 
18584
19363
  /// The base background color of the active Button.
18585
19364
  /// @group button
18586
- $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;
18587
19366
  /// The base text color of the active Button.
18588
19367
  /// @group button
18589
19368
  $kendo-button-active-text: null !default;
18590
19369
  /// The base border color of the active Button.
18591
19370
  /// @group button
18592
- $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;
18593
19372
  /// The base background gradient of the active Button.
18594
19373
  /// @group button
18595
19374
  $kendo-button-active-gradient: null !default;
@@ -18602,7 +19381,7 @@ $kendo-button-active-shadow: null !default;
18602
19381
  $kendo-button-selected-bg: $kendo-color-primary !default;
18603
19382
  /// The text color of the selected Button.
18604
19383
  /// @group button
18605
- $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;
18606
19385
  /// The border color of the selected Button.
18607
19386
  /// @group button
18608
19387
  $kendo-button-selected-border: $kendo-button-selected-bg !default;
@@ -18627,7 +19406,7 @@ $kendo-button-focus-border: null !default;
18627
19406
  $kendo-button-focus-gradient: null !default;
18628
19407
  /// The base shadow of the focused Button.
18629
19408
  /// @group button
18630
- $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;
18631
19410
 
18632
19411
  /// The base background of the disabled Button.
18633
19412
  /// @group button
@@ -18814,7 +19593,7 @@ $kendo-chip-solid-text: $kendo-button-text !default;
18814
19593
  $kendo-chip-solid-border: $kendo-button-border !default;
18815
19594
  /// The base shadow of the solid Chip.
18816
19595
  /// @group chip
18817
- $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;
18818
19597
  /// The base gradient of the solid Chip.
18819
19598
  /// @group chip
18820
19599
  $kendo-chip-solid-gradient: $kendo-button-gradient !default;
@@ -18851,14 +19630,14 @@ $kendo-chip-outline-text: $kendo-chip-solid-text !default;
18851
19630
  $kendo-chip-outline-border: $kendo-chip-outline-text !default;
18852
19631
  /// The base shadow of the outline Chip.
18853
19632
  /// @group chip
18854
- $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;
18855
19634
 
18856
19635
  /// The base background color of the hovered outline Chip.
18857
19636
  /// @group chip
18858
19637
  $kendo-chip-outline-hover-bg: $kendo-chip-outline-text !default;
18859
19638
  /// The base text color of the hovered outline Chip.
18860
19639
  /// @group chip
18861
- $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;
18862
19641
 
18863
19642
  /// The base background color of the selected outline Chip.
18864
19643
  /// @group chip
@@ -19087,24 +19866,24 @@ $kendo-chip-list-sizes: (
19087
19866
  }
19088
19867
  } @else {
19089
19868
  @include fill(
19090
- k-try-shade( $color, 65% ),
19091
- k-try-tint( $color, 80% ),
19092
- 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% )),
19093
19872
  $kendo-chip-solid-gradient
19094
19873
  );
19095
19874
 
19096
19875
  &:focus,
19097
19876
  &.k-focus {
19098
- @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 )) );
19099
19878
  }
19100
19879
 
19101
19880
  &:hover,
19102
19881
  &.k-hover {
19103
- @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% )) );
19104
19883
  }
19105
19884
 
19106
19885
  &.k-selected {
19107
- @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% )) );
19108
19887
  }
19109
19888
  }
19110
19889
  }
@@ -19142,54 +19921,56 @@ $kendo-chip-list-sizes: (
19142
19921
  }
19143
19922
  } @else if ($name == "warning") {
19144
19923
  @include fill(
19145
- if( $kendo-is-dark-theme, k-color-tint($color, 25%), $kendo-chip-outline-text),
19146
- if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white ),
19147
- 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))
19148
19927
  );
19149
19928
 
19150
19929
  &:focus,
19151
19930
  &.k-focus {
19152
- @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 ))) );
19153
19932
  }
19154
19933
 
19155
19934
  &:hover,
19156
19935
  &.k-hover {
19157
19936
  @include fill(
19158
- $color: if( $kendo-is-dark-theme, k-contrast-legacy( $color ), k-try-shade( $color, 80% ) ) ,
19159
- $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))
19160
19939
  );
19161
19940
  }
19162
19941
 
19163
19942
  &.k-selected {
19164
19943
  @include fill(
19165
- $color: if( $kendo-is-dark-theme, k-contrast-legacy( $color ), k-try-shade( $color, 80% ) ) ,
19166
- $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))
19167
19946
  );
19168
19947
  }
19169
19948
  } @else {
19170
19949
  @include fill(
19171
- k-try-shade( $color, 25% ),
19172
- if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white ),
19173
- 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% ))
19174
19953
  );
19175
19954
 
19176
19955
  &:focus,
19177
19956
  &.k-focus {
19178
- @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 ))) );
19179
19958
  }
19180
19959
 
19181
19960
  &:hover,
19182
19961
  &.k-hover {
19183
19962
  @include fill(
19184
- $color: k-contrast-legacy( k-try-shade( $color, 25% ) ),
19185
- $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% ))
19186
19966
  );
19187
19967
  }
19188
19968
 
19189
19969
  &.k-selected {
19190
19970
  @include fill(
19191
- $color: k-contrast-legacy( k-try-shade( $color, 25% ) ),
19192
- $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% ))
19193
19974
  );
19194
19975
  }
19195
19976
  }
@@ -20194,7 +20975,7 @@ $kendo-skeleton-circle-border-radius: 9999px !default;
20194
20975
 
20195
20976
  /// The background color of the Skeleton item.
20196
20977
  /// @group skeleton
20197
- $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;
20198
20979
  /// The background color of the Skeleton wave animation.
20199
20980
  /// @group skeleton
20200
20981
  $kendo-skeleton-wave-bg: rgba( black, .04 ) !default;
@@ -20885,17 +21666,17 @@ $_kendo-module-meta: (
20885
21666
 
20886
21667
  @each $name, $color in $kendo-button-theme-colors {
20887
21668
  @if ($name != "base") {
20888
- $_button-text: k-contrast-legacy( $color );
20889
- $_button-bg: if( $kendo-solid-button-shade-bg-amount, k-meta-call( $_shade-fn, $color, $kendo-solid-button-shade-bg-amount ), null );
20890
- $_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 ));
20891
21672
 
20892
21673
  $_button-hover-text: null;
20893
- $_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 );
20894
- $_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 ));
20895
21676
 
20896
21677
  $_button-active-text: null;
20897
- $_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 );
20898
- $_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 ));
20899
21680
 
20900
21681
  .k-button-solid-#{$name} {
20901
21682
  @include fill(
@@ -20919,7 +21700,7 @@ $_kendo-module-meta: (
20919
21700
  &:focus,
20920
21701
  &.k-focus {
20921
21702
  @if ( $kendo-solid-button-shadow ) {
20922
- @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 );
20923
21704
  }
20924
21705
  }
20925
21706
 
@@ -20963,44 +21744,72 @@ $_kendo-module-meta: (
20963
21744
  .k-button-outline-#{$name} {
20964
21745
  @include box-shadow( none );
20965
21746
  border-color: currentColor;
20966
- color: $color;
21747
+ color: if($kendo-enable-color-system, k-color( #{$name}-on-surface ), $color);
20967
21748
  background-color: transparent;
20968
21749
 
20969
21750
  // Hover state
20970
21751
  &:hover,
20971
21752
  &.k-hover {
20972
- @include fill(
20973
- k-contrast-legacy( $color ),
20974
- $color,
20975
- $color
20976
- );
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
+ }
20977
21766
  }
20978
21767
 
20979
21768
  // Focus state
20980
21769
  &:focus,
20981
21770
  &.k-focus {
20982
21771
  @if $kendo-outline-button-shadow {
20983
- @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
+ }
20984
21777
  }
20985
21778
  }
20986
21779
 
20987
21780
  // Active state
20988
21781
  &:active,
20989
21782
  &.k-active {
20990
- @include fill(
20991
- k-contrast-legacy( $color ),
20992
- $color,
20993
- $color
20994
- );
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
+ }
20995
21796
  }
20996
21797
 
20997
21798
  // Selected
20998
21799
  &.k-selected {
20999
- @include fill(
21000
- k-contrast-legacy( $color ),
21001
- $color,
21002
- $color
21003
- );
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
+ }
21004
21813
  }
21005
21814
 
21006
21815
  // Disabled state
@@ -21034,26 +21843,42 @@ $_kendo-module-meta: (
21034
21843
  // Hover
21035
21844
  &:hover,
21036
21845
  &.k-hover {
21037
- 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
+ }
21038
21851
  }
21039
21852
 
21040
21853
  // Focus
21041
21854
  &:focus,
21042
21855
  &.k-focus {
21043
21856
  @if ( $kendo-link-button-shadow ) {
21044
- @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
+ }
21045
21862
  }
21046
21863
  }
21047
21864
 
21048
21865
  // Active
21049
21866
  &:active,
21050
21867
  &.k-active {
21051
- 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
+ }
21052
21873
  }
21053
21874
 
21054
21875
  // Selected
21055
21876
  &.k-selected {
21056
- 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
+ }
21057
21882
  }
21058
21883
 
21059
21884
  // Disabled state
@@ -21099,7 +21924,6 @@ $_kendo-module-meta: (
21099
21924
  @mixin kendo-button--theme() {
21100
21925
  @include kendo-button--theme-base();
21101
21926
  }
21102
-
21103
21927
  // #endregion
21104
21928
 
21105
21929
 
@@ -21208,7 +22032,7 @@ $kendo-menu-item-expanded-text: $kendo-component-text !default;
21208
22032
  $kendo-menu-item-expanded-border: null !default;
21209
22033
  $kendo-menu-item-expanded-gradient: null !default;
21210
22034
 
21211
- $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;
21212
22036
 
21213
22037
  $kendo-menu-separator-spacing: k-map-get( $kendo-spacing, 1 ) !default;
21214
22038
 
@@ -22720,7 +23544,7 @@ $kendo-input-outline-bg: null !default;
22720
23544
  $kendo-input-outline-text: null !default;
22721
23545
  /// The border color of the outline Input components.
22722
23546
  /// @group input
22723
- $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;
22724
23548
 
22725
23549
  /// The background color of the outline hovered Input components.
22726
23550
  /// @group input
@@ -22730,7 +23554,7 @@ $kendo-input-outline-hover-bg: null !default;
22730
23554
  $kendo-input-outline-hover-text: null !default;
22731
23555
  /// The border color of the outline hovered Input components.
22732
23556
  /// @group input
22733
- $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;
22734
23558
 
22735
23559
  /// The background color of the outline focused Input components.
22736
23560
  /// @group input
@@ -22823,11 +23647,17 @@ $kendo-input-spinner-icon-offset: null !default;
22823
23647
 
22824
23648
  /// The color of the Input separator.
22825
23649
  /// @group input
22826
- $kendo-input-separator-color: $kendo-input-text !default;
23650
+ $kendo-input-separator-text: $kendo-input-border !default;
22827
23651
  /// The opacity of the Input separator.
22828
23652
  /// @group input
22829
23653
  $kendo-input-separator-opacity: .5 !default;
22830
23654
 
23655
+ /// The text color of the Input prefix.
23656
+ /// @group input
23657
+ $kendo-input-prefix-text: $kendo-subtle-text !default;
23658
+ /// The text color of the Input suffix.
23659
+ /// @group input
23660
+ $kendo-input-suffix-text: $kendo-subtle-text !default;
22831
23661
 
22832
23662
  /// The border color of the invalid Input components.
22833
23663
  /// @group input
@@ -22836,6 +23666,13 @@ $kendo-input-invalid-border: $kendo-invalid-border !default;
22836
23666
  /// @group input
22837
23667
  $kendo-input-invalid-shadow: $kendo-invalid-shadow !default;
22838
23668
 
23669
+ /// The border color of the valid Input components.
23670
+ /// @group input
23671
+ $kendo-input-valid-border: $kendo-valid-border !default;
23672
+ /// The shadow of the valid Input components.
23673
+ /// @group input
23674
+ $kendo-input-valid-shadow: $kendo-valid-shadow !default;
23675
+
22839
23676
  /// The background color of the Picker components.
22840
23677
  /// @group picker
22841
23678
  $kendo-picker-bg: $kendo-button-bg !default;
@@ -22908,14 +23745,14 @@ $kendo-picker-outline-bg: null !default;
22908
23745
  $kendo-picker-outline-text: $kendo-button-text !default;
22909
23746
  /// The border color of the outline Picker components.
22910
23747
  /// @group picker
22911
- $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;
22912
23749
 
22913
23750
  /// The background color of the outline hovered Picker components.
22914
23751
  /// @group picker
22915
23752
  $kendo-picker-outline-hover-bg: $kendo-picker-outline-text !default;
22916
23753
  /// The text color of the outline hovered Picker components.
22917
23754
  /// @group picker
22918
- $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;
22919
23756
  /// The border color of the outline hovered Picker components.
22920
23757
  /// @group picker
22921
23758
  $kendo-picker-outline-hover-border: $kendo-picker-outline-hover-bg !default;
@@ -22955,13 +23792,13 @@ $kendo-picker-flat-border: $kendo-button-border !default;
22955
23792
 
22956
23793
  /// The background color of the flat hovered Picker components.
22957
23794
  /// @group picker
22958
- $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;
22959
23796
  /// The text color of the flat hovered Picker components.
22960
23797
  /// @group picker
22961
23798
  $kendo-picker-flat-hover-text: null !default;
22962
23799
  /// The border color of the flat hovered Picker components.
22963
23800
  /// @group picker
22964
- $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;
22965
23802
 
22966
23803
  /// The background color of the flat focused Picker components.
22967
23804
  /// @group picker
@@ -23028,10 +23865,10 @@ $kendo-tooltip-callout-size: 6px !default;
23028
23865
 
23029
23866
  /// The default background of the Tooltip.
23030
23867
  /// @group tooltip
23031
- $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;
23032
23869
  /// The default text color of the Tooltip.
23033
23870
  /// @group tooltip
23034
- $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;
23035
23872
  /// The default border color of the Tooltip.
23036
23873
  /// @group tooltip
23037
23874
  $kendo-tooltip-border: $kendo-tooltip-bg !default;
@@ -23045,7 +23882,7 @@ $kendo-tooltip-shadow: k-elevation(2) !default;
23045
23882
 
23046
23883
  @each $name, $color in $colors {
23047
23884
  $_theme: k-map-merge(( $name: (
23048
- color: k-contrast-legacy( $color ),
23885
+ color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color )),
23049
23886
  background-color: $color,
23050
23887
  border: $color,
23051
23888
  )), $_theme );
@@ -23060,6 +23897,7 @@ $kendo-tooltip-theme-colors: $kendo-theme-colors !default;
23060
23897
  /// The generated theme colors map for the Tooltip.
23061
23898
  /// @group tooltip
23062
23899
  $kendo-tooltip-theme: tooltip-theme( $kendo-tooltip-theme-colors ) !default;
23900
+
23063
23901
  // #endregion
23064
23902
  // #region @import "../typography/_variables.scss"; -> scss/typography/_variables.scss
23065
23903
  // File already imported_once. Skipping output.
@@ -23329,7 +24167,7 @@ $kendo-fieldset-border: null !default;
23329
24167
  $kendo-fieldset-legend-bg: null !default;
23330
24168
  /// The text color of the Form legend.
23331
24169
  /// @group form
23332
- $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;
23333
24171
  /// The border color of the Form legend.
23334
24172
  /// @group form
23335
24173
  $kendo-fieldset-legend-border: null !default;
@@ -24427,12 +25265,20 @@ $_kendo-module-meta: (
24427
25265
  .k-input-suffix {
24428
25266
  border-color: inherit;
24429
25267
  display: flex;
24430
- flex-flow: row nowrap;
24431
25268
  align-items: center;
24432
25269
  flex: none;
24433
25270
 
24434
25271
  > * {
24435
25272
  flex-shrink: 0;
25273
+ border: none;
25274
+ }
25275
+
25276
+ &-vertical {
25277
+ flex-flow: column wrap;
25278
+ }
25279
+
25280
+ &-horizontal {
25281
+ flex-flow: row wrap;
24436
25282
  }
24437
25283
  }
24438
25284
 
@@ -24440,21 +25286,32 @@ $_kendo-module-meta: (
24440
25286
  // Input separator
24441
25287
  .k-input-separator {
24442
25288
  margin: 0;
24443
- width: 0;
24444
- height: $kendo-icon-size;
24445
- border-width: 0 0 0 1px;
24446
25289
  border-style: solid;
24447
25290
  border-color: inherit;
25291
+ border-width: 0 0 0 1px;
25292
+ height: $kendo-icon-size;
24448
25293
  align-self: center;
25294
+
25295
+ &-horizontal {
25296
+ height: auto;
25297
+ margin-inline: $kendo-input-md-padding-y;
25298
+ align-self: stretch;
25299
+ border-width: 1px 0 0;
25300
+ }
25301
+
25302
+ &-vertical {
25303
+ height: auto;
25304
+ margin-block: $kendo-input-md-padding-y;
25305
+ align-self: stretch;
25306
+ border-width: 0 0 0 1px;
25307
+ }
24449
25308
  }
24450
25309
 
24451
25310
 
24452
25311
  // Input with icon styles
24453
25312
  .k-input-icon,
24454
25313
  .k-input-validation-icon,
24455
- .k-input-loading-icon,
24456
- .k-input-prefix > .k-icon,
24457
- .k-input-suffix > .k-icon {
25314
+ .k-input-loading-icon {
24458
25315
  flex: none;
24459
25316
  align-self: center;
24460
25317
  display: inline-flex;
@@ -24672,12 +25529,24 @@ $_kendo-module-meta: (
24672
25529
  .k-input-loading-icon,
24673
25530
  .k-clear-value,
24674
25531
  .k-input-prefix > .k-icon,
24675
- .k-input-suffix > .k-icon {
25532
+ .k-input-prefix > .k-input-prefix-text,
25533
+ .k-input-suffix > .k-icon,
25534
+ .k-input-suffix > .k-input-suffix-text {
24676
25535
  padding-block: $_padding-y;
24677
25536
  padding-inline: $_padding-y;
24678
25537
  box-sizing: content-box;
24679
25538
  }
24680
25539
 
25540
+ .k-input-separator {
25541
+ &-horizontal {
25542
+ margin-inline: $_padding-y;
25543
+ }
25544
+
25545
+ &-vertical {
25546
+ margin-block: $_padding-y;
25547
+ }
25548
+ }
25549
+
24681
25550
  &.k-icon-picker .k-input-inner {
24682
25551
  width: calc( #{ $_line-height * 1em } );
24683
25552
  height: calc( #{ $_line-height * 1em } );
@@ -24821,6 +25690,35 @@ $_kendo-module-meta: (
24821
25690
  }
24822
25691
  }
24823
25692
 
25693
+ // Valid
25694
+ &.k-valid {
25695
+ @include fill( $border: $kendo-input-valid-border );
25696
+
25697
+ .k-input-validation-icon {
25698
+ color: $kendo-valid-text;
25699
+ }
25700
+
25701
+ &:focus,
25702
+ &.k-focus {
25703
+ @include focus-indicator( $kendo-input-valid-shadow );
25704
+ }
25705
+ &:focus-within {
25706
+ @include focus-indicator( $kendo-input-valid-shadow );
25707
+ }
25708
+ }
25709
+
25710
+ // Prefix & Suffix
25711
+ .k-input-prefix {
25712
+ color: $kendo-input-prefix-text;
25713
+ }
25714
+
25715
+ .k-input-suffix {
25716
+ color: $kendo-input-suffix-text;
25717
+ }
25718
+
25719
+ .k-input-separator {
25720
+ border-color: $kendo-input-separator-text;
25721
+ }
24824
25722
  }
24825
25723
 
24826
25724
 
@@ -24897,6 +25795,23 @@ $_kendo-module-meta: (
24897
25795
  @include focus-indicator( $kendo-input-invalid-shadow );
24898
25796
  }
24899
25797
  }
25798
+
25799
+ // Valid
25800
+ &.k-valid {
25801
+ @include fill( $border: $kendo-input-valid-border );
25802
+
25803
+ .k-input-validation-icon {
25804
+ color: $kendo-valid-text;
25805
+ }
25806
+
25807
+ &:focus,
25808
+ &.k-focus {
25809
+ @include focus-indicator( $kendo-input-valid-shadow );
25810
+ }
25811
+ &:focus-within {
25812
+ @include focus-indicator( $kendo-input-valid-shadow );
25813
+ }
25814
+ }
24900
25815
  }
24901
25816
 
24902
25817
 
@@ -24982,6 +25897,35 @@ $_kendo-module-meta: (
24982
25897
  }
24983
25898
  }
24984
25899
 
25900
+ // Valid
25901
+ &.k-valid {
25902
+ @include fill( $border: $kendo-input-valid-border );
25903
+
25904
+ .k-input-validation-icon {
25905
+ color: $kendo-valid-text;
25906
+ }
25907
+
25908
+ &:focus,
25909
+ &.k-focus {
25910
+ @include focus-indicator( $kendo-input-valid-shadow );
25911
+ }
25912
+ &:focus-within {
25913
+ @include focus-indicator( $kendo-input-valid-shadow );
25914
+ }
25915
+ }
25916
+
25917
+ // Prefix & Suffix
25918
+ .k-input-prefix {
25919
+ color: $kendo-input-prefix-text;
25920
+ }
25921
+
25922
+ .k-input-suffix {
25923
+ color: $kendo-input-suffix-text;
25924
+ }
25925
+
25926
+ .k-input-separator {
25927
+ border-color: $kendo-input-separator-text;
25928
+ }
24985
25929
  }
24986
25930
 
24987
25931
 
@@ -25064,6 +26008,23 @@ $_kendo-module-meta: (
25064
26008
  @include focus-indicator( $kendo-input-invalid-shadow );
25065
26009
  }
25066
26010
  }
26011
+
26012
+ // Valid
26013
+ &.k-valid {
26014
+ @include fill( $border: $kendo-input-valid-border );
26015
+
26016
+ .k-input-validation-icon {
26017
+ color: $kendo-valid-text;
26018
+ }
26019
+
26020
+ &:focus,
26021
+ &.k-focus {
26022
+ @include focus-indicator( $kendo-input-valid-shadow );
26023
+ }
26024
+ &:focus-within {
26025
+ @include focus-indicator( $kendo-input-valid-shadow );
26026
+ }
26027
+ }
25067
26028
  }
25068
26029
 
25069
26030
 
@@ -25135,6 +26096,36 @@ $_kendo-module-meta: (
25135
26096
  @include focus-indicator( $kendo-input-invalid-shadow );
25136
26097
  }
25137
26098
  }
26099
+
26100
+ // Valid
26101
+ &.k-valid {
26102
+ @include fill( $border: $kendo-input-valid-border );
26103
+
26104
+ .k-input-validation-icon {
26105
+ color: $kendo-valid-text;
26106
+ }
26107
+
26108
+ &:focus,
26109
+ &.k-focus {
26110
+ @include focus-indicator( $kendo-input-valid-shadow );
26111
+ }
26112
+ &:focus-within {
26113
+ @include focus-indicator( $kendo-input-valid-shadow );
26114
+ }
26115
+ }
26116
+
26117
+ // Prefix & Suffix
26118
+ .k-input-prefix {
26119
+ color: $kendo-input-prefix-text;
26120
+ }
26121
+
26122
+ .k-input-suffix {
26123
+ color: $kendo-input-suffix-text;
26124
+ }
26125
+
26126
+ .k-input-separator {
26127
+ border-color: $kendo-input-separator-text;
26128
+ }
25138
26129
  }
25139
26130
 
25140
26131
 
@@ -25217,6 +26208,23 @@ $_kendo-module-meta: (
25217
26208
  @include focus-indicator( $kendo-input-invalid-shadow );
25218
26209
  }
25219
26210
  }
26211
+
26212
+ // Valid
26213
+ &.k-valid {
26214
+ @include fill( $border: $kendo-input-valid-border );
26215
+
26216
+ .k-input-validation-icon {
26217
+ color: $kendo-valid-text;
26218
+ }
26219
+
26220
+ &:focus,
26221
+ &.k-focus {
26222
+ @include focus-indicator( $kendo-input-valid-shadow );
26223
+ }
26224
+ &:focus-within {
26225
+ @include focus-indicator( $kendo-input-valid-shadow );
26226
+ }
26227
+ }
25220
26228
  }
25221
26229
 
25222
26230
  }
@@ -26288,7 +27296,7 @@ $kendo-progressbar-line-height: 1 !default;
26288
27296
 
26289
27297
  /// The background color of the ProgressBar.
26290
27298
  /// @group progressbar
26291
- $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;
26292
27300
  /// The text color of the ProgressBar.
26293
27301
  /// @group progressbar
26294
27302
  $kendo-progressbar-text: $kendo-component-text !default;
@@ -26304,10 +27312,10 @@ $kendo-progressbar-gradient: null !default;
26304
27312
  $kendo-progressbar-value-bg: $kendo-color-primary !default;
26305
27313
  /// The progress text color of the ProgressBar.
26306
27314
  /// @group progressbar
26307
- $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;
26308
27316
  /// The progress border color of the ProgressBar.
26309
27317
  /// @group progressbar
26310
- $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;
26311
27319
  /// The progress background gradient of the ProgressBar.
26312
27320
  /// @group progressbar
26313
27321
  $kendo-progressbar-value-gradient: null !default;
@@ -26628,7 +27636,7 @@ $kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
26628
27636
 
26629
27637
  .k-progressbar-indeterminate {
26630
27638
  @include fill( $kendo-progressbar-indeterminate-text, $kendo-progressbar-indeterminate-bg, $kendo-progressbar-indeterminate-border );
26631
- @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)) );
26632
27640
  background-size: $kendo-progressbar-height $kendo-progressbar-height;
26633
27641
  animation: kendo-progressbar-indeterminate-animation $kendo-progressbar-animation-timing;
26634
27642
  }
@@ -27320,28 +28328,28 @@ $kendo-slider-draghandle-active-scale: 1 !default;
27320
28328
  $kendo-slider-draghandle-active-size: null !default;
27321
28329
 
27322
28330
  $kendo-slider-draghandle-bg: $kendo-color-primary !default;
27323
- $kendo-slider-draghandle-text: k-contrast-legacy( $kendo-color-primary ) !default;
27324
- $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;
27325
28333
  $kendo-slider-draghandle-gradient: null !default;
27326
28334
 
27327
- $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;
27328
28336
  $kendo-slider-draghandle-hover-text: null !default;
27329
- $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;
27330
28338
  $kendo-slider-draghandle-hover-gradient: null !default;
27331
28339
 
27332
- $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;
27333
28341
  $kendo-slider-draghandle-pressed-text: null !default;
27334
- $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;
27335
28343
  $kendo-slider-draghandle-pressed-gradient: null !default;
27336
28344
 
27337
- $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;
27338
28346
 
27339
28347
  $kendo-slider-transition-speed: .3s !default;
27340
28348
  $kendo-slider-transition-function: ease-out !default;
27341
28349
  $kendo-slider-draghandle-transition-speed: .4s !default;
27342
28350
  $kendo-slider-draghandle-transition-function: cubic-bezier(.25, .8, .25, 1) !default;
27343
28351
 
27344
- $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;
27345
28353
  $kendo-slider-selection-bg: $kendo-color-primary !default;
27346
28354
  $kendo-slider-disabled-opacity: null !default;
27347
28355
 
@@ -28749,7 +29757,7 @@ $kendo-calendar-sizes: (
28749
29757
  .k-calendar { // stylelint-disable-line
28750
29758
 
28751
29759
  $kendo-calendar-range-gap: 1px !default;
28752
- $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 ));
28753
29761
  $kendo-calendar-range-split-size: 5px !default;
28754
29762
 
28755
29763
  .k-range-start,
@@ -32755,6 +33763,22 @@ $kendo-dropdowntree-popup-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
32755
33763
  }
32756
33764
  }
32757
33765
 
33766
+ .k-multiselecttree {
33767
+ .k-input-values {
33768
+ width: auto;
33769
+ max-width: 100%;
33770
+ }
33771
+
33772
+ .k-input-inner::before {
33773
+ content: "\200b";
33774
+ width: 0px;
33775
+ overflow: hidden;
33776
+ flex: none;
33777
+ display: inline-block;
33778
+ vertical-align: top;
33779
+ }
33780
+ }
33781
+
32758
33782
  }
32759
33783
 
32760
33784
 
@@ -33390,7 +34414,7 @@ $kendo-switch-off-track-focus-border: null !default;
33390
34414
  $kendo-switch-off-track-focus-gradient: null !default;
33391
34415
  /// The ring around the track when the focused Switch is not checked.
33392
34416
  /// @group switch
33393
- $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;
33394
34418
 
33395
34419
  /// The background of the track when the disabled Switch is not checked.
33396
34420
  /// @group switch
@@ -33407,7 +34431,7 @@ $kendo-switch-off-track-disabled-gradient: null !default;
33407
34431
 
33408
34432
  /// The background of the thumb when the Switch is not checked.
33409
34433
  /// @group switch
33410
- $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;
33411
34435
  /// The text color of the thumb when the Switch is not checked.
33412
34436
  /// @group switch
33413
34437
  $kendo-switch-off-thumb-text: null !default;
@@ -33420,7 +34444,7 @@ $kendo-switch-off-thumb-gradient: $kendo-base-gradient !default;
33420
34444
 
33421
34445
  /// The background of the thumb when the hovered Switch is not checked.
33422
34446
  /// @group switch
33423
- $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;
33424
34448
  /// The text color of the thumb when the hovered Switch is not checked.
33425
34449
  /// @group switch
33426
34450
  $kendo-switch-off-thumb-hover-text: null !default;
@@ -33472,7 +34496,7 @@ $kendo-switch-on-track-focus-border: null !default;
33472
34496
  $kendo-switch-on-track-focus-gradient: null !default;
33473
34497
  /// The ring around the track wen the focused Switch is checked.
33474
34498
  /// @group switch
33475
- $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;
33476
34500
 
33477
34501
  /// The background of the track when the disabled Switch is checked.
33478
34502
  /// @group switch
@@ -33495,20 +34519,20 @@ $kendo-switch-on-thumb-bg: $kendo-color-primary !default;
33495
34519
  $kendo-switch-on-thumb-text: null !default;
33496
34520
  /// The border color of the thumb when the Switch is checked.
33497
34521
  /// @group switch
33498
- $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;
33499
34523
  /// The background gradient of the thumb when the Switch is checked.
33500
34524
  /// @group switch
33501
34525
  $kendo-switch-on-thumb-gradient: $kendo-base-gradient !default;
33502
34526
 
33503
34527
  /// The background of the thumb when the hovered Switch is checked.
33504
34528
  /// @group switch
33505
- $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;
33506
34530
  /// The text color of the thumb when the hovered Switch is checked.
33507
34531
  /// @group switch
33508
34532
  $kendo-switch-on-thumb-hover-text: null !default;
33509
34533
  /// The border color of the thumb when the hovered Switch is checked.
33510
34534
  /// @group switch
33511
- $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;
33512
34536
  /// The background gradient of the thumb when the hovered Switch is checked.
33513
34537
  /// @group switch
33514
34538
  $kendo-switch-on-thumb-hover-gradient: null !default;
@@ -33746,7 +34770,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
33746
34770
  $kendo-switch-off-track-focus-gradient
33747
34771
  );
33748
34772
  @if $kendo-enable-focus-contrast {
33749
- @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 )) );
33750
34774
  } @else {
33751
34775
  outline: $kendo-switch-off-track-focus-ring;
33752
34776
  }
@@ -33826,7 +34850,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
33826
34850
  $kendo-switch-on-track-focus-gradient
33827
34851
  );
33828
34852
  @if $kendo-enable-focus-contrast {
33829
- @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 )) );
33830
34854
  } @else {
33831
34855
  outline: $kendo-switch-on-track-focus-ring;
33832
34856
  }
@@ -33986,7 +35010,7 @@ $kendo-dropzone-border: $kendo-base-border !default;
33986
35010
  $kendo-dropzone-icon-spacing: k-map-get( $kendo-spacing, 6 ) !default;
33987
35011
  /// The text color of the DropZone icon.
33988
35012
  /// @group dropzone
33989
- $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;
33990
35014
  /// The text color of the hovered DropZone icon.
33991
35015
  /// @group dropzone
33992
35016
  $kendo-dropzone-icon-hover-text: $kendo-color-primary !default;
@@ -34718,14 +35742,14 @@ $kendo-appbar-gap: k-map-get( $kendo-spacing, 2 ) !default;
34718
35742
  $kendo-appbar-light-bg: $kendo-color-light !default;
34719
35743
  /// The text color of the AppBar based on light theme color.
34720
35744
  /// @group appbar
34721
- $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;
34722
35746
 
34723
35747
  /// The background color of the AppBar based on dark theme color.
34724
35748
  /// @group appbar
34725
35749
  $kendo-appbar-dark-bg: $kendo-color-dark !default;
34726
35750
  /// The text color of the AppBar based on dark theme colorr.
34727
35751
  /// @group appbar
34728
- $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;
34729
35753
 
34730
35754
  /// The box shadow of the AppBar.
34731
35755
  /// @group appbar
@@ -34885,7 +35909,7 @@ $kendo-appbar-bottom-box-shadow: k-elevation(4) !default;
34885
35909
  color: $kendo-appbar-dark-text;
34886
35910
  background-color: $kendo-appbar-dark-bg;
34887
35911
  } @else {
34888
- color: k-contrast-legacy( $color );
35912
+ color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
34889
35913
  background-color: $color;
34890
35914
  }
34891
35915
  }
@@ -35308,7 +36332,7 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
35308
36332
  outline: $kendo-fab-border-width $kendo-fab-outline-style $color;
35309
36333
  outline-offset: -$kendo-fab-border-width;
35310
36334
  border-color: $color;
35311
- color: k-contrast-legacy( $color );
36335
+ color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
35312
36336
  background-color: $color;
35313
36337
  }
35314
36338
  }
@@ -35317,8 +36341,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
35317
36341
  @each $name, $color in $kendo-fab-theme-colors {
35318
36342
  .k-hover.k-fab-solid-#{$name},
35319
36343
  .k-fab-solid-#{$name}:hover {
35320
- border-color: k-try-shade( $color, .5 );
35321
- 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 ));
35322
36346
  }
35323
36347
  }
35324
36348
 
@@ -35329,7 +36353,7 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
35329
36353
  @if $kendo-enable-focus-contrast {
35330
36354
  @include box-shadow( inset 0 0 0 2px currentColor );
35331
36355
  } @else {
35332
- 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 ));
35333
36357
  }
35334
36358
  }
35335
36359
  }
@@ -35340,8 +36364,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
35340
36364
  .k-selected.k-fab-solid-#{$name},
35341
36365
  .k-fab-solid-#{$name}:active {
35342
36366
  @include box-shadow($kendo-fab-active-shadow);
35343
- border-color: k-try-shade( $color, 1.5);
35344
- 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));
35345
36369
  }
35346
36370
  }
35347
36371
 
@@ -35350,8 +36374,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
35350
36374
  .k-disabled.k-fab-solid-#{$name},
35351
36375
  .k-fab-solid-#{$name}:disabled {
35352
36376
  @include box-shadow($kendo-fab-disabled-shadow);
35353
- background-color: k-try-tint( $color, 5 );
35354
- 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 ));
35355
36379
  opacity: 1;
35356
36380
  }
35357
36381
  }
@@ -35380,8 +36404,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
35380
36404
  // Hover state
35381
36405
  .k-fab-item.k-hover .k-fab-item-icon,
35382
36406
  .k-fab-item:hover .k-fab-item-icon {
35383
- border-color: k-try-shade( $kendo-fab-item-icon-border, .5 );
35384
- 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 ));
35385
36409
  }
35386
36410
 
35387
36411
  // Focus state
@@ -35390,7 +36414,7 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
35390
36414
  .k-fab-item.k-focus .k-fab-item-text,
35391
36415
  .k-fab-item.k-focus .k-fab-item-icon {
35392
36416
  @if $kendo-enable-focus-contrast {
35393
- @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 )) );
35394
36418
  } @else {
35395
36419
  outline: $kendo-fab-item-outline-style $kendo-fab-item-outline-width $kendo-fab-item-outline-color;
35396
36420
  }
@@ -35400,8 +36424,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
35400
36424
  .k-fab-item.k-active .k-fab-item-icon,
35401
36425
  .k-fab-item:active .k-fab-item-icon {
35402
36426
  @include box-shadow($kendo-fab-item-active-shadow);
35403
- border-color: k-try-shade( $kendo-fab-item-icon-border, 1);
35404
- 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 ));
35405
36429
  }
35406
36430
 
35407
36431
  // Disabled state
@@ -35412,8 +36436,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
35412
36436
  .k-fab-item-text,
35413
36437
  .k-fab-item-icon {
35414
36438
  @include box-shadow($kendo-fab-item-disabled-shadow);
35415
- background-color: k-try-tint( $kendo-fab-item-bg, 5 );
35416
- 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 ));
35417
36441
  }
35418
36442
  }
35419
36443
 
@@ -36399,7 +37423,7 @@ $_kendo-module-meta: (
36399
37423
  // Window theme colors
36400
37424
  @each $name, $color in $kendo-window-theme-colors {
36401
37425
  .k-window-#{$name} .k-window-titlebar {
36402
- color: k-contrast-legacy( $color );
37426
+ color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
36403
37427
  background-color: $color;
36404
37428
  }
36405
37429
  }
@@ -36580,7 +37604,7 @@ $kendo-dialog-theme-colors: (
36580
37604
  // Dialog theme colors
36581
37605
  @each $name, $color in $kendo-dialog-theme-colors {
36582
37606
  .k-dialog-#{$name} .k-dialog-titlebar {
36583
- color: k-contrast-legacy( $color );
37607
+ color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color ));
36584
37608
  background-color: $color;
36585
37609
  }
36586
37610
  }
@@ -36766,6 +37790,7 @@ $kendo-drawer-selected-hover-text: $kendo-selected-hover-text !default;
36766
37790
  }
36767
37791
  .k-drawer-content {
36768
37792
  flex: 1 1 auto;
37793
+ overflow: auto;
36769
37794
  }
36770
37795
 
36771
37796
 
@@ -37141,7 +38166,7 @@ $kendo-notification-icon-spacing: $kendo-icon-spacing !default;
37141
38166
 
37142
38167
  @each $name, $color in $colors {
37143
38168
  $_theme: k-map-merge(( $name: (
37144
- color: k-contrast-legacy( $color ),
38169
+ color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color )),
37145
38170
  background-color: $color,
37146
38171
  border: $color,
37147
38172
  )), $_theme );
@@ -37747,6 +38772,10 @@ $kendo-card-callout-height: 20px !default;
37747
38772
  gap: $kendo-card-actions-gap;
37748
38773
  }
37749
38774
 
38775
+ .k-card-horizontal .k-actions-horizontal {
38776
+ width: auto;
38777
+ }
38778
+
37750
38779
  // List
37751
38780
  .k-card-list {
37752
38781
  display: flex;
@@ -37971,9 +39000,9 @@ $kendo-card-callout-height: 20px !default;
37971
39000
  // Card theme colors
37972
39001
  @each $name, $color in $kendo-theme-colors {
37973
39002
  .k-card-#{$name} {
37974
- background-color: k-color-tint($color, 10);
37975
- color: k-color-shade($color, 6);
37976
- 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));
37977
39006
 
37978
39007
  .k-card-subtitle {
37979
39008
  color: inherit;
@@ -38695,17 +39724,17 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
38695
39724
  @each $name, $color in $kendo-theme-colors {
38696
39725
  .k-bottom-nav-solid-#{$name} {
38697
39726
  @include fill(
38698
- $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%)),
38699
39728
  $bg: $color
38700
39729
  );
38701
39730
 
38702
39731
  .k-bottom-nav-item.k-focus,
38703
39732
  .k-bottom-nav-item:focus {
38704
- @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)));
38705
39734
  }
38706
39735
 
38707
39736
  .k-bottom-nav-item.k-selected {
38708
- @include fill( $color: k-contrast-legacy( $color ) );
39737
+ @include fill( $color: if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-legacy( $color )) );
38709
39738
  }
38710
39739
  }
38711
39740
  // TODO: remove when suites update class names
@@ -38725,12 +39754,12 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
38725
39754
 
38726
39755
  .k-bottom-nav-item.k-focus,
38727
39756
  .k-bottom-nav-item:focus {
38728
- @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)) );
38729
39758
  }
38730
39759
 
38731
39760
  .k-bottom-nav-item.k-selected {
38732
39761
  @if $name == "secondary" or $name == "light" {
38733
- @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)) );
38734
39763
  } @else {
38735
39764
  @include fill( $color: $color );
38736
39765
  }
@@ -39855,24 +40884,24 @@ $kendo-stepper-indicator-bg: $kendo-component-bg !default;
39855
40884
  $kendo-stepper-indicator-text: $kendo-component-text !default;
39856
40885
  $kendo-stepper-indicator-border: $kendo-component-border !default;
39857
40886
 
39858
- $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;
39859
40888
  $kendo-stepper-indicator-hover-text: null !default;
39860
40889
  $kendo-stepper-indicator-hover-border: null !default;
39861
40890
 
39862
40891
  $kendo-stepper-indicator-disabled-bg: null !default;
39863
- $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;
39864
40893
  $kendo-stepper-indicator-disabled-border: null !default;
39865
40894
 
39866
40895
  $kendo-stepper-indicator-done-bg: $kendo-color-primary !default;
39867
- $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;
39868
40897
  $kendo-stepper-indicator-done-border: $kendo-stepper-indicator-done-bg !default;
39869
40898
 
39870
- $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;
39871
40900
  $kendo-stepper-indicator-done-hover-text: null !default;
39872
40901
  $kendo-stepper-indicator-done-hover-border: null !default;
39873
40902
 
39874
- $kendo-stepper-indicator-done-disabled-bg: k-color-mix( $kendo-stepper-indicator-done-bg, $kendo-component-bg, 60% ) !default;
39875
- $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;
39876
40905
  $kendo-stepper-indicator-done-disabled-border: $kendo-stepper-indicator-done-disabled-bg !default;
39877
40906
 
39878
40907
  $kendo-stepper-indicator-current-bg: $kendo-stepper-indicator-done-bg !default;
@@ -39891,7 +40920,7 @@ $kendo-stepper-label-text: null !default;
39891
40920
  $kendo-stepper-label-success-text: $kendo-color-success !default;
39892
40921
  $kendo-stepper-label-error-text: $kendo-color-error !default;
39893
40922
  $kendo-stepper-label-hover-text: null !default;
39894
- $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;
39895
40924
 
39896
40925
  $kendo-stepper-optional-label-text: $kendo-subtle-text !default;
39897
40926
  $kendo-stepper-optional-label-opacity: null !default;
@@ -39986,6 +41015,17 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
39986
41015
  transition-duration: .4s;
39987
41016
  transition-timing-function: ease-in-out;
39988
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
+
39989
41029
  &::after {
39990
41030
  @include border-radius( 100% );
39991
41031
  content: "";
@@ -40246,11 +41286,23 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
40246
41286
  &.k-disabled,
40247
41287
  &:disabled {
40248
41288
  .k-step-indicator {
40249
- @include fill(
40250
- $kendo-stepper-indicator-disabled-text,
40251
- $kendo-stepper-indicator-disabled-bg,
40252
- $kendo-stepper-indicator-disabled-border
40253
- );
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
+ }
40254
41306
  }
40255
41307
 
40256
41308
  .k-step-label {
@@ -40308,11 +41360,23 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
40308
41360
  &.k-disabled,
40309
41361
  &:disabled {
40310
41362
  .k-step-indicator {
40311
- @include fill(
40312
- $kendo-stepper-indicator-done-disabled-text,
40313
- $kendo-stepper-indicator-done-disabled-bg,
40314
- $kendo-stepper-indicator-done-disabled-border
40315
- );
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
+ }
40316
41380
  }
40317
41381
  }
40318
41382
  }
@@ -40349,11 +41413,23 @@ $kendo-stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0m
40349
41413
  &.k-disabled,
40350
41414
  &:disabled {
40351
41415
  .k-step-indicator {
40352
- @include fill(
40353
- $kendo-stepper-indicator-current-disabled-text,
40354
- $kendo-stepper-indicator-current-disabled-bg,
40355
- $kendo-stepper-indicator-current-disabled-border
40356
- );
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
+ }
40357
41433
  }
40358
41434
  }
40359
41435
  }
@@ -41460,10 +42536,9 @@ $kendo-expander-header-bg: transparent !default;
41460
42536
  /// The border color of the ExpansionPanel header.
41461
42537
  /// @group expander
41462
42538
  $kendo-expander-header-border: null !default;
41463
-
41464
42539
  /// The background color of the hovered ExpansionPanel header.
41465
42540
  /// @group expander
41466
- $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;
41467
42542
  /// The background color of the focused ExpansionPanel header.
41468
42543
  /// @group expander
41469
42544
  $kendo-expander-header-focus-bg: null !default;
@@ -41746,7 +42821,7 @@ $kendo-panelbar-header-selected-text: $kendo-selected-text !default;
41746
42821
  $kendo-panelbar-header-selected-border: $kendo-selected-border !default;
41747
42822
  $kendo-panelbar-header-selected-gradient: null !default;
41748
42823
 
41749
- $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;
41750
42825
  $kendo-panelbar-header-selected-hover-text: null !default;
41751
42826
  $kendo-panelbar-header-selected-hover-border: null !default;
41752
42827
  $kendo-panelbar-header-selected-hover-gradient: null !default;
@@ -41761,8 +42836,7 @@ $kendo-panelbar-header-selected-hover-focus-text: null !default;
41761
42836
  $kendo-panelbar-header-selected-hover-focus-border: null !default;
41762
42837
  $kendo-panelbar-header-selected-hover-focus-gradient: null !default;
41763
42838
 
41764
-
41765
- $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;
41766
42840
  $kendo-panelbar-item-hover-text: null !default;
41767
42841
  $kendo-panelbar-item-hover-border: null !default;
41768
42842
  $kendo-panelbar-item-hover-gradient: null !default;
@@ -41783,7 +42857,7 @@ $kendo-panelbar-item-selected-text: $kendo-selected-text !default;
41783
42857
  $kendo-panelbar-item-selected-border: null !default;
41784
42858
  $kendo-panelbar-item-selected-gradient: null !default;
41785
42859
 
41786
- $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;
41787
42861
  $kendo-panelbar-item-selected-hover-text: null !default;
41788
42862
  $kendo-panelbar-item-selected-hover-border: null !default;
41789
42863
  $kendo-panelbar-item-selected-hover-gradient: null !default;
@@ -42274,7 +43348,7 @@ $kendo-splitter-collapse-icon-padding-y: k-map-get( $kendo-spacing, .5 ) !defaul
42274
43348
  $kendo-splitbar-bg: $kendo-base-bg !default;
42275
43349
  $kendo-splitbar-text: $kendo-base-text !default;
42276
43350
 
42277
- $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;
42278
43352
  $kendo-splitbar-hover-text: $kendo-splitbar-text !default;
42279
43353
 
42280
43354
  $kendo-splitbar-selected-bg: $kendo-selected-bg !default;
@@ -42887,7 +43961,7 @@ $kendo-dock-manager-dock-preview-border-style: dashed !default;
42887
43961
  $kendo-dock-manager-dock-preview-border-radius: $kendo-border-radius-sm !default;
42888
43962
  /// The background color of the dropping area in the DockManager component.
42889
43963
  /// @group dock-manager
42890
- $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;
42891
43965
  /// The border color of the dropping area in the DockManager component.
42892
43966
  /// @group dock-manager
42893
43967
  $kendo-dock-manager-dock-preview-border: $kendo-color-primary !default;
@@ -43299,7 +44373,7 @@ $kendo-adaptive-content-bg: $kendo-app-bg !default;
43299
44373
  $kendo-adaptive-content-text: $kendo-app-text !default;
43300
44374
 
43301
44375
  $kendo-adaptive-menu-bg: $kendo-color-primary !default;
43302
- $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;
43303
44377
 
43304
44378
  $kendo-adaptive-menu-clear-text: $kendo-color-primary !default;
43305
44379
 
@@ -44249,14 +45323,14 @@ $kendo-grid-selection-aggregates-line-height: $kendo-grid-line-height !default;
44249
45323
  $kendo-grid-selection-aggregates-font-weight: $kendo-font-weight-bold !default;
44250
45324
 
44251
45325
  $kendo-grid-sorted-icon-spacing: calc( #{$kendo-padding-md-x} - 1px ) !default;
44252
- $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;
44253
45327
  $kendo-grid-sorting-indicator-text: $kendo-color-primary !default;
44254
45328
  $kendo-grid-sorting-index-font-size: $kendo-font-size-sm !default;
44255
45329
  $kendo-grid-sorting-index-height: $kendo-icon-size !default;
44256
45330
  $kendo-grid-sorting-index-spacing-y: k-math-div( $kendo-icon-spacing, 2 ) !default;
44257
45331
  $kendo-grid-sorting-index-spacing-x: -$kendo-grid-sorting-index-spacing-y !default;
44258
45332
 
44259
- $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;
44260
45334
  $kendo-grid-grouping-row-text: $kendo-grid-text !default;
44261
45335
 
44262
45336
  $kendo-grid-focus-shadow: $kendo-table-focus-shadow !default;
@@ -44265,11 +45339,13 @@ $kendo-grid-command-cell-button-spacing: k-map-get( $kendo-spacing, 2 ) !default
44265
45339
  // be cautious when changing the next line; see https://github.com/MoOx/reduce-css-calc/issues/38
44266
45340
  $kendo-grid-command-cell-padding-y: calc( #{$kendo-grid-cell-padding-y} - (#{$kendo-button-calc-size} - #{$kendo-line-height-em}) / 2 ) !default;
44267
45341
 
45342
+ // Must be a solid color
44268
45343
  $kendo-grid-sticky-bg: $kendo-grid-bg !default;
44269
45344
  $kendo-grid-sticky-text: $kendo-grid-text !default;
44270
45345
  $kendo-grid-sticky-border: $kendo-grid-border !default;
44271
45346
 
44272
- $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;
44273
45349
 
44274
45350
  $kendo-grid-sticky-header-bg: $kendo-grid-header-bg !default;
44275
45351
  $kendo-grid-sticky-header-text: $kendo-grid-header-text !default;
@@ -44278,11 +45354,12 @@ $kendo-grid-sticky-header-border: $kendo-grid-sticky-border !default;
44278
45354
  $kendo-grid-sticky-footer-bg: $kendo-grid-header-bg !default;
44279
45355
  $kendo-grid-sticky-footer-hover-bg: $kendo-grid-hover-bg !default;
44280
45356
 
44281
- $kendo-grid-sticky-selected-bg: k-color-mix($kendo-selected-bg, #ffffff, 25%) !default;
44282
- $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;
44283
45359
 
44284
- $kendo-grid-sticky-hover-bg: $kendo-grid-hover-bg !default;
44285
- $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;
44286
45363
 
44287
45364
  $kendo-grid-column-menu-width: 230px !default;
44288
45365
  $kendo-grid-column-menu-max-width: 320px !default;
@@ -44333,7 +45410,7 @@ $kendo-grid-group-footer-second-cell-border: 1px !default;
44333
45410
 
44334
45411
  /// Background color of the grid row resize indicator
44335
45412
  /// @group grid
44336
- $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;
44337
45414
  /// Active background color of the grid row resize indicator
44338
45415
  /// @group grid
44339
45416
  $kendo-grid-row-resizer-active-bg: $kendo-color-primary !default;
@@ -45124,6 +46201,16 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
45124
46201
  }
45125
46202
  }
45126
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
+
45127
46214
  kendo-grid {
45128
46215
  .k-table-row.k-grid-row-sticky {
45129
46216
  border: 0;
@@ -45981,14 +47068,30 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
45981
47068
  &.k-table-row.k-selected .k-table-td.k-grid-row-sticky,
45982
47069
  &.k-table-row td.k-grid-content-sticky.k-selected,
45983
47070
  &.k-table-row .k-table-td.k-grid-content-sticky.k-selected {
45984
- @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
+ }
45985
47080
  }
45986
47081
 
45987
47082
  &.k-selected.k-table-alt-row td.k-grid-content-sticky,
45988
47083
  &.k-selected.k-table-alt-row .k-table-td.k-grid-row-sticky,
45989
47084
  &.k-table-alt-row td.k-grid-content-sticky.k-selected,
45990
47085
  &.k-table-alt-row .k-table-td.k-grid-content-sticky.k-selected {
45991
- @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
+ }
45992
47095
  }
45993
47096
 
45994
47097
 
@@ -46010,7 +47113,15 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
46010
47113
  &.k-hover td.k-grid-content-sticky.k-selected,
46011
47114
  &:hover .k-table-td.k-grid-content-sticky.k-selected,
46012
47115
  &.k-hover .k-table-td.k-grid-content-sticky.k-selected {
46013
- 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
+ }
46014
47125
  }
46015
47126
  }
46016
47127
 
@@ -46056,14 +47167,30 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
46056
47167
  .k-selected.k-grid-row-sticky .k-table-td,
46057
47168
  .k-grid-row-sticky .k-table-td.k-selected,
46058
47169
  .k-selected.k-grid-content-sticky {
46059
- @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
+ }
46060
47179
  }
46061
47180
 
46062
47181
  .k-table-row.k-selected.k-table-alt-row .k-grid-content-sticky,
46063
47182
  .k-selected.k-table-alt-row.k-grid-row-sticky td,
46064
47183
  .k-selected.k-table-alt-row.k-grid-row-sticky .k-table-td,
46065
47184
  .k-table-alt-row .k-selected.k-grid-content-sticky {
46066
- @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
+ }
46067
47194
  }
46068
47195
 
46069
47196
  // Hover state
@@ -46101,7 +47228,15 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
46101
47228
  .k-grid-row-sticky.k-hover .k-table-td.k-selected,
46102
47229
  .k-table-row:hover .k-grid-content-sticky.k-selected,
46103
47230
  .k-table-row.k-hover .k-grid-content-sticky.k-selected {
46104
- 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
+ }
46105
47240
  }
46106
47241
  }
46107
47242
 
@@ -46327,7 +47462,7 @@ $kendo-listview-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
46327
47462
  $kendo-listview-item-selected-text: null !default;
46328
47463
  /// The background color of the selected ListView items.
46329
47464
  /// @group listview
46330
- $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;
46331
47466
  /// The border color of the selected ListView items.
46332
47467
  /// @group listview
46333
47468
  $kendo-listview-item-selected-border: null !default;
@@ -46706,7 +47841,7 @@ $kendo-spreadsheet-formula-input-line-height: $kendo-input-line-height !default;
46706
47841
  $kendo-spreadsheet-view-font-family: Arial, Verdana, sans-serif !default;
46707
47842
  $kendo-spreadsheet-view-font-size: $kendo-spreadsheet-font-size !default;
46708
47843
 
46709
- $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;
46710
47845
  $kendo-spreadsheet-selection-text: null !default;
46711
47846
  $kendo-spreadsheet-selection-border: $kendo-selected-bg !default;
46712
47847
  $kendo-spreadsheet-selection-shadow: inset 0 0 0 1px $kendo-selected-bg !default;
@@ -46715,12 +47850,12 @@ $kendo-spreadsheet-single-selection-bg: $kendo-selected-bg !default;
46715
47850
  $kendo-spreadsheet-single-selection-text: null !default;
46716
47851
  $kendo-spreadsheet-single-selection-border: $kendo-spreadsheet-bg !default;
46717
47852
 
46718
- $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;
46719
47854
 
46720
47855
  $kendo-spreadsheet-active-cell-bg: $kendo-spreadsheet-bg !default;
46721
47856
  $kendo-spreadsheet-active-cell-shadow: inset 0 0 0 1px $kendo-selected-bg !default;
46722
47857
 
46723
- $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;
46724
47859
  $kendo-spreadsheet-auto-fill-text: null !default;
46725
47860
  $kendo-spreadsheet-auto-fill-border: $kendo-selected-bg !default;
46726
47861
  $kendo-spreadsheet-auto-fill-shadow: inset 0 0 0 1px $kendo-selected-bg !default;
@@ -46770,7 +47905,7 @@ $kendo-spreadsheet-drawing-handle-border-radius: $kendo-border-radius-lg !defaul
46770
47905
  $kendo-spreadsheet-drawing-outline-style: solid !default;
46771
47906
  $kendo-spreadsheet-drawing-outline-width: 2px !default;
46772
47907
 
46773
- $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;
46774
47909
 
46775
47910
  $kendo-spreadsheet-dropzone-spacing-y: k-map-get( $kendo-spacing, 4 ) !default;
46776
47911
 
@@ -48006,21 +49141,21 @@ $kendo-pivotgrid-bg: $kendo-component-bg !default;
48006
49141
  $kendo-pivotgrid-text: $kendo-component-text !default;
48007
49142
  $kendo-pivotgrid-border: $kendo-component-border !default;
48008
49143
 
48009
- $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;
48010
49145
 
48011
49146
  $kendo-pivotgrid-headers-bg: $kendo-component-header-bg !default;
48012
49147
  $kendo-pivotgrid-headers-text: $kendo-component-header-text !default;
48013
49148
  $kendo-pivotgrid-headers-border: $kendo-component-header-border !default;
48014
49149
 
48015
- $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;
48016
49151
  $kendo-pivotgrid-total-text: $kendo-component-header-text !default;
48017
49152
  $kendo-pivotgrid-total-border: $kendo-component-header-border !default;
48018
49153
 
48019
- $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;
48020
49155
  $kendo-pivotgrid-hover-text: null !default;
48021
49156
  $kendo-pivotgrid-hover-border: null !default;
48022
49157
 
48023
- $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;
48024
49159
  $kendo-pivotgrid-selected-text: null !default;
48025
49160
  $kendo-pivotgrid-selected-border: null !default;
48026
49161
 
@@ -48089,7 +49224,7 @@ $kendo-pivotgrid-alt-text: $kendo-grid-header-text !default;
48089
49224
  $kendo-pivotgrid-chrome-border: $kendo-grid-border !default;
48090
49225
 
48091
49226
  $kendo-pivotgrid-container-bg: $kendo-component-bg !default;
48092
- $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;
48093
49228
 
48094
49229
  $kendo-pivotgrid-button-bg: null !default;
48095
49230
  $kendo-pivotgrid-button-text: null !default;
@@ -49705,7 +50840,7 @@ $kendo-file-manager-listview-item-border: null !default;
49705
50840
  $kendo-file-manager-listview-item-icon-bg: null !default;
49706
50841
  /// The text color of the FileManager ListView item icon.
49707
50842
  /// @group filemanager
49708
- $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;
49709
50844
  /// The border color of the FileManager ListView item icon.
49710
50845
  /// @group filemanager
49711
50846
  $kendo-file-manager-listview-item-icon-border: null !default;
@@ -49762,7 +50897,7 @@ $kendo-file-manager-preview-border: null !default;
49762
50897
  $kendo-file-manager-preview-icon-bg: null !default;
49763
50898
  /// The text color of the FileManager preview icon.
49764
50899
  /// @group filemanager
49765
- $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;
49766
50901
  /// The border color of the FileManager preview icon.
49767
50902
  /// @group filemanager
49768
50903
  $kendo-file-manager-preview-icon-border: null !default;
@@ -49794,6 +50929,7 @@ $kendo-file-manager-preview-icon-border: null !default;
49794
50929
  border-bottom-width: $kendo-file-manager-toolbar-border-width;
49795
50930
  border-color: inherit;
49796
50931
  flex-shrink: 0;
50932
+ z-index: 1;
49797
50933
  }
49798
50934
 
49799
50935
 
@@ -49808,6 +50944,10 @@ $kendo-file-manager-preview-icon-border: null !default;
49808
50944
  overflow: hidden;
49809
50945
  }
49810
50946
 
50947
+ .k-filemanager-splitter {
50948
+ border-width: 0;
50949
+ }
50950
+
49811
50951
 
49812
50952
  // Navigation
49813
50953
  .k-filemanager-navigation {
@@ -50250,7 +51390,7 @@ $kendo-taskboard-column-border: transparent !default;
50250
51390
 
50251
51391
  $kendo-taskboard-column-focus-bg: null !default;
50252
51392
  $kendo-taskboard-column-focus-text: null !default;
50253
- $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;
50254
51394
 
50255
51395
  $kendo-taskboard-column-header-padding-y: k-math-div( $kendo-taskboard-spacer, 2 ) !default;
50256
51396
  $kendo-taskboard-column-header-padding-x: $kendo-taskboard-column-header-padding-y !default;
@@ -50293,10 +51433,11 @@ $kendo-taskboard-card-shadow: $kendo-card-shadow !default;
50293
51433
 
50294
51434
  $kendo-taskboard-card-category-border-width: 4px !default;
50295
51435
 
50296
- $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;
50297
51439
  $kendo-taskboard-card-focus-shadow: none !default;
50298
51440
 
50299
- $kendo-taskboard-card-hover-border: k-try-shade( $kendo-taskboard-card-border, 10% ) !default;
50300
51441
 
50301
51442
  $kendo-taskboard-card-selected-border: k-color-tint( $kendo-color-primary-lighter, 5 ) !default;
50302
51443
  $kendo-taskboard-card-selected-shadow: none !default;
@@ -50780,7 +51921,7 @@ $kendo-editor-selected-bg: $kendo-color-primary !default;
50780
51921
 
50781
51922
  /// The highlighted background color of the Editor.
50782
51923
  /// @group editor
50783
- $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;
50784
51925
 
50785
51926
  /// The horizontal margin of the Editor's export tool icon.
50786
51927
  /// @group editor
@@ -52020,12 +53161,12 @@ $kendo-gantt-treelist-bg: null !default;
52020
53161
  $kendo-gantt-treelist-text: null !default;
52021
53162
  $kendo-gantt-treelist-border: null !default;
52022
53163
 
52023
- $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;
52024
53165
  $kendo-gantt-nonwork-text: null !default;
52025
53166
  $kendo-gantt-nonwork-border: null !default;
52026
53167
 
52027
53168
  $kendo-gantt-line-size: 2px !default;
52028
- $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;
52029
53170
  $kendo-gantt-line-selected-fill: $kendo-color-primary !default;
52030
53171
 
52031
53172
  $kendo-gantt-dot-size: 8px !default;
@@ -52040,19 +53181,19 @@ $kendo-gantt-milestone-border: $kendo-gantt-border !default;
52040
53181
  $kendo-gantt-milestone-selected-bg: $kendo-selected-bg !default;
52041
53182
  $kendo-gantt-milestone-selected-border: $kendo-selected-border !default;
52042
53183
 
52043
- $kendo-gantt-summary-bg: k-try-tint( $kendo-gantt-text, 1 ) !default;
52044
- $kendo-gantt-summary-progress-bg: k-try-shade( $kendo-gantt-text, 5 ) !default;
52045
- $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;
52046
53187
  $kendo-gantt-summary-progress-selected-bg: $kendo-selected-bg !default;
52047
53188
 
52048
53189
  $kendo-gantt-task-border-width: 0px !default;
52049
53190
  $kendo-gantt-task-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
52050
53191
  $kendo-gantt-task-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
52051
- $kendo-gantt-task-bg: k-try-tint( $kendo-gantt-text, 2 ) !default;
52052
- $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;
52053
53194
  $kendo-gantt-task-border: null !default;
52054
53195
  $kendo-gantt-task-progress-bg: $kendo-gantt-text !default;
52055
- $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;
52056
53197
  $kendo-gantt-task-selected-text: $kendo-selected-text !default;
52057
53198
  $kendo-gantt-task-selected-border: null !default;
52058
53199
  $kendo-gantt-task-progress-selected-bg: $kendo-selected-bg !default;
@@ -52086,10 +53227,10 @@ $kendo-gantt-planned-bg: $kendo-color-primary !default;
52086
53227
  $kendo-gantt-planned-border: $kendo-gantt-planned-bg !default;
52087
53228
 
52088
53229
  $kendo-gantt-delayed-bg: $kendo-color-error !default;
52089
- $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;
52090
53231
 
52091
53232
  $kendo-gantt-advanced-bg: $kendo-color-success !default;
52092
- $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;
52093
53234
 
52094
53235
  $kendo-gantt-action-on-offset-text: #000000 !default;
52095
53236
  $kendo-gantt-offset-resize-handler-top: 50% !default;
@@ -52396,12 +53537,20 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
52396
53537
 
52397
53538
 
52398
53539
  // Timeline
52399
- .k-gantt-timeline {
53540
+ .k-gantt-timeline-pane {
52400
53541
 
52401
- .k-timeline {
53542
+ .k-gantt-timeline {
52402
53543
  height: 100%;
52403
53544
  border-width: 0;
52404
53545
  display: flex;
53546
+
53547
+ *,
53548
+ *::before,
53549
+ *::after,
53550
+ &::before,
53551
+ &::after {
53552
+ box-sizing: border-box;
53553
+ }
52405
53554
  }
52406
53555
  .k-grid-header {}
52407
53556
  .k-grid-content {
@@ -52877,7 +54026,7 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
52877
54026
  }
52878
54027
 
52879
54028
  .k-gantt,
52880
- .k-gantt-timeline,
54029
+ .k-gantt-timeline-pane,
52881
54030
  .k-gantt-dependencies {
52882
54031
  width: auto !important; // stylelint-disable-line declaration-no-important
52883
54032
  height: auto !important; // stylelint-disable-line declaration-no-important
@@ -52922,7 +54071,7 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
52922
54071
  margin-inline: -26px;
52923
54072
  }
52924
54073
 
52925
- .k-gantt-timeline {
54074
+ .k-gantt-timeline-pane {
52926
54075
  .k-header {
52927
54076
  border-width: 0 $kendo-grid-cell-vertical-border-width 1px 0;
52928
54077
  }
@@ -52982,7 +54131,7 @@ $kendo-gantt-validation-tooltip-invalid-border: $kendo-color-error !default;
52982
54131
  margin-right: $kendo-gantt-rtl-milestone-planned-moment-margin-x;
52983
54132
  }
52984
54133
 
52985
- .k-gantt-timeline .k-milestone-wrap .k-task-start {
54134
+ .k-gantt-timeline-pane .k-milestone-wrap .k-task-start {
52986
54135
  right: $kendo-gantt-rtl-milestone-dot-start-margin-x;
52987
54136
  }
52988
54137
 
@@ -53398,7 +54547,7 @@ $kendo-scheduler-event-min-height: 25px !default;
53398
54547
  $kendo-scheduler-event-border-radius: $kendo-border-radius-md !default;
53399
54548
  $kendo-scheduler-event-line-height: calc( #{$kendo-scheduler-event-min-height} - (2 * #{$kendo-padding-md-y}) ) !default;
53400
54549
 
53401
- $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;
53402
54551
  $kendo-scheduler-event-text: $kendo-selected-text !default;
53403
54552
  $kendo-scheduler-event-border: null !default;
53404
54553
  $kendo-scheduler-event-gradient: null !default;
@@ -53424,13 +54573,13 @@ $kendo-scheduler-cell-height: $kendo-line-height-em !default;
53424
54573
  $kendo-scheduler-datecolumn-width: 12em !default;
53425
54574
  $kendo-scheduler-timecolumn-width: 11em !default;
53426
54575
 
53427
- $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;
53428
54577
  $kendo-scheduler-nonwork-text: null !default;
53429
54578
 
53430
54579
  $kendo-scheduler-weekend-bg: null !default;
53431
54580
  $kendo-scheduler-weekend-text: null !default;
53432
54581
 
53433
- $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;
53434
54583
  $kendo-scheduler-othermonth-text: null !default;
53435
54584
 
53436
54585
  $kendo-scheduler-yearview-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
@@ -54591,7 +55740,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
54591
55740
 
54592
55741
  .k-scheduler-layout td.k-selected,
54593
55742
  .k-scheduler-layout .k-scheduler-cell.k-selected {
54594
- 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));
54595
55744
  }
54596
55745
 
54597
55746
  .k-scheduler-layout-flex {
@@ -54634,7 +55783,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
54634
55783
  }
54635
55784
 
54636
55785
  &.k-event-inverse {
54637
- 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 ));
54638
55787
  }
54639
55788
 
54640
55789
  &.k-event-ongoing {
@@ -54708,7 +55857,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
54708
55857
 
54709
55858
  // Selected
54710
55859
  .k-scheduler-content tr.k-selected {
54711
- 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));
54712
55861
  }
54713
55862
  .k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
54714
55863
  .k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
@@ -54897,7 +56046,7 @@ $kendo-chat-bubble-hover-shadow: k-elevation(2) !default;
54897
56046
  $kendo-chat-bubble-selected-shadow: k-elevation(3) !default;
54898
56047
 
54899
56048
  $kendo-chat-alt-bubble-bg: $kendo-color-primary !default;
54900
- $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;
54901
56050
  $kendo-chat-alt-bubble-border: $kendo-chat-alt-bubble-bg !default;
54902
56051
  $kendo-chat-alt-bubble-shadow: k-elevation(1) !default;
54903
56052
  $kendo-chat-alt-bubble-hover-shadow: k-elevation(2) !default;
@@ -55572,7 +56721,7 @@ $kendo-media-player-titlebar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
55572
56721
  $kendo-media-player-titlebar-bg: null !default;
55573
56722
  $kendo-media-player-titlebar-text: $kendo-media-player-bg !default;
55574
56723
  $kendo-media-player-titlebar-border: null !default;
55575
- $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;
55576
56725
 
55577
56726
  // #endregion
55578
56727
  // #region @import "./_layout.scss"; -> scss/mediaplayer/_layout.scss
@@ -55710,7 +56859,7 @@ $kendo-media-player-titlebar-gradient: rgba( $kendo-media-player-text, .7 ), rgb
55710
56859
  .k-mediaplayer-titlebar {
55711
56860
  color: $kendo-media-player-titlebar-text;
55712
56861
  background-image: linear-gradient( $kendo-media-player-titlebar-gradient );
55713
- 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 ));
55714
56863
  }
55715
56864
 
55716
56865
  }
@@ -55802,9 +56951,9 @@ $kendo-timeline-mobile-spacing-y: 16px !default;
55802
56951
  $kendo-timeline-track-arrow-width: 30px !default;
55803
56952
  $kendo-timeline-track-arrow-height: 30px !default;
55804
56953
 
55805
- $kendo-timeline-track-arrow-disabled-text: k-true-mix( $kendo-button-text, $kendo-body-bg, 65% ) !default;
55806
- $kendo-timeline-track-arrow-disabled-bg: k-true-mix( $kendo-button-bg, $kendo-body-bg, 65% ) !default;
55807
- $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;
55808
56957
 
55809
56958
  $kendo-timeline-track-size: 6px !default;
55810
56959
  $kendo-timeline-track-wrap-padding-bottom: k-math-div( $kendo-timeline-track-size, 2 ) !default;
@@ -55828,7 +56977,7 @@ $kendo-timeline-flag-max-width: calc(#{$kendo-timeline-flag-min-width} + 2 * #{$
55828
56977
  $kendo-timeline-mobile-flag-max-width: calc(#{$kendo-timeline-flag-min-width} + 2 * #{$kendo-timeline-mobile-spacing-x}) !default;
55829
56978
  $kendo-timeline-horizontal-flag-min-width: 60px !default;
55830
56979
  $kendo-timeline-flag-bg: $kendo-color-primary !default;
55831
- $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;
55832
56981
 
55833
56982
  $kendo-timeline-flag-callout-width: 10px !default;
55834
56983
  $kendo-timeline-flag-callout-height: 10px !default;
@@ -57103,7 +58252,7 @@ $kendo-scrollview-pagebutton-border: $kendo-button-border !default;
57103
58252
  $kendo-scrollview-pagebutton-primary-bg: $kendo-color-primary !default;
57104
58253
  /// The primary border color of the ScrollView page button.
57105
58254
  /// @group scrollview
57106
- $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;
57107
58256
  /// The box shadow of the ScrollView page button.
57108
58257
  /// @group scrollview
57109
58258
  $kendo-scrollview-pagebutton-shadow: 0 0 0 2px rgba( black, .13 ) !default;
@@ -57462,6 +58611,253 @@ $kendo-scrollview-transition-timing-function: ease-in-out !default;
57462
58611
  @include kendo-scrollview--styles();
57463
58612
  }
57464
58613
 
58614
+ // #endregion
58615
+ // #region @import "./prompt/_index.scss"; -> scss/prompt/_index.scss
58616
+ // #region @import "../core/_index.scss"; -> scss/core/_index.scss
58617
+ // File already imported_once. Skipping output.
58618
+ // #endregion
58619
+ // #region @import "../utils/_index.scss"; -> scss/utils/_index.scss
58620
+ // File already imported_once. Skipping output.
58621
+ // #endregion
58622
+
58623
+
58624
+ // Module meta
58625
+ $_kendo-module-meta: (
58626
+ name: "prompt",
58627
+ dependencies: ()
58628
+ );
58629
+
58630
+
58631
+ // Dependencies
58632
+ // #region @import "../common/_index.scss"; -> scss/common/_index.scss
58633
+ // File already imported_once. Skipping output.
58634
+ // #endregion
58635
+
58636
+
58637
+ // Component
58638
+ // #region @import "./_variables.scss"; -> scss/prompt/_variables.scss
58639
+ // Prompt
58640
+
58641
+ /// The text color of the Prompt.
58642
+ /// @group prompt
58643
+ $kendo-prompt-text: $kendo-component-text !default;
58644
+ /// The background color of the Prompt.
58645
+ /// @group prompt
58646
+ $kendo-prompt-bg: $kendo-component-bg !default;
58647
+ /// The border color of the Prompt.
58648
+ /// @group prompt
58649
+ $kendo-prompt-border: $kendo-component-border !default;
58650
+
58651
+ /// The text color of the Prompt header.
58652
+ /// @group prompt
58653
+ $kendo-prompt-header-text: $kendo-component-header-text !default;
58654
+ /// The background color of the Prompt header.
58655
+ /// @group prompt
58656
+ $kendo-prompt-header-bg: $kendo-component-bg !default;
58657
+ /// The border color of the Prompt header.
58658
+ /// @group prompt
58659
+ $kendo-prompt-header-border: $kendo-component-header-border !default;
58660
+
58661
+ /// The vertical padding of the Prompt content.
58662
+ /// @group prompt
58663
+ $kendo-prompt-content-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
58664
+ /// The horizontal padding of the Prompt content.
58665
+ /// @group prompt
58666
+ $kendo-prompt-content-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
58667
+ /// The spacing between the items of the Prompt content.
58668
+ /// @group prompt
58669
+ $kendo-prompt-content-spacing: k-map-get( $kendo-spacing, 4 ) !default;
58670
+ /// The text color of the Prompt content.
58671
+ /// @group prompt
58672
+ $kendo-prompt-content-text: $kendo-component-header-text !default;
58673
+ /// The background color of the Prompt content.
58674
+ /// @group prompt
58675
+ $kendo-prompt-content-bg: $kendo-component-header-bg !default;
58676
+ /// The text border of the Prompt content.
58677
+ /// @group prompt
58678
+ $kendo-prompt-content-border: $kendo-component-header-border !default;
58679
+
58680
+ /// The spacing between the items of the Prompt content expander.
58681
+ /// @group prompt
58682
+ $kendo-prompt-expander-spacing: k-map-get( $kendo-spacing, 2 ) !default;
58683
+
58684
+ /// The vertical padding of the Prompt suggestion container.
58685
+ /// @group prompt
58686
+ $kendo-prompt-suggestion-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
58687
+ /// The horizontal padding of the Prompt suggestion container.
58688
+ /// @group prompt
58689
+ $kendo-prompt-suggestion-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
58690
+ /// The border radius of the Prompt suggestion container.
58691
+ /// @group prompt
58692
+ $kendo-prompt-suggestion-border-radius: $kendo-border-radius-md !default;
58693
+ /// The text color of the Prompt suggestion container.
58694
+ /// @group prompt
58695
+ $kendo-prompt-suggestion-text: $kendo-component-text !default;
58696
+ /// The background color of the Prompt suggestion container.
58697
+ /// @group prompt
58698
+ $kendo-prompt-suggestion-bg: $kendo-body-bg !default;
58699
+ /// The border color of the Prompt suggestion container.
58700
+ /// @group prompt
58701
+ $kendo-prompt-suggestion-border: $kendo-component-border !default;
58702
+ /// The elevation of the Prompt suggestion container.
58703
+ /// @group prompt
58704
+ $kendo-prompt-suggestion-shadow: k-elevation(1) !default;
58705
+
58706
+ // #endregion
58707
+ // #region @import "./_layout.scss"; -> scss/prompt/_layout.scss
58708
+ // #region @import "@progress/kendo-theme-default/scss/prompt/_layout.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-default/scss/prompt/_layout.scss
58709
+ @mixin kendo-prompt--layout-base() {
58710
+
58711
+ // Prompt
58712
+ .k-prompt {
58713
+ display: flex;
58714
+ flex-direction: column;
58715
+ position: relative;
58716
+ overflow: hidden;
58717
+ }
58718
+
58719
+ // Content
58720
+ .k-prompt-content {
58721
+ padding-block: $kendo-prompt-content-padding-y;
58722
+ padding-inline: $kendo-prompt-content-padding-x;
58723
+ display: flex;
58724
+ flex-flow: column nowrap;
58725
+ flex: 1 1 auto;
58726
+ gap: $kendo-prompt-content-spacing;
58727
+ overflow: auto;
58728
+ }
58729
+
58730
+ .k-prompt-view {
58731
+ display: flex;
58732
+ flex-direction: column;
58733
+ flex: 1 1 auto;
58734
+ gap: $kendo-prompt-content-spacing;
58735
+ }
58736
+
58737
+ // Prompt Expander
58738
+ .k-prompt-expander {
58739
+ display: flex;
58740
+ flex-direction: column;
58741
+ flex: 1;
58742
+ align-items: start;
58743
+ gap: $kendo-prompt-expander-spacing;
58744
+ }
58745
+
58746
+ .k-prompt-expander-content {
58747
+ display: flex;
58748
+ flex-flow: column;
58749
+ flex: 0 0 auto;
58750
+ gap: $kendo-prompt-expander-spacing;
58751
+ align-self: stretch;
58752
+ }
58753
+
58754
+ .k-prompt-suggestion {
58755
+ border-width: 1px;
58756
+ border-style: solid;
58757
+ border-radius: $kendo-prompt-suggestion-border-radius;
58758
+ padding-block: $kendo-prompt-suggestion-padding-y;
58759
+ padding-inline: $kendo-prompt-suggestion-padding-x;
58760
+ cursor: pointer;
58761
+ }
58762
+
58763
+ .k-prompt-setting {
58764
+ display: flex;
58765
+ flex-direction: column;
58766
+ }
58767
+
58768
+ // Actions
58769
+ .k-prompt-actions.k-actions {
58770
+ margin: 0;
58771
+ }
58772
+
58773
+ }
58774
+
58775
+
58776
+ @mixin kendo-prompt--layout() {
58777
+ @include kendo-prompt--layout-base();
58778
+ }
58779
+
58780
+ // #endregion
58781
+
58782
+
58783
+ @mixin kendo-prompt--layout() {
58784
+ @include kendo-prompt--layout-base();
58785
+ }
58786
+
58787
+ // #endregion
58788
+ // #region @import "./_theme.scss"; -> scss/prompt/_theme.scss
58789
+ // #region @import "@progress/kendo-theme-default/scss/prompt/_theme.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-default/scss/prompt/_theme.scss
58790
+ @mixin kendo-prompt--theme-base() {
58791
+
58792
+ .k-prompt {
58793
+ @include fill(
58794
+ $kendo-prompt-text,
58795
+ $kendo-prompt-bg,
58796
+ $kendo-prompt-border
58797
+ );
58798
+ }
58799
+
58800
+ .k-prompt-header {
58801
+ @include fill(
58802
+ $kendo-prompt-header-text,
58803
+ $kendo-prompt-header-bg,
58804
+ $kendo-prompt-header-border
58805
+ );
58806
+ }
58807
+
58808
+ .k-prompt-content {
58809
+ @include fill(
58810
+ $kendo-prompt-content-text,
58811
+ $kendo-prompt-content-bg,
58812
+ $kendo-prompt-content-border
58813
+ );
58814
+ }
58815
+
58816
+ .k-prompt-suggestion {
58817
+ @include fill(
58818
+ $kendo-prompt-suggestion-text,
58819
+ $kendo-prompt-suggestion-bg,
58820
+ $kendo-prompt-suggestion-border
58821
+ );
58822
+ @include box-shadow( $kendo-prompt-suggestion-shadow );
58823
+ }
58824
+
58825
+ }
58826
+
58827
+
58828
+ @mixin kendo-prompt--theme() {
58829
+ @include kendo-prompt--theme-base();
58830
+ }
58831
+
58832
+ // #endregion
58833
+
58834
+
58835
+ @mixin kendo-prompt--theme() {
58836
+ @include kendo-prompt--theme-base();
58837
+ }
58838
+
58839
+ // #endregion
58840
+
58841
+
58842
+ // Register
58843
+ // #region @import "../core/module-system/index.import.scss"; -> scss/core/module-system/index.import.scss
58844
+ // File already imported_once. Skipping output.
58845
+ // #endregion
58846
+ @include module-register( $_kendo-module-meta... );
58847
+
58848
+
58849
+ // Expose
58850
+ @mixin kendo-prompt--styles() {
58851
+ @include module-render( "prompt" ) {
58852
+ @include kendo-prompt--layout();
58853
+ @include kendo-prompt--theme();
58854
+ }
58855
+ }
58856
+
58857
+ @if $kendo-auto-bootstrap {
58858
+ @include kendo-prompt--styles();
58859
+ }
58860
+
57465
58861
  // #endregion
57466
58862
 
57467
58863
 
@@ -57509,51 +58905,51 @@ $_kendo-module-meta: (
57509
58905
 
57510
58906
  /// The first base series color and its light and dark shades.
57511
58907
  /// @group charts
57512
- $kendo-series-a: #ff6358 !default;
57513
- $kendo-series-a-dark: k-color-mix( black, $kendo-series-a, 25% ) !default;
57514
- $kendo-series-a-darker: k-color-mix( black, $kendo-series-a, 50% ) !default;
57515
- $kendo-series-a-light: k-color-mix( white, $kendo-series-a, 25% ) !default;
57516
- $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;
57517
58913
 
57518
58914
  /// The second base series color and its light and dark shades.
57519
58915
  /// @group charts
57520
- $kendo-series-b: #ffd246 !default;
57521
- $kendo-series-b-dark: k-color-mix( black, $kendo-series-b, 25% ) !default;
57522
- $kendo-series-b-darker: k-color-mix( black, $kendo-series-b, 50% ) !default;
57523
- $kendo-series-b-light: k-color-mix( white, $kendo-series-b, 25% ) !default;
57524
- $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;
57525
58921
 
57526
58922
  /// The third base series color and its light and dark shades.
57527
58923
  /// @group charts
57528
- $kendo-series-c: #78d237 !default;
57529
- $kendo-series-c-dark: k-color-mix( black, $kendo-series-c, 25% ) !default;
57530
- $kendo-series-c-darker: k-color-mix( black, $kendo-series-c, 50% ) !default;
57531
- $kendo-series-c-light: k-color-mix( white, $kendo-series-c, 25% ) !default;
57532
- $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;
57533
58929
 
57534
58930
  /// The fourth base series color and its light and dark shades.
57535
58931
  /// @group charts
57536
- $kendo-series-d: #28b4c8 !default;
57537
- $kendo-series-d-dark: k-color-mix( black, $kendo-series-d, 25% ) !default;
57538
- $kendo-series-d-darker: k-color-mix( black, $kendo-series-d, 50% ) !default;
57539
- $kendo-series-d-light: k-color-mix( white, $kendo-series-d, 25% ) !default;
57540
- $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;
57541
58937
 
57542
58938
  /// The fifth base series color and its light and dark shades.
57543
58939
  /// @group charts
57544
- $kendo-series-e: #2d73f5 !default;
57545
- $kendo-series-e-dark: k-color-mix( black, $kendo-series-e, 25% ) !default;
57546
- $kendo-series-e-darker: k-color-mix( black, $kendo-series-e, 50% ) !default;
57547
- $kendo-series-e-light: k-color-mix( white, $kendo-series-e, 25% ) !default;
57548
- $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;
57549
58945
 
57550
58946
  /// The sixth base series color and its light and dark shades.
57551
58947
  /// @group charts
57552
- $kendo-series-f: #aa46be !default;
57553
- $kendo-series-f-dark: k-color-mix( black, $kendo-series-f, 25% ) !default;
57554
- $kendo-series-f-darker: k-color-mix( black, $kendo-series-f, 50% ) !default;
57555
- $kendo-series-f-light: k-color-mix( white, $kendo-series-f, 25% ) !default;
57556
- $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;
57557
58953
 
57558
58954
  /// The series colors in order:
57559
58955
  /// base, light, dark, lighter, darker
@@ -57604,13 +59000,13 @@ $kendo-chart-pane-title-font-weight: $kendo-font-weight-normal !default;
57604
59000
 
57605
59001
  /// The color of the Chart grid lines (major).
57606
59002
  /// @group charts
57607
- $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;
57608
59004
 
57609
59005
  /// The color of the Chart grid lines (minor).
57610
59006
  /// @group charts
57611
- $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;
57612
59008
 
57613
- $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;
57614
59010
  $kendo-chart-area-opacity: .6 !default;
57615
59011
  $kendo-chart-area-inactive-opacity: .1 !default;
57616
59012
  $kendo-chart-line-inactive-opacity: .1 !default;
@@ -57621,20 +59017,20 @@ $kendo-chart-bg: $kendo-component-bg !default;
57621
59017
  $kendo-chart-text: $kendo-component-text !default;
57622
59018
  $kendo-chart-border: $kendo-component-border !default;
57623
59019
 
57624
- $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;
57625
59021
  $kendo-chart-crosshair-shared-tooltip-color: $kendo-chart-text !default;
57626
- $kendo-chart-crosshair-shared-tooltip-background: k-try-shade( $kendo-chart-bg, 1 ) !default;
57627
- $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;
57628
59024
 
57629
- $kendo-chart-notes-background: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 ) !default;
57630
- $kendo-chart-notes-border: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 ) !default;
57631
- $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;
57632
59028
 
57633
- $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;
57634
59030
 
57635
59031
  $kendo-chart-selection-handle-size: 22px !default;
57636
- $kendo-chart-selection-border-color: rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 ) !default;
57637
- $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;
57638
59034
 
57639
59035
 
57640
59036
  // TreeMap
@@ -58100,14 +59496,14 @@ $kendo-treemap-line-height: $kendo-line-height-md !default;
58100
59496
  series-30: $kendo-series-30,
58101
59497
 
58102
59498
  gauge-pointer: $kendo-color-primary,
58103
- 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 ))
58104
59500
  );
58105
59501
 
58106
59502
  @each $name, $value in $exported {
58107
59503
  $type: k-meta-type-of($value);
58108
59504
 
58109
59505
  .k-var--#{$name} {
58110
- @if $type == "color" {
59506
+ @if $type == "color" or $type == "string" {
58111
59507
  // background-color can store any color
58112
59508
  background-color: $value;
58113
59509
  } @else if $type == "number" {
@@ -58396,7 +59792,7 @@ $kendo-map-zoom-control-button-padding-y: $kendo-map-zoom-control-button-padding
58396
59792
  $kendo-map-attribution-padding-x: $kendo-padding-sm-x !default;
58397
59793
  $kendo-map-attribution-padding-y: $kendo-padding-sm-y !default;
58398
59794
  $kendo-map-attribution-font-size: ($kendo-map-font-size * .75) !default;
58399
- $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;
58400
59796
 
58401
59797
  $kendo-map-marker-fill: $kendo-color-primary !default;
58402
59798
 
@@ -58997,7 +60393,7 @@ $kendo-signature-lg-padding-y: $kendo-signature-lg-padding-x !default;
58997
60393
 
58998
60394
  $kendo-signature-line-width: 1px !default;
58999
60395
  $kendo-signature-line-style: dashed !default;
59000
- $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;
59001
60397
 
59002
60398
  $kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding-x} ) !default;
59003
60399
  $kendo-signature-sm-line-size: calc( 100% - 2 * #{$kendo-signature-sm-padding-x} ) !default;
@@ -59326,6 +60722,7 @@ $kendo-signature-maximized-line-width: 3px !default;
59326
60722
  @include kendo-pdf-viewer--styles();
59327
60723
  @include kendo-scroller--styles();
59328
60724
  @include kendo-scrollview--styles();
60725
+ @include kendo-prompt--styles();
59329
60726
 
59330
60727
 
59331
60728
  // Dataviz