@progress/kendo-theme-material 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 (39) hide show
  1. package/dist/all.scss +74 -79
  2. package/dist/meta/sassdoc-data.json +48 -48
  3. package/dist/meta/sassdoc-raw-data.json +24 -24
  4. package/lib/swatches/material-aqua-dark.json +1 -1
  5. package/lib/swatches/material-arctic.json +1 -1
  6. package/lib/swatches/material-burnt-teal.json +1 -1
  7. package/lib/swatches/material-dataviz-v4.json +1 -1
  8. package/lib/swatches/material-eggplant.json +1 -1
  9. package/lib/swatches/material-lime-dark.json +1 -1
  10. package/lib/swatches/material-lime.json +1 -1
  11. package/lib/swatches/material-main-dark.json +1 -1
  12. package/lib/swatches/material-main.json +1 -1
  13. package/lib/swatches/material-nova.json +1 -1
  14. package/lib/swatches/material-pacific-dark.json +1 -1
  15. package/lib/swatches/material-pacific.json +1 -1
  16. package/lib/swatches/material-sky-dark.json +1 -1
  17. package/lib/swatches/material-sky.json +1 -1
  18. package/lib/swatches/material-smoke.json +1 -1
  19. package/package.json +5 -5
  20. package/scss/checkbox/_variables.scss +1 -1
  21. package/scss/dataviz/_variables.scss +11 -11
  22. package/scss/dock-manager/_variables.scss +1 -1
  23. package/scss/fab/_theme.scss +2 -2
  24. package/scss/gantt/_variables.scss +1 -1
  25. package/scss/grid/_variables.scss +5 -5
  26. package/scss/input/_variables.scss +4 -4
  27. package/scss/map/_variables.scss +1 -1
  28. package/scss/mediaplayer/_variables.scss +1 -1
  29. package/scss/orgchart/_variables.scss +1 -1
  30. package/scss/pivotgrid/_variables.scss +2 -2
  31. package/scss/scheduler/_theme.scss +2 -2
  32. package/scss/signature/_variables.scss +1 -1
  33. package/scss/skeleton/_variables.scss +1 -1
  34. package/scss/slider/_variables.scss +1 -1
  35. package/scss/spreadsheet/_variables.scss +4 -4
  36. package/scss/stepper/_variables.scss +3 -3
  37. package/scss/switch/_variables.scss +2 -2
  38. package/scss/table/_variables.scss +2 -2
  39. package/scss/treeview/_variables.scss +1 -1
package/dist/all.scss CHANGED
@@ -4764,7 +4764,7 @@ $kendo-palettes: (
4764
4764
  color-on-subtle: k-color( #{$color}-on-subtle ),
4765
4765
  on-color: k-color( on-#{$color} ),
4766
4766
  color-on-surface: k-color( #{$color}-on-surface ),
4767
- on-color-disabled: rgba( k-color( on-#{$color}, true ), .46)
4767
+ on-color-disabled: color-mix(in srgb, k-color( on-#{$color} ) 46%, transparent)
4768
4768
  );
4769
4769
 
4770
4770
  @return if( k-map-has-key( $map, $name ), k-map-get( $map, $name ), $name );
@@ -5027,15 +5027,11 @@ $_default-colors: (
5027
5027
  $kendo-colors: $_default-colors !default;
5028
5028
  $kendo-colors: k-map-merge($_default-colors, $kendo-colors);
5029
5029
 
5030
- @function k-color($key, $rgb: false) {
5030
+ @function k-color($key) {
5031
5031
  $_color: k-map-get($kendo-colors, $key);
5032
5032
 
5033
5033
  @if ($_color) {
5034
- @if ($rgb) {
5035
- @return var(--kendo-color-#{$key}-rgb, k-hex-to-rgb($_color));
5036
- } @else {
5037
- @return var(--kendo-color-#{$key}, $_color);
5038
- }
5034
+ @return var(--kendo-color-#{$key}, $_color);
5039
5035
  } @else {
5040
5036
  @error "Color Variable \`#{$key}\` does not exists in the color collection.";
5041
5037
  }
@@ -5046,7 +5042,6 @@ $kendo-colors: k-map-merge($_default-colors, $kendo-colors);
5046
5042
  @each $key, $value in $kendo-colors {
5047
5043
  @if($value) {
5048
5044
  --kendo-color-#{$key}: #{$value};
5049
- --kendo-color-#{$key}-rgb: #{k-hex-to-rgb($value)};
5050
5045
  }
5051
5046
  }
5052
5047
  }
@@ -17177,7 +17172,7 @@ $kendo-checkbox-bg: null !default;
17177
17172
  $kendo-checkbox-text: null !default;
17178
17173
  /// The border color of the CheckBox.
17179
17174
  /// @group checkbox
17180
- $kendo-checkbox-border: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .54 ) !default;
17175
+ $kendo-checkbox-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 54%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .54 )) !default;
17181
17176
 
17182
17177
  /// The background color of the hovered CheckBox.
17183
17178
  /// @group checkbox
@@ -19005,7 +19000,7 @@ $kendo-table-alt-row-border: null !default;
19005
19000
 
19006
19001
  /// Background color of hovered rows in table.
19007
19002
  /// @group table
19008
- $kendo-table-hover-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .08 ), rgba( k-contrast-color( $kendo-table-bg ), .07 )) !default;
19003
+ $kendo-table-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 8%, transparent), rgba( k-contrast-color( $kendo-table-bg ), .07 )) !default;
19009
19004
  /// Text color of hovered rows in table.
19010
19005
  /// @group table
19011
19006
  $kendo-table-hover-text: null !default;
@@ -19030,7 +19025,7 @@ $kendo-table-focus-shadow: $kendo-list-item-focus-shadow !default;
19030
19025
 
19031
19026
  /// Background color of selected rows in table.
19032
19027
  /// @group table
19033
- $kendo-table-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .12 ), rgba( k-contrast-color( $kendo-table-bg ), .04 )) !default;
19028
+ $kendo-table-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 12%, transparent), rgba( k-contrast-color( $kendo-table-bg ), .04 )) !default;
19034
19029
  /// Text color of selected rows in table.
19035
19030
  /// @group table
19036
19031
  $kendo-table-selected-text: null !default;
@@ -20889,7 +20884,7 @@ $kendo-chip-list-sizes: (
20889
20884
 
20890
20885
  &:focus,
20891
20886
  &.k-focus {
20892
- @include focus-indicator( 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( $name, true ), .16 ), rgba( $color, .16 )) );
20887
+ @include focus-indicator( 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 16%, transparent), rgba( $color, .16 )) );
20893
20888
  }
20894
20889
 
20895
20890
  &:hover,
@@ -20943,7 +20938,7 @@ $kendo-chip-list-sizes: (
20943
20938
 
20944
20939
  &:focus,
20945
20940
  &.k-focus {
20946
- @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 ))) );
20941
+ @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 ))) );
20947
20942
  }
20948
20943
 
20949
20944
  &:hover,
@@ -20969,7 +20964,7 @@ $kendo-chip-list-sizes: (
20969
20964
 
20970
20965
  &:focus,
20971
20966
  &.k-focus {
20972
- @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 ))) );
20967
+ @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 ))) );
20973
20968
  }
20974
20969
 
20975
20970
  &:hover,
@@ -22073,7 +22068,7 @@ $kendo-skeleton-circle-border-radius: 9999px !default;
22073
22068
 
22074
22069
  /// The background color of the Skeleton item.
22075
22070
  /// @group skeleton
22076
- $kendo-skeleton-item-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .2 ), rgba( $kendo-color-inverse, .2 )) !default;
22071
+ $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;
22077
22072
  /// The background color of the Skeleton wave animation.
22078
22073
  /// @group skeleton
22079
22074
  $kendo-skeleton-wave-bg: rgba( black, .04 ) !default;
@@ -22879,7 +22874,7 @@ $_kendo-module-meta: (
22879
22874
  &:focus,
22880
22875
  &.k-focus {
22881
22876
  @if ( $kendo-solid-button-shadow ) {
22882
- @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 );
22877
+ @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 );
22883
22878
  }
22884
22879
  }
22885
22880
 
@@ -22949,9 +22944,9 @@ $_kendo-module-meta: (
22949
22944
  &.k-focus {
22950
22945
  @if $kendo-outline-button-shadow {
22951
22946
  @if $name == "base" {
22952
- @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 );
22947
+ @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 );
22953
22948
  } @else {
22954
- @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 );
22949
+ @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 );
22955
22950
  }
22956
22951
  }
22957
22952
  }
@@ -23034,9 +23029,9 @@ $_kendo-module-meta: (
23034
23029
  &.k-focus {
23035
23030
  @if ( $kendo-link-button-shadow ) {
23036
23031
  @if $name == "base" {
23037
- @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 );
23032
+ @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 );
23038
23033
  } @else {
23039
- @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 );
23034
+ @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 );
23040
23035
  }
23041
23036
  }
23042
23037
  }
@@ -24952,7 +24947,7 @@ $kendo-input-bg: if($kendo-enable-color-system, k-color( surface ), k-try-shade(
24952
24947
  $kendo-input-text: $kendo-component-text !default;
24953
24948
  /// The border color of the Input components.
24954
24949
  /// @group input
24955
- $kendo-input-border: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .44 ), rgba( $kendo-component-border, .38 )) !default;
24950
+ $kendo-input-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 44%, transparent), rgba( $kendo-component-border, .38 )) !default;
24956
24951
  /// The shadow of the Input components.
24957
24952
  /// @group input
24958
24953
  $kendo-input-shadow: null !default;
@@ -24991,13 +24986,13 @@ $kendo-input-selected-bg: null !default;
24991
24986
  $kendo-input-selected-text: null !default;
24992
24987
  /// The background color of the disabled Input components.
24993
24988
  /// @group input
24994
- $kendo-input-disabled-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .03 ), k-try-shade( $kendo-component-bg, .25 )) !default;
24989
+ $kendo-input-disabled-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 3%, transparent), k-try-shade( $kendo-component-bg, .25 )) !default;
24995
24990
  /// The text color of the disabled Input components.
24996
24991
  /// @group input
24997
- $kendo-input-disabled-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .27 ), $kendo-disabled-text) !default;
24992
+ $kendo-input-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 27%, transparent), $kendo-disabled-text) !default;
24998
24993
  /// The border color of the disabled Input components.
24999
24994
  /// @group input
25000
- $kendo-input-disabled-border: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .03 ), rgba( $kendo-component-border, k-math-div( k-color-alpha( $kendo-component-border ), 2 ) )) !default;
24995
+ $kendo-input-disabled-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 3%, transparent), rgba( $kendo-component-border, k-math-div( k-color-alpha( $kendo-component-border ), 2 ) )) !default;
25001
24996
  /// The gradient of the disabled Input components.
25002
24997
  /// @group input
25003
24998
  $kendo-input-disabled-gradient: null !default;
@@ -29251,7 +29246,7 @@ $kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
29251
29246
 
29252
29247
  .k-progressbar-indeterminate {
29253
29248
  @include fill( $kendo-progressbar-indeterminate-text, $kendo-progressbar-indeterminate-bg, $kendo-progressbar-indeterminate-border );
29254
- @include striped-gradient( if($kendo-enable-color-system, rgba( k-color( base-emphasis, true ), .55 ), k-color-shade($kendo-progressbar-indeterminate-bg)) );
29249
+ @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)) );
29255
29250
  background-size: $kendo-progressbar-height $kendo-progressbar-height;
29256
29251
  animation: kendo-progressbar-indeterminate-animation $kendo-progressbar-animation-timing;
29257
29252
  }
@@ -30087,7 +30082,7 @@ $kendo-slider-draghandle-pressed-gradient: null !default;
30087
30082
 
30088
30083
  /// The shadow of the focused Slider drag handle.
30089
30084
  /// @group slider
30090
- $kendo-slider-draghandle-focus-shadow: 0 0 0 11px if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-color-primary, .25 )) !default;
30085
+ $kendo-slider-draghandle-focus-shadow: 0 0 0 11px if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-color-primary, .25 )) !default;
30091
30086
 
30092
30087
  /// The transition speed of the Slider.
30093
30088
  /// @group slider
@@ -31625,7 +31620,7 @@ $kendo-calendar-sizes: (
31625
31620
  .k-calendar { // stylelint-disable-line
31626
31621
 
31627
31622
  $kendo-calendar-range-gap: 1px !default;
31628
- $kendo-calendar-range-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-calendar-cell-selected-bg, .25 ));
31623
+ $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 ));
31629
31624
  $kendo-calendar-range-split-size: 5px !default;
31630
31625
 
31631
31626
  .k-range-start,
@@ -35244,7 +35239,7 @@ $kendo-treeview-border: null !default;
35244
35239
 
35245
35240
  /// The background color of hovered TreeView.
35246
35241
  /// @group treeview
35247
- $kendo-treeview-item-hover-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .07 ), rgba( $kendo-treeview-text, .07 )) !default;
35242
+ $kendo-treeview-item-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 7%, transparent), rgba( $kendo-treeview-text, .07 )) !default;
35248
35243
  /// The text color of hovered TreeView items.
35249
35244
  /// @group treeview
35250
35245
  $kendo-treeview-item-hover-text: null !default;
@@ -36329,7 +36324,7 @@ $kendo-switch-sizes: (
36329
36324
 
36330
36325
  /// The background of the track when the Switch is not checked.
36331
36326
  /// @group switch
36332
- $kendo-switch-off-track-bg: rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .38 ) !default;
36327
+ $kendo-switch-off-track-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 38%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .38 )) !default;
36333
36328
  /// The text color of the track when the Switch is not checked.
36334
36329
  /// @group switch
36335
36330
  $kendo-switch-off-track-text: null !default;
@@ -36411,7 +36406,7 @@ $kendo-switch-off-thumb-hover-gradient: null !default;
36411
36406
 
36412
36407
  /// The background of the track when the Switch is checked.
36413
36408
  /// @group switch
36414
- $kendo-switch-on-track-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .54 ), rgba( $kendo-color-primary, .54 )) !default;
36409
+ $kendo-switch-on-track-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 54%, transparent), rgba( $kendo-color-primary, .54 )) !default;
36415
36410
  /// The text color of the track when the Switch is checked.
36416
36411
  /// @group switch
36417
36412
  $kendo-switch-on-track-text: null !default;
@@ -36762,7 +36757,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
36762
36757
  $kendo-switch-off-track-focus-gradient
36763
36758
  );
36764
36759
  @if $kendo-enable-focus-contrast {
36765
- @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 )) );
36760
+ @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 )) );
36766
36761
  } @else {
36767
36762
  outline: $kendo-switch-off-track-focus-ring;
36768
36763
  }
@@ -36842,7 +36837,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
36842
36837
  $kendo-switch-on-track-focus-gradient
36843
36838
  );
36844
36839
  @if $kendo-enable-focus-contrast {
36845
- @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 )) );
36840
+ @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 )) );
36846
36841
  } @else {
36847
36842
  outline: $kendo-switch-on-track-focus-ring;
36848
36843
  }
@@ -38363,7 +38358,7 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
38363
38358
  @if $kendo-enable-focus-contrast {
38364
38359
  @include box-shadow( inset 0 0 0 2px currentColor );
38365
38360
  } @else {
38366
- outline: $kendo-fab-outline-style $kendo-fab-outline-width if($kendo-enable-color-system, rgba( k-color( $name, true ), .3 ), rgba( $color, .3 ));
38361
+ 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 ));
38367
38362
  }
38368
38363
  }
38369
38364
  }
@@ -38384,8 +38379,8 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
38384
38379
  .k-disabled.k-fab-solid-#{$name},
38385
38380
  .k-fab-solid-#{$name}:disabled {
38386
38381
  @include box-shadow($kendo-fab-disabled-shadow);
38387
- background-color: if($kendo-enable-color-system, rgba( k-color( $name, true ), .6 ), k-try-tint( $color, 5 ));
38388
- color: if($kendo-enable-color-system, rgba( k-color( on-#{$name}, true ), .6 ), k-try-tint( k-contrast-legacy( $color ), 5 ));
38382
+ background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 60%, transparent), k-try-tint( $color, 5 ));
38383
+ color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-#{$name} ) 60%, transparent), k-try-tint( k-contrast-legacy( $color ), 5 ));
38389
38384
  opacity: 1;
38390
38385
  }
38391
38386
  }
@@ -38424,7 +38419,7 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
38424
38419
  .k-fab-item.k-focus .k-fab-item-text,
38425
38420
  .k-fab-item.k-focus .k-fab-item-icon {
38426
38421
  @if $kendo-enable-focus-contrast {
38427
- @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 )) );
38422
+ @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 )) );
38428
38423
  } @else {
38429
38424
  outline: $kendo-fab-item-outline-style $kendo-fab-item-outline-width $kendo-fab-item-outline-color;
38430
38425
  }
@@ -38446,8 +38441,8 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
38446
38441
  .k-fab-item-text,
38447
38442
  .k-fab-item-icon {
38448
38443
  @include box-shadow($kendo-fab-item-disabled-shadow);
38449
- background-color: if($kendo-enable-color-system, rgba( k-color( base, true ), .6 ), k-try-tint( $kendo-fab-item-bg, 5 ));
38450
- color: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .6 ), k-try-tint( $kendo-fab-item-text, 5 ));
38444
+ background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( base ) 60%, transparent), k-try-tint( $kendo-fab-item-bg, 5 ));
38445
+ color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 60%, transparent), k-try-tint( $kendo-fab-item-text, 5 ));
38451
38446
  }
38452
38447
  }
38453
38448
 
@@ -38569,8 +38564,8 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
38569
38564
  .k-fab-item-text,
38570
38565
  .k-fab-item-icon {
38571
38566
  @include box-shadow($kendo-fab-item-disabled-shadow);
38572
- background-color: if($kendo-enable-color-system, rgba( k-color( base, true ), .6 ), k-try-tint( $kendo-fab-item-bg, 8 ));
38573
- color: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .6 ), k-try-tint( $kendo-fab-item-text, 8 ));
38567
+ background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( base ) 60%, transparent), k-try-tint( $kendo-fab-item-bg, 8 ));
38568
+ color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 60%, transparent), k-try-tint( $kendo-fab-item-text, 8 ));
38574
38569
  }
38575
38570
  }
38576
38571
 
@@ -41891,13 +41886,13 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
41891
41886
  @each $name, $color in $kendo-theme-colors {
41892
41887
  .k-bottom-nav-solid-#{$name} {
41893
41888
  @include fill(
41894
- $color: if($kendo-enable-color-system, rgba( k-color( on-#{$name}, true ), .65 ), k-true-mix( $color, k-contrast-legacy( $color ), 35%)),
41889
+ $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%)),
41895
41890
  $bg: $color
41896
41891
  );
41897
41892
 
41898
41893
  .k-bottom-nav-item.k-focus,
41899
41894
  .k-bottom-nav-item:focus {
41900
- @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)));
41895
+ @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)));
41901
41896
  }
41902
41897
 
41903
41898
  .k-bottom-nav-item.k-selected {
@@ -41921,7 +41916,7 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
41921
41916
 
41922
41917
  .k-bottom-nav-item.k-focus,
41923
41918
  .k-bottom-nav-item:focus {
41924
- @include fill( $bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .05), rgba($kendo-bottom-nav-flat-text, .05)) );
41919
+ @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)) );
41925
41920
  }
41926
41921
 
41927
41922
  .k-bottom-nav-item.k-selected {
@@ -43153,7 +43148,7 @@ $kendo-stepper-indicator-hover-border: null !default;
43153
43148
  $kendo-stepper-indicator-disabled-bg: null !default;
43154
43149
  /// The text color of the disabled Stepper indicator.
43155
43150
  /// @group stepper
43156
- $kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .32 ), $kendo-disabled-text) !default;
43151
+ $kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 32%, transparent), $kendo-disabled-text) !default;
43157
43152
  /// The border color of the disabled Stepper indicator.
43158
43153
  /// @group stepper
43159
43154
  $kendo-stepper-indicator-disabled-border: null !default;
@@ -43180,7 +43175,7 @@ $kendo-stepper-indicator-done-hover-border: null !default;
43180
43175
 
43181
43176
  /// The background color of the Stepper's disabled done indicator.
43182
43177
  /// @group stepper
43183
- $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;
43178
+ $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;
43184
43179
  /// The text color of the Stepper's disabled done indicator.
43185
43180
  /// @group stepper
43186
43181
  $kendo-stepper-indicator-done-disabled-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-color( $kendo-stepper-indicator-done-bg )) !default;
@@ -43232,7 +43227,7 @@ $kendo-stepper-label-error-text: $kendo-color-error !default;
43232
43227
  $kendo-stepper-label-hover-text: null !default;
43233
43228
  /// The text color of the disabled Stepper label.
43234
43229
  /// @group stepper
43235
- $kendo-stepper-label-disabled-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .32 ), k-map-get( $theme, disabled-text )) !default;
43230
+ $kendo-stepper-label-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 32%, transparent), k-map-get( $theme, disabled-text )) !default;
43236
43231
 
43237
43232
  /// The text color of the optional Stepper label.
43238
43233
  /// @group stepper
@@ -46382,7 +46377,7 @@ $kendo-dock-manager-dock-preview-border-style: dashed !default;
46382
46377
  $kendo-dock-manager-dock-preview-border-radius: $kendo-border-radius-sm !default;
46383
46378
  /// The background color of the dropping area in the DockManager component.
46384
46379
  /// @group dock-manager
46385
- $kendo-dock-manager-dock-preview-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .16 ), rgba( $kendo-color-primary, .16 )) !default;
46380
+ $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;
46386
46381
  /// The border color of the dropping area in the DockManager component.
46387
46382
  /// @group dock-manager
46388
46383
  $kendo-dock-manager-dock-preview-border: $kendo-color-primary !default;
@@ -47738,7 +47733,7 @@ $kendo-grid-grouping-row-bg: transparent !default;
47738
47733
  $kendo-grid-grouping-row-text: $kendo-grid-text !default;
47739
47734
 
47740
47735
  $kendo-grid-sorted-icon-spacing: 4px !default;
47741
- $kendo-grid-sorted-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .05 ), rgba( k-contrast-color( $kendo-grid-bg ), .04 )) !default;
47736
+ $kendo-grid-sorted-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 5%, transparent), rgba( k-contrast-color( $kendo-grid-bg ), .04 )) !default;
47742
47737
  $kendo-grid-sorting-indicator-text: $kendo-grid-header-text !default;
47743
47738
  $kendo-grid-sorting-index-font-size: $kendo-font-size-sm !default;
47744
47739
  $kendo-grid-sorting-index-height: $kendo-icon-size !default;
@@ -47754,7 +47749,7 @@ $kendo-grid-command-cell-padding-y: calc( #{$kendo-grid-cell-padding-y} - (#{$ke
47754
47749
  // Must be a solid color
47755
47750
  $kendo-grid-sticky-bg: $kendo-grid-bg !default;
47756
47751
  $kendo-grid-sticky-text: $kendo-grid-text !default;
47757
- $kendo-grid-sticky-border: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( k-contrast-color( $kendo-grid-bg ), .5 )) !default;
47752
+ $kendo-grid-sticky-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( k-contrast-color( $kendo-grid-bg ), .5 )) !default;
47758
47753
 
47759
47754
  // Must be a solid color
47760
47755
  $kendo-grid-sticky-alt-bg: $kendo-grid-sticky-bg !default;
@@ -47766,12 +47761,12 @@ $kendo-grid-sticky-header-border: $kendo-grid-sticky-border !default;
47766
47761
  $kendo-grid-sticky-footer-bg: $kendo-grid-sticky-header-bg !default;
47767
47762
  $kendo-grid-sticky-footer-hover-bg: $kendo-grid-sticky-footer-bg !default;
47768
47763
 
47769
- $kendo-grid-sticky-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .12 ), k-try-shade($kendo-grid-bg, 4%)) !default;
47764
+ $kendo-grid-sticky-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 12%, transparent), k-try-shade($kendo-grid-bg, 4%)) !default;
47770
47765
  $kendo-grid-sticky-selected-alt-bg: $kendo-grid-sticky-selected-bg !default;
47771
47766
 
47772
47767
  // Must be a solid color
47773
47768
  $kendo-grid-sticky-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), k-try-shade($kendo-grid-bg, 7%)) !default;
47774
- $kendo-grid-sticky-selected-hover-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .12 ), k-try-shade($kendo-grid-sticky-selected-bg, .87)) !default;
47769
+ $kendo-grid-sticky-selected-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 12%, transparent), k-try-shade($kendo-grid-sticky-selected-bg, .87)) !default;
47775
47770
 
47776
47771
  $kendo-grid-column-menu-width: 250px !default;
47777
47772
  $kendo-grid-column-menu-max-width: 320px !default;
@@ -47824,7 +47819,7 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
47824
47819
 
47825
47820
  /// Background color of the grid row resize indicator
47826
47821
  /// @group grid
47827
- $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 ), .24 )) !default;
47822
+ $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 ), .24 )) !default;
47828
47823
  /// Active background color of the grid row resize indicator
47829
47824
  /// @group grid
47830
47825
  $kendo-grid-row-resizer-active-bg: $kendo-color-primary !default;
@@ -50680,7 +50675,7 @@ $kendo-spreadsheet-view-font-size: $kendo-spreadsheet-font-size !default;
50680
50675
 
50681
50676
  /// The background color of the Spreadsheet selection.
50682
50677
  /// @group spreadsheet
50683
- $kendo-spreadsheet-selection-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-color-primary, .25 )) !default;
50678
+ $kendo-spreadsheet-selection-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-color-primary, .25 )) !default;
50684
50679
  /// The text color of the Spreadsheet selection.
50685
50680
  /// @group spreadsheet
50686
50681
  $kendo-spreadsheet-selection-text: null !default;
@@ -50714,7 +50709,7 @@ $kendo-spreadsheet-active-cell-shadow: inset 0 0 0 1px $kendo-color-primary !def
50714
50709
 
50715
50710
  /// The background color of the Spreadsheet auto fill.
50716
50711
  /// @group spreadsheet
50717
- $kendo-spreadsheet-auto-fill-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-color-primary, .25 )) !default;
50712
+ $kendo-spreadsheet-auto-fill-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-color-primary, .25 )) !default;
50718
50713
  /// The text color of the Spreadsheet auto fill.
50719
50714
  /// @group spreadsheet
50720
50715
  $kendo-spreadsheet-auto-fill-text: null !default;
@@ -50726,7 +50721,7 @@ $kendo-spreadsheet-auto-fill-border: $kendo-color-primary !default;
50726
50721
  $kendo-spreadsheet-auto-fill-shadow: inset 0 0 0 1px $kendo-color-primary !default;
50727
50722
  /// The background color of the Spreadsheet auto fill punch.
50728
50723
  /// @group spreadsheet
50729
- $kendo-spreadsheet-auto-fill-punch-bg: if($kendo-enable-color-system, rgba( k-color( app-surface, true ), .5 ), rgba( $kendo-component-bg, .5 )) !default;
50724
+ $kendo-spreadsheet-auto-fill-punch-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( app-surface ) 50%, transparent), rgba( $kendo-component-bg, .5 )) !default;
50730
50725
 
50731
50726
  /// The vertical padding of the Spreadsheet cell.
50732
50727
  /// @group spreadsheet
@@ -50844,7 +50839,7 @@ $kendo-spreadsheet-drawing-outline-width: 2px !default;
50844
50839
 
50845
50840
  /// The background color of the Spreadsheet drawing anchor.
50846
50841
  /// @group spreadsheet
50847
- $kendo-spreadsheet-drawing-anchor-bg: if($kendo-enable-color-system, rgba( k-color( secondary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
50842
+ $kendo-spreadsheet-drawing-anchor-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( secondary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
50848
50843
 
50849
50844
  /// The vertical spacing of the Spreadsheet DropZone.
50850
50845
  /// @group spreadsheet
@@ -52157,7 +52152,7 @@ $kendo-pivotgrid-border: $kendo-component-border !default;
52157
52152
 
52158
52153
  $kendo-pivotgrid-alt-border: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-pivotgrid-border, 2 )) !default;
52159
52154
 
52160
- $kendo-pivotgrid-headers-bg: if($kendo-enable-color-system, rgba( k-color( app-surface, true ), .02 ), rgba( $kendo-component-header-bg, .02 )) !default;
52155
+ $kendo-pivotgrid-headers-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( app-surface ) 2%, transparent), rgba( $kendo-component-header-bg, .02 )) !default;
52161
52156
  $kendo-pivotgrid-headers-text: $kendo-component-header-text !default;
52162
52157
  $kendo-pivotgrid-headers-border: $kendo-component-header-border !default;
52163
52158
 
@@ -52169,7 +52164,7 @@ $kendo-pivotgrid-hover-bg: if($kendo-enable-color-system, k-color( base-hover ),
52169
52164
  $kendo-pivotgrid-hover-text: null !default;
52170
52165
  $kendo-pivotgrid-hover-border: null !default;
52171
52166
 
52172
- $kendo-pivotgrid-selected-bg: if($kendo-enable-color-system, rgba( k-color( base-active, true ), .25 ), rgba( k-contrast-color( $kendo-pivotgrid-bg ), .04 )) !default;
52167
+ $kendo-pivotgrid-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( base-active ) 25%, transparent), rgba( k-contrast-color( $kendo-pivotgrid-bg ), .04 )) !default;
52173
52168
  $kendo-pivotgrid-selected-text: null !default;
52174
52169
  $kendo-pivotgrid-selected-border: null !default;
52175
52170
 
@@ -56410,7 +56405,7 @@ $kendo-gantt-treelist-bg: null !default;
56410
56405
  $kendo-gantt-treelist-text: null !default;
56411
56406
  $kendo-gantt-treelist-border: null !default;
56412
56407
 
56413
- $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;
56408
+ $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;
56414
56409
  $kendo-gantt-nonwork-text: null !default;
56415
56410
  $kendo-gantt-nonwork-border: null !default;
56416
56411
 
@@ -59174,7 +59169,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
59174
59169
 
59175
59170
  .k-scheduler-layout td.k-selected,
59176
59171
  .k-scheduler-layout .k-scheduler-cell.k-selected {
59177
- background-color: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25));
59172
+ background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-selected-bg, .25));
59178
59173
  }
59179
59174
 
59180
59175
  .k-scheduler-layout-flex {
@@ -59291,7 +59286,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
59291
59286
 
59292
59287
  // Selected
59293
59288
  .k-scheduler-content tr.k-selected {
59294
- background-color: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25));
59289
+ background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-selected-bg, .25));
59295
59290
  }
59296
59291
  .k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
59297
59292
  .k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
@@ -59352,13 +59347,13 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
59352
59347
 
59353
59348
  .k-scheduler-layout td.k-selected,
59354
59349
  .k-scheduler-layout .k-scheduler-cell.k-selected {
59355
- background-color: if($kendo-enable-color-system, rgba( k-color( secondary, true ), .25 ), rgba($kendo-selected-bg, .25));
59350
+ background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( secondary ) 25%, transparent), rgba($kendo-selected-bg, .25));
59356
59351
  }
59357
59352
 
59358
59353
  // Agenda view
59359
59354
  .k-scheduler-agendaview {
59360
59355
  .k-scheduler-content tr.k-selected {
59361
- background-color: if($kendo-enable-color-system, rgba( k-color( secondary, true ), .25 ), rgba($kendo-selected-bg, .25));
59356
+ background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( secondary ) 25%, transparent), rgba($kendo-selected-bg, .25));
59362
59357
  }
59363
59358
  }
59364
59359
 
@@ -60306,7 +60301,7 @@ $kendo-media-player-titlebar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
60306
60301
  $kendo-media-player-titlebar-bg: null !default;
60307
60302
  $kendo-media-player-titlebar-text: $kendo-media-player-bg !default;
60308
60303
  $kendo-media-player-titlebar-border: null !default;
60309
- $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;
60304
+ $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;
60310
60305
 
60311
60306
  // #endregion
60312
60307
  // #region @import "./_layout.scss"; -> scss/mediaplayer/_layout.scss
@@ -60444,7 +60439,7 @@ $kendo-media-player-titlebar-gradient: if($kendo-enable-color-system, ( rgba( k-
60444
60439
  .k-mediaplayer-titlebar {
60445
60440
  color: $kendo-media-player-titlebar-text;
60446
60441
  background-image: linear-gradient( $kendo-media-player-titlebar-gradient );
60447
- text-shadow: 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-media-player-text, .5 ));
60442
+ 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 ));
60448
60443
  }
60449
60444
 
60450
60445
  }
@@ -62705,13 +62700,13 @@ $kendo-chart-pane-title-font-weight: $kendo-font-weight-normal !default;
62705
62700
 
62706
62701
  /// The color of the Chart grid lines (major).
62707
62702
  /// @group charts
62708
- $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;
62703
+ $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;
62709
62704
 
62710
62705
  /// The color of the Chart grid lines (minor).
62711
62706
  /// @group charts
62712
- $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;
62707
+ $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;
62713
62708
 
62714
- $kendo-chart-inactive: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-component-text, .5 )) !default;
62709
+ $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;
62715
62710
  $kendo-chart-area-opacity: .6 !default;
62716
62711
  $kendo-chart-area-inactive-opacity: .1 !default;
62717
62712
  $kendo-chart-line-inactive-opacity: .3 !default;
@@ -62722,20 +62717,20 @@ $kendo-chart-bg: $kendo-component-bg !default;
62722
62717
  $kendo-chart-text: $kendo-component-text !default;
62723
62718
  $kendo-chart-border: $kendo-component-border !default;
62724
62719
 
62725
- $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;
62720
+ $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;
62726
62721
  $kendo-chart-crosshair-shared-tooltip-color: $kendo-chart-text !default;
62727
62722
  $kendo-chart-crosshair-shared-tooltip-background: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-chart-bg, 1 )) !default;
62728
- $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;
62723
+ $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;
62729
62724
 
62730
- $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;
62731
- $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;
62732
- $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;
62725
+ $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;
62726
+ $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;
62727
+ $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;
62733
62728
 
62734
- $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;
62729
+ $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;
62735
62730
 
62736
62731
  $kendo-chart-selection-handle-size: 22px !default;
62737
- $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;
62738
- $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;
62732
+ $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;
62733
+ $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;
62739
62734
 
62740
62735
 
62741
62736
  // TreeMap
@@ -63497,7 +63492,7 @@ $kendo-map-zoom-control-button-padding-y: $kendo-map-zoom-control-button-padding
63497
63492
  $kendo-map-attribution-padding-x: $kendo-padding-sm-x !default;
63498
63493
  $kendo-map-attribution-padding-y: $kendo-padding-sm-y !default;
63499
63494
  $kendo-map-attribution-font-size: ($kendo-map-font-size * .75) !default;
63500
- $kendo-map-attribution-bg: if($kendo-enable-color-system, rgba( k-color( app-surface, true ), .8 ), rgba( $kendo-map-bg, .8 )) !default;
63495
+ $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;
63501
63496
 
63502
63497
  $kendo-map-marker-fill: $kendo-color-primary !default;
63503
63498
 
@@ -63843,7 +63838,7 @@ $kendo-orgchart-node-group-border: $kendo-base-border !default;
63843
63838
  $kendo-orgchart-node-group-focus-border: $kendo-card-focus-border !default;
63844
63839
  /// The shadow of the focused OrgChart node group.
63845
63840
  /// @group orgchart
63846
- $kendo-orgchart-node-group-focus-shadow: 0 2px 4px -1px rgba( if($kendo-enable-color-system, k-color( on-light, true ), $elevation), .2 ), 0 4px 5px 0 rgba( if($kendo-enable-color-system, k-color( on-light, true ), $elevation), .14 ), 0 1px 10px 0 rgba( if($kendo-enable-color-system, k-color( on-light, true ), $elevation), .12 ) !default;
63841
+ $kendo-orgchart-node-group-focus-shadow: 0 2px 4px -1px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 20%, transparent), rgba( $elevation, .2 )), 0 4px 5px 0 if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 14%, transparent), rgba( $elevation, .14 )), 0 1px 10px 0 if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 12%, transparent), rgba( $elevation, .12 )) !default;
63847
63842
 
63848
63843
  /// The font size of the OrgChart node group title.
63849
63844
  /// @group orgchart
@@ -64187,7 +64182,7 @@ $kendo-signature-lg-padding-y: $kendo-signature-lg-padding-x !default;
64187
64182
 
64188
64183
  $kendo-signature-line-width: 1px !default;
64189
64184
  $kendo-signature-line-style: dashed !default;
64190
- $kendo-signature-line-color: if($kendo-enable-color-system, rgba( k-color( info, true ), .24 ), rgba( $kendo-color-info, .24 )) !default;
64185
+ $kendo-signature-line-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( info ) 24%, transparent), rgba( $kendo-color-info, .24 )) !default;
64191
64186
 
64192
64187
  $kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding-x} ) !default;
64193
64188
  $kendo-signature-sm-line-size: calc( 100% - 2 * #{$kendo-signature-sm-padding-x} ) !default;