@progress/kendo-theme-bootstrap 7.2.1-dev.7 → 7.2.1-dev.8

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 (46) hide show
  1. package/dist/all.scss +95 -100
  2. package/dist/meta/sassdoc-data.json +70 -70
  3. package/dist/meta/sassdoc-raw-data.json +35 -35
  4. package/lib/swatches/bootstrap-3-dark.json +1 -1
  5. package/lib/swatches/bootstrap-3.json +1 -1
  6. package/lib/swatches/bootstrap-4-dark.json +1 -1
  7. package/lib/swatches/bootstrap-4.json +1 -1
  8. package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
  9. package/lib/swatches/bootstrap-main-dark.json +1 -1
  10. package/lib/swatches/bootstrap-main.json +1 -1
  11. package/lib/swatches/bootstrap-nordic.json +1 -1
  12. package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
  13. package/lib/swatches/bootstrap-turquoise.json +1 -1
  14. package/lib/swatches/bootstrap-urban.json +1 -1
  15. package/lib/swatches/bootstrap-vintage.json +1 -1
  16. package/package.json +5 -5
  17. package/scss/breadcrumb/_variables.scss +1 -1
  18. package/scss/button/_variables.scss +1 -1
  19. package/scss/calendar/_variables.scss +1 -1
  20. package/scss/checkbox/_variables.scss +1 -1
  21. package/scss/core/color-system/_swatch-legacy.scss +1 -1
  22. package/scss/dataviz/_variables.scss +11 -11
  23. package/scss/dock-manager/_variables.scss +1 -1
  24. package/scss/fab/_theme.scss +6 -6
  25. package/scss/filter/_variables.scss +1 -1
  26. package/scss/gantt/_variables.scss +1 -1
  27. package/scss/grid/_variables.scss +6 -6
  28. package/scss/input/_variables.scss +3 -3
  29. package/scss/list/_variables.scss +1 -1
  30. package/scss/listview/_variables.scss +2 -2
  31. package/scss/map/_variables.scss +1 -1
  32. package/scss/mediaplayer/_variables.scss +1 -1
  33. package/scss/menu/_variables.scss +6 -6
  34. package/scss/pager/_variables.scss +1 -1
  35. package/scss/pivotgrid/_variables.scss +1 -1
  36. package/scss/signature/_variables.scss +1 -1
  37. package/scss/skeleton/_variables.scss +1 -1
  38. package/scss/slider/_variables.scss +1 -1
  39. package/scss/spreadsheet/_variables.scss +4 -4
  40. package/scss/stepper/_variables.scss +3 -3
  41. package/scss/switch/_variables.scss +2 -2
  42. package/scss/table/_variables.scss +3 -3
  43. package/scss/taskboard/_variables.scss +1 -1
  44. package/scss/timeline/_variables.scss +3 -3
  45. package/scss/toolbar/_variables.scss +1 -1
  46. package/scss/treeview/_variables.scss +1 -1
package/dist/all.scss CHANGED
@@ -5634,7 +5634,7 @@ $kendo-palettes: (
5634
5634
  color-on-subtle: k-color( #{$color}-on-subtle ),
5635
5635
  on-color: k-color( on-#{$color} ),
5636
5636
  color-on-surface: k-color( #{$color}-on-surface ),
5637
- on-color-disabled: rgba( k-color( on-#{$color}, true ), .46)
5637
+ on-color-disabled: color-mix(in srgb, k-color( on-#{$color} ) 46%, transparent)
5638
5638
  );
5639
5639
 
5640
5640
  @return if( k-map-has-key( $map, $name ), k-map-get( $map, $name ), $name );
@@ -5897,15 +5897,11 @@ $_default-colors: (
5897
5897
  $kendo-colors: $_default-colors !default;
5898
5898
  $kendo-colors: k-map-merge($_default-colors, $kendo-colors);
5899
5899
 
5900
- @function k-color($key, $rgb: false) {
5900
+ @function k-color($key) {
5901
5901
  $_color: k-map-get($kendo-colors, $key);
5902
5902
 
5903
5903
  @if ($_color) {
5904
- @if ($rgb) {
5905
- @return var(--kendo-color-#{$key}-rgb, k-hex-to-rgb($_color));
5906
- } @else {
5907
- @return var(--kendo-color-#{$key}, $_color);
5908
- }
5904
+ @return var(--kendo-color-#{$key}, $_color);
5909
5905
  } @else {
5910
5906
  @error "Color Variable \`#{$key}\` does not exists in the color collection.";
5911
5907
  }
@@ -5916,7 +5912,6 @@ $kendo-colors: k-map-merge($_default-colors, $kendo-colors);
5916
5912
  @each $key, $value in $kendo-colors {
5917
5913
  @if($value) {
5918
5914
  --kendo-color-#{$key}: #{$value};
5919
- --kendo-color-#{$key}-rgb: #{k-hex-to-rgb($value)};
5920
5915
  }
5921
5916
  }
5922
5917
  }
@@ -7638,7 +7633,7 @@ $kendo-zindex-loading: 100 !default;
7638
7633
  $kendo-invalid-bg: null;
7639
7634
  $kendo-invalid-text: $kendo-color-error;
7640
7635
  $kendo-invalid-border: $kendo-color-error;
7641
- $kendo-invalid-shadow: 0 0 0 .25rem rgba( k-color( error, true ), .25 );
7636
+ $kendo-invalid-shadow: 0 0 0 .25rem color-mix(in srgb, k-color( error ) 25%, transparent);
7642
7637
 
7643
7638
  $kendo-theme-colors: (
7644
7639
  "primary": $kendo-color-primary,
@@ -18021,7 +18016,7 @@ $kendo-list-item-focus-bg: null !default;
18021
18016
  $kendo-list-item-focus-text: null !default;
18022
18017
  /// The box shadow of the focused List items.
18023
18018
  /// @group list
18024
- $kendo-list-item-focus-shadow: inset 0 0 0 3px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .15 ), rgba( $kendo-list-text, .15 )) !default;
18019
+ $kendo-list-item-focus-shadow: inset 0 0 0 3px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 15%, transparent), rgba( $kendo-list-text, .15 )) !default;
18025
18020
 
18026
18021
  /// The background color of the selected List items.
18027
18022
  /// @group list
@@ -18154,7 +18149,7 @@ $kendo-checkbox-indeterminate-border: $kendo-checkbox-checked-border !default;
18154
18149
  $kendo-checkbox-focus-border: if($kendo-enable-color-system, k-color( primary-emphasis ), k-try-tint( $kendo-color-primary, 50% )) !default;
18155
18150
  /// The box shadow of the focused CheckBox.
18156
18151
  /// @group checkbox
18157
- $kendo-checkbox-focus-shadow: 0 0 0 .25rem if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-color-primary, .25 )) !default;
18152
+ $kendo-checkbox-focus-shadow: 0 0 0 .25rem if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-color-primary, .25 )) !default;
18158
18153
  /// The border color of the focused and checked CheckBox.
18159
18154
  /// @group checkbox
18160
18155
  $kendo-checkbox-focus-checked-border: $kendo-checkbox-checked-border !default;
@@ -19930,7 +19925,7 @@ $kendo-table-group-row-border: $kendo-table-header-border !default;
19930
19925
 
19931
19926
  /// Background color of alternating rows in table.
19932
19927
  /// @group table
19933
- $kendo-table-alt-row-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .05 ), rgba( k-contrast-color( $kendo-table-bg ), .04 )) !default;
19928
+ $kendo-table-alt-row-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 5%, transparent), rgba( k-contrast-color( $kendo-table-bg ), .04 )) !default;
19934
19929
  /// Text color of alternating rows in table.
19935
19930
  /// @group table
19936
19931
  $kendo-table-alt-row-text: null !default;
@@ -19941,7 +19936,7 @@ $kendo-table-alt-row-border: null !default;
19941
19936
 
19942
19937
  /// Background color of hovered rows in table.
19943
19938
  /// @group table
19944
- $kendo-table-hover-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .09 ), rgba( k-contrast-color( $kendo-table-bg ), .08 )) !default;
19939
+ $kendo-table-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 9%, transparent), rgba( k-contrast-color( $kendo-table-bg ), .08 )) !default;
19945
19940
  /// Text color of hovered rows in table.
19946
19941
  /// @group table
19947
19942
  $kendo-table-hover-text: null !default;
@@ -19966,7 +19961,7 @@ $kendo-table-focus-shadow: inset 0 0 0 2px rgba( $kendo-color-black, .08) !defau
19966
19961
 
19967
19962
  /// Background color of selected rows in table.
19968
19963
  /// @group table
19969
- $kendo-table-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
19964
+ $kendo-table-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
19970
19965
  /// Text color of selected rows in table.
19971
19966
  /// @group table
19972
19967
  $kendo-table-selected-text: $kendo-table-text !default;
@@ -21293,7 +21288,7 @@ $kendo-button-focus-border: if($kendo-enable-color-system, k-color( base-active
21293
21288
  $kendo-button-focus-gradient: null !default;
21294
21289
  /// The base shadow of the focused Button.
21295
21290
  /// @group button
21296
- $kendo-button-focus-shadow: 0 0 0 .25rem if($kendo-enable-color-system, rgba( k-color( border, true ), .5), rgba( $kendo-button-border, .5 )) !default;
21291
+ $kendo-button-focus-shadow: 0 0 0 .25rem if($kendo-enable-color-system, color-mix(in srgb, k-color( border ) 50%, transparent), rgba( $kendo-button-border, .5 )) !default;
21297
21292
 
21298
21293
  /// The base background of the disabled Button.
21299
21294
  /// @group button
@@ -21761,7 +21756,7 @@ $kendo-chip-list-sizes: (
21761
21756
 
21762
21757
  &:focus,
21763
21758
  &.k-focus {
21764
- @include focus-indicator( 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( $name, true ), .16 ), rgba( $color, .16 )) );
21759
+ @include focus-indicator( 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 16%, transparent), rgba( $color, .16 )) );
21765
21760
  }
21766
21761
 
21767
21762
  &:hover,
@@ -21815,7 +21810,7 @@ $kendo-chip-list-sizes: (
21815
21810
 
21816
21811
  &:focus,
21817
21812
  &.k-focus {
21818
- @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 ))) );
21813
+ @include focus-indicator( 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 16%, transparent), if( $kendo-is-dark-theme, rgba( k-color-tint( $color, 50% ), .32 ), rgba( $color, .16 ))) );
21819
21814
  }
21820
21815
 
21821
21816
  &:hover,
@@ -21841,7 +21836,7 @@ $kendo-chip-list-sizes: (
21841
21836
 
21842
21837
  &:focus,
21843
21838
  &.k-focus {
21844
- @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 ))) );
21839
+ @include focus-indicator( 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 16%, transparent), if( $kendo-is-dark-theme, rgba( k-color-tint( $color, 50% ), .32 ), rgba( $color, .16 ))) );
21845
21840
  }
21846
21841
 
21847
21842
  &:hover,
@@ -22905,7 +22900,7 @@ $kendo-skeleton-circle-border-radius: 9999px !default;
22905
22900
 
22906
22901
  /// The background color of the Skeleton item.
22907
22902
  /// @group skeleton
22908
- $kendo-skeleton-item-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .2 ), rgba( $kendo-color-inverse, .2 )) !default;
22903
+ $kendo-skeleton-item-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 20%, transparent), rgba( $kendo-color-inverse, .2 )) !default;
22909
22904
  /// The background color of the Skeleton wave animation.
22910
22905
  /// @group skeleton
22911
22906
  $kendo-skeleton-wave-bg: rgba( black, .04 ) !default;
@@ -23630,7 +23625,7 @@ $_kendo-module-meta: (
23630
23625
  &:focus,
23631
23626
  &.k-focus {
23632
23627
  @if ( $kendo-solid-button-shadow ) {
23633
- @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 );
23628
+ @include focus-indicator( 0 0 $kendo-solid-button-shadow-blur $kendo-solid-button-shadow-spread if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) ( $kendo-solid-button-shadow-opacity * 100% ), transparent), rgba( $_button-border, $kendo-solid-button-shadow-opacity )), true, true );
23634
23629
  }
23635
23630
  }
23636
23631
 
@@ -23700,9 +23695,9 @@ $_kendo-module-meta: (
23700
23695
  &.k-focus {
23701
23696
  @if $kendo-outline-button-shadow {
23702
23697
  @if $name == "base" {
23703
- @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 );
23698
+ @include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) ( $kendo-outline-button-shadow-opacity * 100% ), transparent), rgba( $color, $kendo-outline-button-shadow-opacity )), true, true );
23704
23699
  } @else {
23705
- @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 );
23700
+ @include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) ( $kendo-outline-button-shadow-opacity * 100% ), transparent), rgba( $color, $kendo-outline-button-shadow-opacity )), true, true );
23706
23701
  }
23707
23702
  }
23708
23703
  }
@@ -23785,9 +23780,9 @@ $_kendo-module-meta: (
23785
23780
  &.k-focus {
23786
23781
  @if ( $kendo-link-button-shadow ) {
23787
23782
  @if $name == "base" {
23788
- @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 );
23783
+ @include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) ( $kendo-link-button-shadow-opacity * 100% ), transparent), rgba( $color, $kendo-link-button-shadow-opacity )), true, true );
23789
23784
  } @else {
23790
- @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 );
23785
+ @include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) ( $kendo-link-button-shadow-opacity * 100% ), transparent), rgba( $color, $kendo-link-button-shadow-opacity )), true, true );
23791
23786
  }
23792
23787
  }
23793
23788
  }
@@ -23945,31 +23940,31 @@ $kendo-menu-item-spacing: 0 !default;
23945
23940
  $kendo-menu-item-icon-spacing: $kendo-icon-spacing !default;
23946
23941
 
23947
23942
  $kendo-menu-item-bg: null !default;
23948
- $kendo-menu-item-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-menu-text, .5 )) !default;
23943
+ $kendo-menu-item-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( $kendo-menu-text, .5 )) !default;
23949
23944
  $kendo-menu-item-border: null !default;
23950
23945
  $kendo-menu-item-gradient: null !default;
23951
23946
 
23952
23947
  $kendo-menu-item-hover-bg: null !default;
23953
- $kendo-menu-item-hover-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .7 ), rgba( $kendo-menu-text, .7 )) !default;
23948
+ $kendo-menu-item-hover-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 70%, transparent), rgba( $kendo-menu-text, .7 )) !default;
23954
23949
  $kendo-menu-item-hover-border: null !default;
23955
23950
  $kendo-menu-item-hover-gradient: null !default;
23956
23951
 
23957
23952
  $kendo-menu-item-expanded-bg: null !default;
23958
- $kendo-menu-item-expanded-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .9 ), rgba( $kendo-menu-text, .9 )) !default;
23953
+ $kendo-menu-item-expanded-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 90%, transparent), rgba( $kendo-menu-text, .9 )) !default;
23959
23954
  $kendo-menu-item-expanded-border: null !default;
23960
23955
  $kendo-menu-item-expanded-gradient: null !default;
23961
23956
 
23962
- $kendo-menu-item-focus-shadow: inset 0 0 0 3px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .15 ), rgba( $kendo-menu-text, .15 )) !default;
23957
+ $kendo-menu-item-focus-shadow: inset 0 0 0 3px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 15%, transparent), rgba( $kendo-menu-text, .15 )) !default;
23963
23958
 
23964
23959
  $kendo-menu-separator-spacing: k-map-get( $kendo-spacing, 1 ) !default;
23965
23960
 
23966
23961
  $kendo-menu-scroll-button-bg: $kendo-menu-bg !default;
23967
- $kendo-menu-scroll-button-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-menu-text, .5 )) !default;
23962
+ $kendo-menu-scroll-button-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( $kendo-menu-text, .5 )) !default;
23968
23963
  $kendo-menu-scroll-button-border: $kendo-menu-border !default;
23969
23964
  $kendo-menu-scroll-button-gradient: null !default;
23970
23965
 
23971
23966
  $kendo-menu-scroll-button-hover-bg: null !default;
23972
- $kendo-menu-scroll-button-hover-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .7 ), rgba( $kendo-menu-text, .7 )) !default;
23967
+ $kendo-menu-scroll-button-hover-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 70%, transparent), rgba( $kendo-menu-text, .7 )) !default;
23973
23968
  $kendo-menu-scroll-button-hover-border: null !default;
23974
23969
  $kendo-menu-scroll-button-hover-gradient: null !default;
23975
23970
 
@@ -24732,7 +24727,7 @@ $kendo-toolbar-input-width: 10em !default;
24732
24727
 
24733
24728
  /// The box shadow of the focused Toolbar item.
24734
24729
  /// @group toolbar
24735
- $kendo-toolbar-item-shadow: 0 0 0 .25rem if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-color-primary, .25 )) !default;
24730
+ $kendo-toolbar-item-shadow: 0 0 0 .25rem if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-color-primary, .25 )) !default;
24736
24731
 
24737
24732
  /// Border width of the flat Toolbar.
24738
24733
  /// @group toolbar
@@ -25502,7 +25497,7 @@ $kendo-input-outline-bg: null !default;
25502
25497
  $kendo-input-outline-text: $kendo-base-text !default;
25503
25498
  /// The border color of the outline Input components.
25504
25499
  /// @group input
25505
- $kendo-input-outline-border: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-base-text, .5 )) !default;
25500
+ $kendo-input-outline-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( $kendo-base-text, .5 )) !default;
25506
25501
 
25507
25502
  /// The background color of the outline hovered Input components.
25508
25503
  /// @group input
@@ -25693,7 +25688,7 @@ $kendo-picker-outline-bg: null !default;
25693
25688
  $kendo-picker-outline-text: $kendo-button-text !default;
25694
25689
  /// The border color of the outline Picker components.
25695
25690
  /// @group picker
25696
- $kendo-picker-outline-border: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-picker-outline-text, .5 )) !default;
25691
+ $kendo-picker-outline-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( $kendo-picker-outline-text, .5 )) !default;
25697
25692
 
25698
25693
  /// The background color of the outline hovered Picker components.
25699
25694
  /// @group picker
@@ -25740,7 +25735,7 @@ $kendo-picker-flat-border: $kendo-button-border !default;
25740
25735
 
25741
25736
  /// The background color of the flat hovered Picker components.
25742
25737
  /// @group picker
25743
- $kendo-picker-flat-hover-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .08 ), rgba( $kendo-button-text, .08 )) !default;
25738
+ $kendo-picker-flat-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 8%, transparent), rgba( $kendo-button-text, .08 )) !default;
25744
25739
  /// The text color of the flat hovered Picker components.
25745
25740
  /// @group picker
25746
25741
  $kendo-picker-flat-hover-text: null !default;
@@ -29532,7 +29527,7 @@ $kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
29532
29527
 
29533
29528
  .k-progressbar-indeterminate {
29534
29529
  @include fill( $kendo-progressbar-indeterminate-text, $kendo-progressbar-indeterminate-bg, $kendo-progressbar-indeterminate-border );
29535
- @include striped-gradient( if($kendo-enable-color-system, rgba( k-color( base-emphasis, true ), .55 ), k-color-shade($kendo-progressbar-indeterminate-bg)) );
29530
+ @include striped-gradient( if($kendo-enable-color-system, color-mix(in srgb, k-color( base-emphasis ) 55%, transparent), k-color-shade($kendo-progressbar-indeterminate-bg)) );
29536
29531
  background-size: $kendo-progressbar-height $kendo-progressbar-height;
29537
29532
  animation: kendo-progressbar-indeterminate-animation $kendo-progressbar-animation-timing;
29538
29533
  }
@@ -30299,7 +30294,7 @@ $kendo-slider-draghandle-pressed-gradient: null !default;
30299
30294
 
30300
30295
  /// The shadow of the focused Slider drag handle.
30301
30296
  /// @group slider
30302
- $kendo-slider-draghandle-focus-shadow: 0 0 0 3px if($kendo-enable-color-system, rgba( k-color( primary, true ), .5 ), rgba( $kendo-color-primary, .5 )) !default;
30297
+ $kendo-slider-draghandle-focus-shadow: 0 0 0 3px if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 50%, transparent), rgba( $kendo-color-primary, .5 )) !default;
30303
30298
 
30304
30299
  /// The transition speed of the Slider.
30305
30300
  /// @group slider
@@ -30977,7 +30972,7 @@ $kendo-calendar-cell-selected-hover-border: $kendo-selected-hover-border !defaul
30977
30972
  $kendo-calendar-cell-selected-hover-gradient: null !default;
30978
30973
 
30979
30974
  $kendo-calendar-cell-focus-shadow: inset $kendo-button-focus-shadow !default;
30980
- $kendo-calendar-cell-selected-focus-shadow: inset 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( primary-active, true ), .5 ), rgba( k-color-darken( $kendo-color-primary, 12.5% ), .5 )) !default;
30975
+ $kendo-calendar-cell-selected-focus-shadow: inset 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( primary-active ) 50%, transparent), rgba( k-color-darken( $kendo-color-primary, 12.5% ), .5 )) !default;
30981
30976
 
30982
30977
 
30983
30978
  // Calendar navigation
@@ -31728,7 +31723,7 @@ $kendo-calendar-sizes: (
31728
31723
  .k-calendar { // stylelint-disable-line
31729
31724
 
31730
31725
  $kendo-calendar-range-gap: 1px !default;
31731
- $kendo-calendar-range-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-calendar-cell-selected-bg, .25 ));
31726
+ $kendo-calendar-range-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-calendar-cell-selected-bg, .25 ));
31732
31727
  $kendo-calendar-range-split-size: 5px !default;
31733
31728
 
31734
31729
  .k-range-start,
@@ -35334,7 +35329,7 @@ $kendo-treeview-item-selected-gradient: null !default;
35334
35329
 
35335
35330
  /// The box shadow of focused TreeView items.
35336
35331
  /// @group treeview
35337
- $kendo-treeview-item-focus-shadow: inset 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .15 ), rgba( $kendo-treeview-text, .15 )) !default;
35332
+ $kendo-treeview-item-focus-shadow: inset 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 15%, transparent), rgba( $kendo-treeview-text, .15 )) !default;
35338
35333
 
35339
35334
  /// The background color of the Load More button in the TreeView.
35340
35335
  /// @group treeview
@@ -36396,7 +36391,7 @@ $kendo-switch-off-track-focus-border: if($kendo-enable-color-system, k-color( pr
36396
36391
  $kendo-switch-off-track-focus-gradient: null !default;
36397
36392
  /// The ring around the track when the focused Switch is not checked.
36398
36393
  /// @group switch
36399
- $kendo-switch-off-track-focus-ring: .25rem solid if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-color-primary, .25 )) !default;
36394
+ $kendo-switch-off-track-focus-ring: .25rem solid if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-color-primary, .25 )) !default;
36400
36395
 
36401
36396
  /// The background of the track when the disabled Switch is not checked.
36402
36397
  /// @group switch
@@ -36478,7 +36473,7 @@ $kendo-switch-on-track-focus-border: null !default;
36478
36473
  $kendo-switch-on-track-focus-gradient: null !default;
36479
36474
  /// The ring around the track when the focused Switch is checked.
36480
36475
  /// @group switch
36481
- $kendo-switch-on-track-focus-ring: .25rem solid if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-switch-on-track-border, .25 )) !default;
36476
+ $kendo-switch-on-track-focus-ring: .25rem solid if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-switch-on-track-border, .25 )) !default;
36482
36477
 
36483
36478
  /// The background of the track when the disabled Switch is checked.
36484
36479
  /// @group switch
@@ -36759,7 +36754,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
36759
36754
  $kendo-switch-off-track-focus-gradient
36760
36755
  );
36761
36756
  @if $kendo-enable-focus-contrast {
36762
- @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 )) );
36757
+ @include box-shadow( 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )) );
36763
36758
  } @else {
36764
36759
  outline: $kendo-switch-off-track-focus-ring;
36765
36760
  }
@@ -36839,7 +36834,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
36839
36834
  $kendo-switch-on-track-focus-gradient
36840
36835
  );
36841
36836
  @if $kendo-enable-focus-contrast {
36842
- @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 )) );
36837
+ @include box-shadow( 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )) );
36843
36838
  } @else {
36844
36839
  outline: $kendo-switch-on-track-focus-ring;
36845
36840
  }
@@ -38340,7 +38335,7 @@ $kendo-fab-item-outline-color: $kendo-button-bg !default;
38340
38335
  @if $kendo-enable-focus-contrast {
38341
38336
  @include box-shadow( inset 0 0 0 2px currentColor );
38342
38337
  } @else {
38343
- outline: $kendo-fab-outline-style $kendo-fab-outline-width if($kendo-enable-color-system, rgba( k-color( $name, true ), .3 ), rgba( $color, .3 ));
38338
+ outline: $kendo-fab-outline-style $kendo-fab-outline-width if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 30%, transparent), rgba( $color, .3 ));
38344
38339
  }
38345
38340
  }
38346
38341
  }
@@ -38361,8 +38356,8 @@ $kendo-fab-item-outline-color: $kendo-button-bg !default;
38361
38356
  .k-disabled.k-fab-solid-#{$name},
38362
38357
  .k-fab-solid-#{$name}:disabled {
38363
38358
  @include box-shadow($kendo-fab-disabled-shadow);
38364
- background-color: if($kendo-enable-color-system, rgba( k-color( $name, true ), .6 ), k-try-tint( $color, 5 ));
38365
- color: if($kendo-enable-color-system, rgba( k-color( on-#{$name}, true ), .6 ), k-try-tint( k-contrast-legacy( $color ), 5 ));
38359
+ background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 60%, transparent), k-try-tint( $color, 5 ));
38360
+ color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-#{$name} ) 60%, transparent), k-try-tint( k-contrast-legacy( $color ), 5 ));
38366
38361
  opacity: 1;
38367
38362
  }
38368
38363
  }
@@ -38401,7 +38396,7 @@ $kendo-fab-item-outline-color: $kendo-button-bg !default;
38401
38396
  .k-fab-item.k-focus .k-fab-item-text,
38402
38397
  .k-fab-item.k-focus .k-fab-item-icon {
38403
38398
  @if $kendo-enable-focus-contrast {
38404
- @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 )) );
38399
+ @include box-shadow( inset 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )) );
38405
38400
  } @else {
38406
38401
  outline: $kendo-fab-item-outline-style $kendo-fab-item-outline-width $kendo-fab-item-outline-color;
38407
38402
  }
@@ -38423,8 +38418,8 @@ $kendo-fab-item-outline-color: $kendo-button-bg !default;
38423
38418
  .k-fab-item-text,
38424
38419
  .k-fab-item-icon {
38425
38420
  @include box-shadow($kendo-fab-item-disabled-shadow);
38426
- background-color: if($kendo-enable-color-system, rgba( k-color( base, true ), .6 ), k-try-tint( $kendo-fab-item-bg, 5 ));
38427
- color: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .6 ), k-try-tint( $kendo-fab-item-text, 5 ));
38421
+ background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( base ) 60%, transparent), k-try-tint( $kendo-fab-item-bg, 5 ));
38422
+ color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 60%, transparent), k-try-tint( $kendo-fab-item-text, 5 ));
38428
38423
  }
38429
38424
  }
38430
38425
 
@@ -38471,7 +38466,7 @@ $kendo-fab-item-outline-color: $kendo-button-bg !default;
38471
38466
  @each $name, $color in $kendo-fab-theme-colors {
38472
38467
  .k-fab-solid-#{$name}:focus,
38473
38468
  .k-fab-solid-#{$name}.k-focus {
38474
- outline: $kendo-fab-outline-width $kendo-fab-outline-style if($kendo-enable-color-system, rgba( k-color( $name, true ), .5 ), rgba( $color, .5 ));
38469
+ outline: $kendo-fab-outline-width $kendo-fab-outline-style if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 50%, transparent), rgba( $color, .5 ));
38475
38470
  }
38476
38471
  }
38477
38472
 
@@ -38492,8 +38487,8 @@ $kendo-fab-item-outline-color: $kendo-button-bg !default;
38492
38487
  .k-fab-solid-#{$name}:disabled,
38493
38488
  .k-fab-solid-#{$name}.k-disabled {
38494
38489
  @include box-shadow( $kendo-fab-disabled-shadow );
38495
- background-color: if($kendo-enable-color-system, rgba( k-color( $name, true ), .65 ), k-try-tint( $color, 4.5 ));
38496
- color: if($kendo-enable-color-system, rgba( k-color( on-#{$name}, true ), .65 ), k-try-tint( k-contrast-color( $color ), 5 ));
38490
+ background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 65%, transparent), k-try-tint( $color, 4.5 ));
38491
+ color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-#{$name} ) 65%, transparent), k-try-tint( k-contrast-color( $color ), 5 ));
38497
38492
  opacity: 1;
38498
38493
  }
38499
38494
  }
@@ -38534,7 +38529,7 @@ $kendo-fab-item-outline-color: $kendo-button-bg !default;
38534
38529
  .k-fab-item.k-focus .k-fab-item-text,
38535
38530
  .k-fab-item:focus .k-fab-item-icon,
38536
38531
  .k-fab-item.k-focus .k-fab-item-icon {
38537
- outline: $kendo-fab-item-outline-width $kendo-fab-item-outline-style if($kendo-enable-color-system, rgba( k-color( base, true ), .5 ), rgba( $kendo-fab-item-icon-border, .5 ));
38532
+ outline: $kendo-fab-item-outline-width $kendo-fab-item-outline-style if($kendo-enable-color-system, color-mix(in srgb, k-color( base ) 50%, transparent), rgba( $kendo-fab-item-icon-border, .5 ));
38538
38533
  }
38539
38534
 
38540
38535
  // Active state
@@ -38556,8 +38551,8 @@ $kendo-fab-item-outline-color: $kendo-button-bg !default;
38556
38551
  .k-fab-item-text,
38557
38552
  .k-fab-item-icon {
38558
38553
  @include box-shadow( $kendo-fab-item-disabled-shadow );
38559
- background-color: if($kendo-enable-color-system, rgba( k-color( base, true ), .65 ), k-try-tint( $kendo-fab-item-bg, 8 ));
38560
- color: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .65 ), k-try-tint( $kendo-fab-item-text, 8 ));
38554
+ background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( base ) 65%, transparent), k-try-tint( $kendo-fab-item-bg, 8 ));
38555
+ color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 65%, transparent), k-try-tint( $kendo-fab-item-text, 8 ));
38561
38556
  }
38562
38557
  }
38563
38558
 
@@ -41830,13 +41825,13 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
41830
41825
  @each $name, $color in $kendo-theme-colors {
41831
41826
  .k-bottom-nav-solid-#{$name} {
41832
41827
  @include fill(
41833
- $color: if($kendo-enable-color-system, rgba( k-color( on-#{$name}, true ), .65 ), k-true-mix( $color, k-contrast-legacy( $color ), 35%)),
41828
+ $color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-#{$name} ) 65%, transparent), k-true-mix( $color, k-contrast-legacy( $color ), 35%)),
41834
41829
  $bg: $color
41835
41830
  );
41836
41831
 
41837
41832
  .k-bottom-nav-item.k-focus,
41838
41833
  .k-bottom-nav-item:focus {
41839
- @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)));
41834
+ @include fill( $bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-#{$name} ) 12.5%, transparent), rgba(k-true-mix( $color, k-contrast-legacy( $color ), 35%), .2)));
41840
41835
  }
41841
41836
 
41842
41837
  .k-bottom-nav-item.k-selected {
@@ -41860,7 +41855,7 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
41860
41855
 
41861
41856
  .k-bottom-nav-item.k-focus,
41862
41857
  .k-bottom-nav-item:focus {
41863
- @include fill( $bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .05), rgba($kendo-bottom-nav-flat-text, .05)) );
41858
+ @include fill( $bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 5%, transparent), rgba($kendo-bottom-nav-flat-text, .05)) );
41864
41859
  }
41865
41860
 
41866
41861
  .k-bottom-nav-item.k-selected {
@@ -42104,7 +42099,7 @@ $kendo-breadcrumb-link-focus-text: null !default;
42104
42099
  $kendo-breadcrumb-link-focus-border: null !default;
42105
42100
  /// The box shadow of the focused Breadcrumb link.
42106
42101
  /// @group breadcrumb
42107
- $kendo-breadcrumb-link-focus-shadow: inset 0 0 0 3px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .25 ), rgba( $kendo-breadcrumb-text, .25 )) !default;
42102
+ $kendo-breadcrumb-link-focus-shadow: inset 0 0 0 3px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 25%, transparent), rgba( $kendo-breadcrumb-text, .25 )) !default;
42108
42103
 
42109
42104
  /// The background color of the Breadcrumb root link.
42110
42105
  /// @group breadcrumb
@@ -42643,7 +42638,7 @@ $kendo-pager-item-focus-opacity: null !default;
42643
42638
  $kendo-pager-item-focus-bg: $kendo-pager-item-bg !default;
42644
42639
  /// The box shadow of the focused Pager items.
42645
42640
  /// @group pager
42646
- $kendo-pager-item-focus-shadow: 0 0 0 3px if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-color-primary, .25)) !default;
42641
+ $kendo-pager-item-focus-shadow: 0 0 0 3px if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-color-primary, .25)) !default;
42647
42642
 
42648
42643
  /// The border radius of the Pager numbers.
42649
42644
  /// @group pager
@@ -43090,7 +43085,7 @@ $kendo-stepper-indicator-hover-border: null !default;
43090
43085
  $kendo-stepper-indicator-disabled-bg: null !default;
43091
43086
  /// The text color of the disabled Stepper indicator.
43092
43087
  /// @group stepper
43093
- $kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .65 ), $kendo-disabled-text) !default;
43088
+ $kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 65%, transparent), $kendo-disabled-text) !default;
43094
43089
  /// The border color of the disabled Stepper indicator.
43095
43090
  /// @group stepper
43096
43091
  $kendo-stepper-indicator-disabled-border: null !default;
@@ -43117,7 +43112,7 @@ $kendo-stepper-indicator-done-hover-border: null !default;
43117
43112
 
43118
43113
  /// The background color of the Stepper's disabled done indicator.
43119
43114
  /// @group stepper
43120
- $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;
43115
+ $kendo-stepper-indicator-done-disabled-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 60%, transparent), k-color-mix( $kendo-stepper-indicator-done-bg, $kendo-component-bg, 60%)) !default;
43121
43116
  /// The text color of the Stepper's disabled done indicator.
43122
43117
  /// @group stepper
43123
43118
  $kendo-stepper-indicator-done-disabled-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-color( $kendo-stepper-indicator-done-bg )) !default;
@@ -43169,7 +43164,7 @@ $kendo-stepper-label-error-text: $kendo-color-error !default;
43169
43164
  $kendo-stepper-label-hover-text: null !default;
43170
43165
  /// The text color of the disabled Stepper label.
43171
43166
  /// @group stepper
43172
- $kendo-stepper-label-disabled-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .65 ), $kendo-disabled-text) !default;
43167
+ $kendo-stepper-label-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 65%, transparent), $kendo-disabled-text) !default;
43173
43168
 
43174
43169
  /// The text color of the optional Stepper label.
43175
43170
  /// @group stepper
@@ -46295,7 +46290,7 @@ $kendo-dock-manager-dock-preview-border-style: dashed !default;
46295
46290
  $kendo-dock-manager-dock-preview-border-radius: $kendo-border-radius-sm !default;
46296
46291
  /// The background color of the dropping area in the DockManager component.
46297
46292
  /// @group dock-manager
46298
- $kendo-dock-manager-dock-preview-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .16 ), rgba( $kendo-color-primary, .16 )) !default;
46293
+ $kendo-dock-manager-dock-preview-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 16%, transparent), rgba( $kendo-color-primary, .16 )) !default;
46299
46294
  /// The border color of the dropping area in the DockManager component.
46300
46295
  /// @group dock-manager
46301
46296
  $kendo-dock-manager-dock-preview-border: $kendo-color-primary !default;
@@ -47650,7 +47645,7 @@ $kendo-grid-selection-aggregates-font-weight: $kendo-font-weight-bold !default;
47650
47645
  $kendo-grid-grouping-row-bg: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-grid-bg )) !default;
47651
47646
  $kendo-grid-grouping-row-text: $kendo-grid-text !default;
47652
47647
 
47653
- $kendo-grid-sorted-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .02 ), rgba( k-contrast-color( $kendo-grid-bg ), .02 )) !default;
47648
+ $kendo-grid-sorted-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 2%, transparent), rgba( k-contrast-color( $kendo-grid-bg ), .02 )) !default;
47654
47649
  $kendo-grid-sorting-indicator-text: $kendo-color-primary !default;
47655
47650
  $kendo-grid-sorting-index-font-size: ($kendo-icon-size * .75) !default;
47656
47651
  $kendo-grid-sorting-index-height: $kendo-icon-size !default;
@@ -47668,7 +47663,7 @@ $kendo-grid-command-cell-padding-y: calc( #{$kendo-grid-cell-padding-y} - (#{$ke
47668
47663
  // Must be a solid color
47669
47664
  $kendo-grid-sticky-bg: $kendo-grid-bg !default;
47670
47665
  $kendo-grid-sticky-text: $kendo-grid-text !default;
47671
- $kendo-grid-sticky-border: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba($kendo-grid-text, .5)) !default;
47666
+ $kendo-grid-sticky-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba($kendo-grid-text, .5)) !default;
47672
47667
 
47673
47668
  // Must be a solid color
47674
47669
  $kendo-grid-sticky-alt-bg: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-grid-bg, .5 )) !default;
@@ -47680,12 +47675,12 @@ $kendo-grid-sticky-header-border: $kendo-grid-sticky-border !default;
47680
47675
  $kendo-grid-sticky-footer-bg: $kendo-grid-header-bg !default;
47681
47676
  $kendo-grid-sticky-footer-hover-bg: $kendo-grid-sticky-footer-bg !default;
47682
47677
 
47683
- $kendo-grid-sticky-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), k-color-mix( $kendo-selected-bg, $kendo-grid-bg, 25% )) !default;
47684
- $kendo-grid-sticky-selected-alt-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .24 ), k-color-shade( $kendo-grid-sticky-selected-bg, .4 )) !default;
47678
+ $kendo-grid-sticky-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), k-color-mix( $kendo-selected-bg, $kendo-grid-bg, 25% )) !default;
47679
+ $kendo-grid-sticky-selected-alt-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 24%, transparent), k-color-shade( $kendo-grid-sticky-selected-bg, .4 )) !default;
47685
47680
 
47686
47681
  // Must be a solid color
47687
47682
  $kendo-grid-sticky-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-hover ), k-try-shade( $kendo-grid-bg )) !default;
47688
- $kendo-grid-sticky-selected-hover-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .24 ), k-color-shade( $kendo-grid-sticky-selected-bg, .7 )) !default;
47683
+ $kendo-grid-sticky-selected-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 24%, transparent), k-color-shade( $kendo-grid-sticky-selected-bg, .7 )) !default;
47689
47684
 
47690
47685
  $kendo-grid-column-menu-width: 250px !default;
47691
47686
  $kendo-grid-column-menu-max-width: 320px !default;
@@ -47736,7 +47731,7 @@ $kendo-grid-group-footer-second-cell-border: 1px !default;
47736
47731
 
47737
47732
  /// Background color of the grid row resize indicator
47738
47733
  /// @group grid
47739
- $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;
47734
+ $kendo-grid-row-resizer-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 20%, transparent), rgba( k-contrast-color( $kendo-grid-bg ), .12 )) !default;
47740
47735
  /// Active background color of the grid row resize indicator
47741
47736
  /// @group grid
47742
47737
  $kendo-grid-row-resizer-active-bg: $kendo-color-primary !default;
@@ -50305,7 +50300,7 @@ $kendo-listview-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
50305
50300
  $kendo-listview-item-selected-text: null !default;
50306
50301
  /// The background color of the selected ListView items.
50307
50302
  /// @group listview
50308
- $kendo-listview-item-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
50303
+ $kendo-listview-item-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
50309
50304
  /// The border color of the selected ListView items.
50310
50305
  /// @group listview
50311
50306
  $kendo-listview-item-selected-border: null !default;
@@ -50321,7 +50316,7 @@ $kendo-listview-item-focus-bg: null !default;
50321
50316
  $kendo-listview-item-focus-border: null !default;
50322
50317
  /// The box shadow of the focused ListView items.
50323
50318
  /// @group listview
50324
- $kendo-listview-item-focus-shadow: inset 0 0 0 3px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .15 ), rgba( $kendo-listview-text, .15 )) !default;
50319
+ $kendo-listview-item-focus-shadow: inset 0 0 0 3px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 15%, transparent), rgba( $kendo-listview-text, .15 )) !default;
50325
50320
 
50326
50321
  // #endregion
50327
50322
  // #region @import "./_layout.scss"; -> scss/listview/_layout.scss
@@ -50742,7 +50737,7 @@ $kendo-spreadsheet-view-font-size: $kendo-spreadsheet-font-size !default;
50742
50737
 
50743
50738
  /// The background color of the Spreadsheet selection.
50744
50739
  /// @group spreadsheet
50745
- $kendo-spreadsheet-selection-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
50740
+ $kendo-spreadsheet-selection-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
50746
50741
  /// The text color of the Spreadsheet selection.
50747
50742
  /// @group spreadsheet
50748
50743
  $kendo-spreadsheet-selection-text: null !default;
@@ -50765,7 +50760,7 @@ $kendo-spreadsheet-single-selection-border: $kendo-spreadsheet-bg !default;
50765
50760
 
50766
50761
  /// The background color of the Spreadsheet partial selection.
50767
50762
  /// @group spreadsheet
50768
- $kendo-spreadsheet-partial-selection-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
50763
+ $kendo-spreadsheet-partial-selection-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
50769
50764
 
50770
50765
  /// The background color of the Spreadsheet active cell.
50771
50766
  /// @group spreadsheet
@@ -50776,7 +50771,7 @@ $kendo-spreadsheet-active-cell-shadow: inset 0 0 0 1px $kendo-selected-bg !defau
50776
50771
 
50777
50772
  /// The background color of the Spreadsheet auto fill.
50778
50773
  /// @group spreadsheet
50779
- $kendo-spreadsheet-auto-fill-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
50774
+ $kendo-spreadsheet-auto-fill-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
50780
50775
  /// The text color of the Spreadsheet auto fill.
50781
50776
  /// @group spreadsheet
50782
50777
  $kendo-spreadsheet-auto-fill-text: null !default;
@@ -50906,7 +50901,7 @@ $kendo-spreadsheet-drawing-outline-width: 2px !default;
50906
50901
 
50907
50902
  /// The background color of the Spreadsheet drawing anchor.
50908
50903
  /// @group spreadsheet
50909
- $kendo-spreadsheet-drawing-anchor-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
50904
+ $kendo-spreadsheet-drawing-anchor-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
50910
50905
 
50911
50906
  /// The vertical spacing of the Spreadsheet DropZone.
50912
50907
  /// @group spreadsheet
@@ -52178,7 +52173,7 @@ $kendo-pivotgrid-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-h
52178
52173
  $kendo-pivotgrid-hover-text: null !default;
52179
52174
  $kendo-pivotgrid-hover-border: null !default;
52180
52175
 
52181
- $kendo-pivotgrid-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
52176
+ $kendo-pivotgrid-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
52182
52177
  $kendo-pivotgrid-selected-text: null !default;
52183
52178
  $kendo-pivotgrid-selected-border: null !default;
52184
52179
 
@@ -53531,7 +53526,7 @@ $kendo-filter-preview-operator-text: $kendo-subtle-text !default;
53531
53526
 
53532
53527
  /// The box shadow of the focused Filter toolbar.
53533
53528
  /// @group filter
53534
- $kendo-filter-toolbar-focus-shadow: 0 0 0 .25rem if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-color-primary, .25 )) !default;
53529
+ $kendo-filter-toolbar-focus-shadow: 0 0 0 .25rem if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-color-primary, .25 )) !default;
53535
53530
 
53536
53531
  // #endregion
53537
53532
  // #region @import "./_layout.scss"; -> scss/filter/_layout.scss
@@ -54654,7 +54649,7 @@ $kendo-taskboard-drag-placeholder-border-width: 1px !default;
54654
54649
  $kendo-taskboard-drag-placeholder-border-radius: $kendo-taskboard-card-border-radius !default;
54655
54650
  /// The background color of the TaskBoard Card placeholder.
54656
54651
  /// @group taskboard
54657
- $kendo-taskboard-drag-placeholder-bg: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .1 ) !default;
54652
+ $kendo-taskboard-drag-placeholder-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 10%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .1 )) !default;
54658
54653
  /// The border color of the TaskBoard Card placeholder.
54659
54654
  /// @group taskboard
54660
54655
  $kendo-taskboard-drag-placeholder-border: $kendo-component-border !default;
@@ -56369,7 +56364,7 @@ $kendo-gantt-treelist-bg: null !default;
56369
56364
  $kendo-gantt-treelist-text: null !default;
56370
56365
  $kendo-gantt-treelist-border: null !default;
56371
56366
 
56372
- $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;
56367
+ $kendo-gantt-nonwork-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 3%, transparent), rgba( k-contrast-color( $kendo-gantt-bg ), .025 )) !default;
56373
56368
  $kendo-gantt-nonwork-text: null !default;
56374
56369
  $kendo-gantt-nonwork-border: null !default;
56375
56370
 
@@ -58983,7 +58978,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
58983
58978
 
58984
58979
  .k-scheduler-layout td.k-selected,
58985
58980
  .k-scheduler-layout .k-scheduler-cell.k-selected {
58986
- background-color: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25));
58981
+ background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-selected-bg, .25));
58987
58982
  }
58988
58983
 
58989
58984
  .k-scheduler-layout-flex {
@@ -59100,7 +59095,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
59100
59095
 
59101
59096
  // Selected
59102
59097
  .k-scheduler-content tr.k-selected {
59103
- background-color: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25));
59098
+ background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-selected-bg, .25));
59104
59099
  }
59105
59100
  .k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
59106
59101
  .k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
@@ -60079,7 +60074,7 @@ $kendo-media-player-titlebar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
60079
60074
  $kendo-media-player-titlebar-bg: null !default;
60080
60075
  $kendo-media-player-titlebar-text: $kendo-media-player-bg !default;
60081
60076
  $kendo-media-player-titlebar-border: null !default;
60082
- $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;
60077
+ $kendo-media-player-titlebar-gradient: if($kendo-enable-color-system, ( color-mix(in srgb, k-color( on-app-surface ) 70%, transparent), color-mix(in srgb, k-color( on-app-surface ) 0%, transparent) ), ( rgba( $kendo-media-player-text, .7 ), rgba( $kendo-media-player-text, 0 ) )) !default;
60083
60078
 
60084
60079
  // #endregion
60085
60080
  // #region @import "./_layout.scss"; -> scss/mediaplayer/_layout.scss
@@ -60217,7 +60212,7 @@ $kendo-media-player-titlebar-gradient: if($kendo-enable-color-system, ( rgba( k-
60217
60212
  .k-mediaplayer-titlebar {
60218
60213
  color: $kendo-media-player-titlebar-text;
60219
60214
  background-image: linear-gradient( $kendo-media-player-titlebar-gradient );
60220
- text-shadow: 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-media-player-text, .5 ));
60215
+ text-shadow: 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( $kendo-media-player-text, .5 ));
60221
60216
  }
60222
60217
 
60223
60218
  }
@@ -60332,13 +60327,13 @@ $kendo-timeline-track-arrow-height: 38px !default;
60332
60327
 
60333
60328
  /// The background color of the disabled Timeline track arrow.
60334
60329
  /// @group timeline
60335
- $kendo-timeline-track-arrow-disabled-bg: if($kendo-enable-color-system, rgba( k-color( base-subtle, true ), .65 ), k-true-mix( $kendo-button-bg, $kendo-body-bg, 65% )) !default;
60330
+ $kendo-timeline-track-arrow-disabled-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( base-subtle ) 65%, transparent), k-true-mix( $kendo-button-bg, $kendo-body-bg, 65% )) !default;
60336
60331
  /// The text color of the disabled Timeline track arrow.
60337
60332
  /// @group timeline
60338
- $kendo-timeline-track-arrow-disabled-text: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .65 ), k-true-mix( $kendo-button-text, $kendo-body-bg, 65% )) !default;
60333
+ $kendo-timeline-track-arrow-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 65%, transparent), k-true-mix( $kendo-button-text, $kendo-body-bg, 65% )) !default;
60339
60334
  /// The border color of the disabled Timeline track arrow.
60340
60335
  /// @group timeline
60341
- $kendo-timeline-track-arrow-disabled-border: if($kendo-enable-color-system, rgba( k-color( border, true ), .15 ), k-true-mix( $kendo-button-border, $kendo-body-bg, 65% )) !default;
60336
+ $kendo-timeline-track-arrow-disabled-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( border ) 15%, transparent), k-true-mix( $kendo-button-border, $kendo-body-bg, 65% )) !default;
60342
60337
 
60343
60338
  /// The size of the Timeline track.
60344
60339
  /// @group timeline
@@ -62547,13 +62542,13 @@ $kendo-chart-pane-title-font-weight: $kendo-font-weight-normal !default;
62547
62542
 
62548
62543
  /// The color of the Chart grid lines (major).
62549
62544
  /// @group charts
62550
- $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;
62545
+ $kendo-chart-major-lines: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 8%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 )) !default;
62551
62546
 
62552
62547
  /// The color of the Chart grid lines (minor).
62553
62548
  /// @group charts
62554
- $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;
62549
+ $kendo-chart-minor-lines: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 4%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .04 )) !default;
62555
62550
 
62556
- $kendo-chart-inactive: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), $kendo-body-text), .5 ) !default;
62551
+ $kendo-chart-inactive: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( $kendo-body-text, .5 )) !default;
62557
62552
  $kendo-chart-area-opacity: .6 !default;
62558
62553
  $kendo-chart-area-inactive-opacity: .1 !default;
62559
62554
  $kendo-chart-line-inactive-opacity: .3 !default;
@@ -62564,20 +62559,20 @@ $kendo-chart-bg: $kendo-component-bg !default;
62564
62559
  $kendo-chart-text: $kendo-component-text !default;
62565
62560
  $kendo-chart-border: $kendo-component-border !default;
62566
62561
 
62567
- $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;
62562
+ $kendo-chart-crosshair-background: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 )) !default;
62568
62563
  $kendo-chart-crosshair-shared-tooltip-color: $kendo-chart-text !default;
62569
62564
  $kendo-chart-crosshair-shared-tooltip-background: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-chart-bg, 1 )) !default;
62570
- $kendo-chart-crosshair-shared-tooltip-border: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ))), .08) !default;
62565
+ $kendo-chart-crosshair-shared-tooltip-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 8%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 )) !default;
62571
62566
 
62572
- $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;
62573
- $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;
62574
- $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;
62567
+ $kendo-chart-notes-background: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 )) !default;
62568
+ $kendo-chart-notes-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 )) !default;
62569
+ $kendo-chart-notes-lines: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 )) !default;
62575
62570
 
62576
- $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;
62571
+ $kendo-chart-error-bars-background: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 )) !default;
62577
62572
 
62578
62573
  $kendo-chart-selection-handle-size: 22px !default;
62579
- $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;
62580
- $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;
62574
+ $kendo-chart-selection-border-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 8%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 )) !default;
62575
+ $kendo-chart-selection-shadow: inset 0 1px 7px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 15%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .15 )) !default;
62581
62576
 
62582
62577
 
62583
62578
  // TreeMap
@@ -63339,7 +63334,7 @@ $kendo-map-zoom-control-button-padding-y: $kendo-map-zoom-control-button-padding
63339
63334
  $kendo-map-attribution-padding-x: $kendo-padding-sm-x !default;
63340
63335
  $kendo-map-attribution-padding-y: $kendo-padding-sm-y !default;
63341
63336
  $kendo-map-attribution-font-size: ($kendo-map-font-size * .75) !default;
63342
- $kendo-map-attribution-bg: if($kendo-enable-color-system, rgba( k-color( app-surface, true ), .8 ), rgba( $kendo-map-bg, .8 )) !default;
63337
+ $kendo-map-attribution-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( app-surface ) 80%, transparent), rgba( $kendo-map-bg, .8 )) !default;
63343
63338
 
63344
63339
  $kendo-map-marker-fill: $kendo-color-primary !default;
63345
63340
 
@@ -64031,7 +64026,7 @@ $kendo-signature-lg-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
64031
64026
 
64032
64027
  $kendo-signature-line-width: 1px !default;
64033
64028
  $kendo-signature-line-style: dashed !default;
64034
- $kendo-signature-line-color: if($kendo-enable-color-system, rgba( k-color( info, true ), .24 ), rgba( $kendo-color-info, .24 )) !default;
64029
+ $kendo-signature-line-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( info ) 24%, transparent), rgba( $kendo-color-info, .24 )) !default;
64035
64030
 
64036
64031
  $kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding-x} ) !default;
64037
64032
  $kendo-signature-sm-line-size: calc( 100% - 2 * #{$kendo-signature-sm-padding-x} ) !default;