@progress/kendo-theme-classic 7.2.1-dev.6 → 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 (41) hide show
  1. package/dist/all.css +0 -48
  2. package/dist/all.scss +77 -191
  3. package/dist/meta/sassdoc-data.json +430 -538
  4. package/dist/meta/sassdoc-raw-data.json +215 -265
  5. package/dist/meta/variables.json +0 -8
  6. package/lib/swatches/classic-green-dark.json +1 -1
  7. package/lib/swatches/classic-green.json +1 -1
  8. package/lib/swatches/classic-lavender-dark.json +1 -1
  9. package/lib/swatches/classic-lavender.json +1 -1
  10. package/lib/swatches/classic-main-dark.json +1 -1
  11. package/lib/swatches/classic-main.json +1 -1
  12. package/lib/swatches/classic-metro-dark.json +1 -1
  13. package/lib/swatches/classic-metro.json +1 -1
  14. package/lib/swatches/classic-moonlight.json +1 -1
  15. package/lib/swatches/classic-opal-dark.json +1 -1
  16. package/lib/swatches/classic-opal.json +1 -1
  17. package/lib/swatches/classic-silver-dark.json +1 -1
  18. package/lib/swatches/classic-silver.json +1 -1
  19. package/lib/swatches/classic-uniform.json +1 -1
  20. package/package.json +5 -5
  21. package/scss/button/_variables.scss +1 -1
  22. package/scss/checkbox/_variables.scss +1 -1
  23. package/scss/chip/_variables.scss +2 -2
  24. package/scss/dataviz/_variables.scss +11 -11
  25. package/scss/dock-manager/_variables.scss +1 -1
  26. package/scss/gantt/_variables.scss +1 -1
  27. package/scss/grid/_variables.scss +5 -5
  28. package/scss/input/_variables.scss +5 -12
  29. package/scss/listview/_variables.scss +1 -1
  30. package/scss/map/_variables.scss +1 -1
  31. package/scss/mediaplayer/_variables.scss +1 -1
  32. package/scss/menu/_variables.scss +1 -1
  33. package/scss/pivotgrid/_variables.scss +1 -1
  34. package/scss/signature/_variables.scss +1 -1
  35. package/scss/skeleton/_variables.scss +1 -1
  36. package/scss/slider/_variables.scss +1 -1
  37. package/scss/spreadsheet/_variables.scss +4 -4
  38. package/scss/stepper/_variables.scss +3 -3
  39. package/scss/switch/_variables.scss +2 -2
  40. package/scss/table/_variables.scss +3 -3
  41. package/scss/timeline/_variables.scss +3 -3
package/dist/all.scss CHANGED
@@ -3766,7 +3766,7 @@ $kendo-palettes: (
3766
3766
  color-on-subtle: k-color( #{$color}-on-subtle ),
3767
3767
  on-color: k-color( on-#{$color} ),
3768
3768
  color-on-surface: k-color( #{$color}-on-surface ),
3769
- on-color-disabled: rgba( k-color( on-#{$color}, true ), .46)
3769
+ on-color-disabled: color-mix(in srgb, k-color( on-#{$color} ) 46%, transparent)
3770
3770
  );
3771
3771
 
3772
3772
  @return if( k-map-has-key( $map, $name ), k-map-get( $map, $name ), $name );
@@ -4029,15 +4029,11 @@ $_default-colors: (
4029
4029
  $kendo-colors: $_default-colors !default;
4030
4030
  $kendo-colors: k-map-merge($_default-colors, $kendo-colors);
4031
4031
 
4032
- @function k-color($key, $rgb: false) {
4032
+ @function k-color($key) {
4033
4033
  $_color: k-map-get($kendo-colors, $key);
4034
4034
 
4035
4035
  @if ($_color) {
4036
- @if ($rgb) {
4037
- @return var(--kendo-color-#{$key}-rgb, k-hex-to-rgb($_color));
4038
- } @else {
4039
- @return var(--kendo-color-#{$key}, $_color);
4040
- }
4036
+ @return var(--kendo-color-#{$key}, $_color);
4041
4037
  } @else {
4042
4038
  @error "Color Variable \`#{$key}\` does not exists in the color collection.";
4043
4039
  }
@@ -4048,7 +4044,6 @@ $kendo-colors: k-map-merge($_default-colors, $kendo-colors);
4048
4044
  @each $key, $value in $kendo-colors {
4049
4045
  @if($value) {
4050
4046
  --kendo-color-#{$key}: #{$value};
4051
- --kendo-color-#{$key}-rgb: #{k-hex-to-rgb($value)};
4052
4047
  }
4053
4048
  }
4054
4049
  }
@@ -16288,7 +16283,7 @@ $kendo-checkbox-focus-shadow: 0 0 0 2px rgba( black, .06 ) !default;
16288
16283
  $kendo-checkbox-focus-checked-border: null !default;
16289
16284
  /// The box shadow of the focused and checked CheckBox.
16290
16285
  /// @group checkbox
16291
- $kendo-checkbox-focus-checked-shadow: 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( primary, true ), .3 ), rgba( $kendo-color-primary, .3 )) !default;
16286
+ $kendo-checkbox-focus-checked-shadow: 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 30%, transparent), rgba( $kendo-color-primary, .3 )) !default;
16292
16287
 
16293
16288
  /// The background color of the disabled CheckBox.
16294
16289
  /// @group checkbox
@@ -18039,7 +18034,7 @@ $kendo-table-group-row-border: $kendo-table-header-border !default;
18039
18034
 
18040
18035
  /// Background color of alternating rows in table.
18041
18036
  /// @group table
18042
- $kendo-table-alt-row-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .05 ), k-try-shade( $kendo-table-bg, .5 )) !default;
18037
+ $kendo-table-alt-row-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 5%, transparent), k-try-shade( $kendo-table-bg, .5 )) !default;
18043
18038
  /// Text color of alternating rows in table.
18044
18039
  /// @group table
18045
18040
  $kendo-table-alt-row-text: null !default;
@@ -18050,7 +18045,7 @@ $kendo-table-alt-row-border: null !default;
18050
18045
 
18051
18046
  /// Background color of hovered rows in table.
18052
18047
  /// @group table
18053
- $kendo-table-hover-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .11 ), k-try-shade( $kendo-table-bg, 1 )) !default;
18048
+ $kendo-table-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 11%, transparent), k-try-shade( $kendo-table-bg, 1 )) !default;
18054
18049
  /// Text color of hovered rows in table.
18055
18050
  /// @group table
18056
18051
  $kendo-table-hover-text: null !default;
@@ -18075,7 +18070,7 @@ $kendo-table-focus-shadow: $kendo-list-item-focus-shadow !default;
18075
18070
 
18076
18071
  /// Background color of selected rows in table.
18077
18072
  /// @group table
18078
- $kendo-table-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
18073
+ $kendo-table-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
18079
18074
  /// Text color of selected rows in table.
18080
18075
  /// @group table
18081
18076
  $kendo-table-selected-text: null !default;
@@ -19402,7 +19397,7 @@ $kendo-button-focus-border: null !default;
19402
19397
  $kendo-button-focus-gradient: null !default;
19403
19398
  /// The base shadow of the focused Button.
19404
19399
  /// @group button
19405
- $kendo-button-focus-shadow: 0 0 4px 0 if($kendo-enable-color-system, rgba( k-color( border, true ), .75), rgba( $kendo-button-border, .75 )) !default;
19400
+ $kendo-button-focus-shadow: 0 0 4px 0 if($kendo-enable-color-system, color-mix(in srgb, k-color( border ) 75%, transparent), rgba( $kendo-button-border, .75 )) !default;
19406
19401
 
19407
19402
  /// The base background of the disabled Button.
19408
19403
  /// @group button
@@ -19589,7 +19584,7 @@ $kendo-chip-solid-text: $kendo-button-text !default;
19589
19584
  $kendo-chip-solid-border: $kendo-button-border !default;
19590
19585
  /// The base shadow of the solid Chip.
19591
19586
  /// @group chip
19592
- $kendo-chip-solid-shadow: 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .16 ), if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) )) !default;
19587
+ $kendo-chip-solid-shadow: 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 16%, transparent), if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) )) !default;
19593
19588
  /// The base gradient of the solid Chip.
19594
19589
  /// @group chip
19595
19590
  $kendo-chip-solid-gradient: $kendo-button-gradient !default;
@@ -19626,7 +19621,7 @@ $kendo-chip-outline-text: $kendo-chip-solid-text !default;
19626
19621
  $kendo-chip-outline-border: $kendo-chip-outline-text !default;
19627
19622
  /// The base shadow of the outline Chip.
19628
19623
  /// @group chip
19629
- $kendo-chip-outline-shadow: 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .16 ), if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) )) !default;
19624
+ $kendo-chip-outline-shadow: 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 16%, transparent), if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) )) !default;
19630
19625
 
19631
19626
  /// The base background color of the hovered outline Chip.
19632
19627
  /// @group chip
@@ -19870,7 +19865,7 @@ $kendo-chip-list-sizes: (
19870
19865
 
19871
19866
  &:focus,
19872
19867
  &.k-focus {
19873
- @include focus-indicator( 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( $name, true ), .16 ), rgba( $color, .16 )) );
19868
+ @include focus-indicator( 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 16%, transparent), rgba( $color, .16 )) );
19874
19869
  }
19875
19870
 
19876
19871
  &:hover,
@@ -19924,7 +19919,7 @@ $kendo-chip-list-sizes: (
19924
19919
 
19925
19920
  &:focus,
19926
19921
  &.k-focus {
19927
- @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 ))) );
19922
+ @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 ))) );
19928
19923
  }
19929
19924
 
19930
19925
  &:hover,
@@ -19950,7 +19945,7 @@ $kendo-chip-list-sizes: (
19950
19945
 
19951
19946
  &:focus,
19952
19947
  &.k-focus {
19953
- @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 ))) );
19948
+ @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 ))) );
19954
19949
  }
19955
19950
 
19956
19951
  &:hover,
@@ -20971,7 +20966,7 @@ $kendo-skeleton-circle-border-radius: 9999px !default;
20971
20966
 
20972
20967
  /// The background color of the Skeleton item.
20973
20968
  /// @group skeleton
20974
- $kendo-skeleton-item-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .2 ), rgba( $kendo-color-inverse, .2 )) !default;
20969
+ $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;
20975
20970
  /// The background color of the Skeleton wave animation.
20976
20971
  /// @group skeleton
20977
20972
  $kendo-skeleton-wave-bg: rgba( black, .04 ) !default;
@@ -21696,7 +21691,7 @@ $_kendo-module-meta: (
21696
21691
  &:focus,
21697
21692
  &.k-focus {
21698
21693
  @if ( $kendo-solid-button-shadow ) {
21699
- @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 );
21694
+ @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 );
21700
21695
  }
21701
21696
  }
21702
21697
 
@@ -21766,9 +21761,9 @@ $_kendo-module-meta: (
21766
21761
  &.k-focus {
21767
21762
  @if $kendo-outline-button-shadow {
21768
21763
  @if $name == "base" {
21769
- @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 );
21764
+ @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 );
21770
21765
  } @else {
21771
- @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 );
21766
+ @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 );
21772
21767
  }
21773
21768
  }
21774
21769
  }
@@ -21851,9 +21846,9 @@ $_kendo-module-meta: (
21851
21846
  &.k-focus {
21852
21847
  @if ( $kendo-link-button-shadow ) {
21853
21848
  @if $name == "base" {
21854
- @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 );
21849
+ @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 );
21855
21850
  } @else {
21856
- @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 );
21851
+ @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 );
21857
21852
  }
21858
21853
  }
21859
21854
  }
@@ -22028,7 +22023,7 @@ $kendo-menu-item-expanded-text: $kendo-component-text !default;
22028
22023
  $kendo-menu-item-expanded-border: null !default;
22029
22024
  $kendo-menu-item-expanded-gradient: null !default;
22030
22025
 
22031
- $kendo-menu-item-focus-shadow: inset 0 0 3px 1px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .25 ), rgba( $kendo-menu-text, .25 )) !default;
22026
+ $kendo-menu-item-focus-shadow: inset 0 0 3px 1px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 25%, transparent), rgba( $kendo-menu-text, .25 )) !default;
22032
22027
 
22033
22028
  $kendo-menu-separator-spacing: k-map-get( $kendo-spacing, 1 ) !default;
22034
22029
 
@@ -23540,7 +23535,7 @@ $kendo-input-outline-bg: null !default;
23540
23535
  $kendo-input-outline-text: null !default;
23541
23536
  /// The border color of the outline Input components.
23542
23537
  /// @group input
23543
- $kendo-input-outline-border: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-button-text, .5)) !default;
23538
+ $kendo-input-outline-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( $kendo-button-text, .5)) !default;
23544
23539
 
23545
23540
  /// The background color of the outline hovered Input components.
23546
23541
  /// @group input
@@ -23550,7 +23545,7 @@ $kendo-input-outline-hover-bg: null !default;
23550
23545
  $kendo-input-outline-hover-text: null !default;
23551
23546
  /// The border color of the outline hovered Input components.
23552
23547
  /// @group input
23553
- $kendo-input-outline-hover-border: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .8 ), rgba( $kendo-button-text, .8)) !default;
23548
+ $kendo-input-outline-hover-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 80%, transparent), rgba( $kendo-button-text, .8)) !default;
23554
23549
 
23555
23550
  /// The background color of the outline focused Input components.
23556
23551
  /// @group input
@@ -23662,13 +23657,6 @@ $kendo-input-invalid-border: $kendo-invalid-border !default;
23662
23657
  /// @group input
23663
23658
  $kendo-input-invalid-shadow: $kendo-invalid-shadow !default;
23664
23659
 
23665
- /// The border color of the valid Input components.
23666
- /// @group input
23667
- $kendo-input-valid-border: $kendo-valid-border !default;
23668
- /// The shadow of the valid Input components.
23669
- /// @group input
23670
- $kendo-input-valid-shadow: $kendo-valid-shadow !default;
23671
-
23672
23660
  /// The background color of the Picker components.
23673
23661
  /// @group picker
23674
23662
  $kendo-picker-bg: $kendo-button-bg !default;
@@ -23741,7 +23729,7 @@ $kendo-picker-outline-bg: null !default;
23741
23729
  $kendo-picker-outline-text: $kendo-button-text !default;
23742
23730
  /// The border color of the outline Picker components.
23743
23731
  /// @group picker
23744
- $kendo-picker-outline-border: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-picker-outline-text, .5)) !default;
23732
+ $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;
23745
23733
 
23746
23734
  /// The background color of the outline hovered Picker components.
23747
23735
  /// @group picker
@@ -23788,13 +23776,13 @@ $kendo-picker-flat-border: $kendo-button-border !default;
23788
23776
 
23789
23777
  /// The background color of the flat hovered Picker components.
23790
23778
  /// @group picker
23791
- $kendo-picker-flat-hover-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .04 ), rgba( $kendo-button-text, .04 )) !default;
23779
+ $kendo-picker-flat-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 4%, transparent), rgba( $kendo-button-text, .04 )) !default;
23792
23780
  /// The text color of the flat hovered Picker components.
23793
23781
  /// @group picker
23794
23782
  $kendo-picker-flat-hover-text: null !default;
23795
23783
  /// The border color of the flat hovered Picker components.
23796
23784
  /// @group picker
23797
- $kendo-picker-flat-hover-border: if($kendo-enable-color-system, rgba( k-color( border, true ), .16 ), rgba( $kendo-button-border, .16 )) !default;
23785
+ $kendo-picker-flat-hover-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( border ) 16%, transparent), rgba( $kendo-button-border, .16 )) !default;
23798
23786
 
23799
23787
  /// The background color of the flat focused Picker components.
23800
23788
  /// @group picker
@@ -25686,23 +25674,6 @@ $_kendo-module-meta: (
25686
25674
  }
25687
25675
  }
25688
25676
 
25689
- // Valid
25690
- &.k-valid {
25691
- @include fill( $border: $kendo-input-valid-border );
25692
-
25693
- .k-input-validation-icon {
25694
- color: $kendo-valid-text;
25695
- }
25696
-
25697
- &:focus,
25698
- &.k-focus {
25699
- @include focus-indicator( $kendo-input-valid-shadow );
25700
- }
25701
- &:focus-within {
25702
- @include focus-indicator( $kendo-input-valid-shadow );
25703
- }
25704
- }
25705
-
25706
25677
  // Prefix & Suffix
25707
25678
  .k-input-prefix {
25708
25679
  color: $kendo-input-prefix-text;
@@ -25791,23 +25762,6 @@ $_kendo-module-meta: (
25791
25762
  @include focus-indicator( $kendo-input-invalid-shadow );
25792
25763
  }
25793
25764
  }
25794
-
25795
- // Valid
25796
- &.k-valid {
25797
- @include fill( $border: $kendo-input-valid-border );
25798
-
25799
- .k-input-validation-icon {
25800
- color: $kendo-valid-text;
25801
- }
25802
-
25803
- &:focus,
25804
- &.k-focus {
25805
- @include focus-indicator( $kendo-input-valid-shadow );
25806
- }
25807
- &:focus-within {
25808
- @include focus-indicator( $kendo-input-valid-shadow );
25809
- }
25810
- }
25811
25765
  }
25812
25766
 
25813
25767
 
@@ -25893,23 +25847,6 @@ $_kendo-module-meta: (
25893
25847
  }
25894
25848
  }
25895
25849
 
25896
- // Valid
25897
- &.k-valid {
25898
- @include fill( $border: $kendo-input-valid-border );
25899
-
25900
- .k-input-validation-icon {
25901
- color: $kendo-valid-text;
25902
- }
25903
-
25904
- &:focus,
25905
- &.k-focus {
25906
- @include focus-indicator( $kendo-input-valid-shadow );
25907
- }
25908
- &:focus-within {
25909
- @include focus-indicator( $kendo-input-valid-shadow );
25910
- }
25911
- }
25912
-
25913
25850
  // Prefix & Suffix
25914
25851
  .k-input-prefix {
25915
25852
  color: $kendo-input-prefix-text;
@@ -26004,23 +25941,6 @@ $_kendo-module-meta: (
26004
25941
  @include focus-indicator( $kendo-input-invalid-shadow );
26005
25942
  }
26006
25943
  }
26007
-
26008
- // Valid
26009
- &.k-valid {
26010
- @include fill( $border: $kendo-input-valid-border );
26011
-
26012
- .k-input-validation-icon {
26013
- color: $kendo-valid-text;
26014
- }
26015
-
26016
- &:focus,
26017
- &.k-focus {
26018
- @include focus-indicator( $kendo-input-valid-shadow );
26019
- }
26020
- &:focus-within {
26021
- @include focus-indicator( $kendo-input-valid-shadow );
26022
- }
26023
- }
26024
25944
  }
26025
25945
 
26026
25946
 
@@ -26093,23 +26013,6 @@ $_kendo-module-meta: (
26093
26013
  }
26094
26014
  }
26095
26015
 
26096
- // Valid
26097
- &.k-valid {
26098
- @include fill( $border: $kendo-input-valid-border );
26099
-
26100
- .k-input-validation-icon {
26101
- color: $kendo-valid-text;
26102
- }
26103
-
26104
- &:focus,
26105
- &.k-focus {
26106
- @include focus-indicator( $kendo-input-valid-shadow );
26107
- }
26108
- &:focus-within {
26109
- @include focus-indicator( $kendo-input-valid-shadow );
26110
- }
26111
- }
26112
-
26113
26016
  // Prefix & Suffix
26114
26017
  .k-input-prefix {
26115
26018
  color: $kendo-input-prefix-text;
@@ -26204,23 +26107,6 @@ $_kendo-module-meta: (
26204
26107
  @include focus-indicator( $kendo-input-invalid-shadow );
26205
26108
  }
26206
26109
  }
26207
-
26208
- // Valid
26209
- &.k-valid {
26210
- @include fill( $border: $kendo-input-valid-border );
26211
-
26212
- .k-input-validation-icon {
26213
- color: $kendo-valid-text;
26214
- }
26215
-
26216
- &:focus,
26217
- &.k-focus {
26218
- @include focus-indicator( $kendo-input-valid-shadow );
26219
- }
26220
- &:focus-within {
26221
- @include focus-indicator( $kendo-input-valid-shadow );
26222
- }
26223
- }
26224
26110
  }
26225
26111
 
26226
26112
  }
@@ -27634,7 +27520,7 @@ $kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
27634
27520
 
27635
27521
  .k-progressbar-indeterminate {
27636
27522
  @include fill( $kendo-progressbar-indeterminate-text, $kendo-progressbar-indeterminate-bg, $kendo-progressbar-indeterminate-border );
27637
- @include striped-gradient( if($kendo-enable-color-system, rgba( k-color( base-emphasis, true ), .55 ), k-color-shade($kendo-progressbar-indeterminate-bg)) );
27523
+ @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)) );
27638
27524
  background-size: $kendo-progressbar-height $kendo-progressbar-height;
27639
27525
  animation: kendo-progressbar-indeterminate-animation $kendo-progressbar-animation-timing;
27640
27526
  }
@@ -28396,7 +28282,7 @@ $kendo-slider-draghandle-pressed-gradient: null !default;
28396
28282
 
28397
28283
  /// The shadow of the focused Slider drag handle.
28398
28284
  /// @group slider
28399
- $kendo-slider-draghandle-focus-shadow: 0 0 4px 0 if($kendo-enable-color-system, rgba( k-color( primary, true ), .75 ), rgba( $kendo-slider-draghandle-border, .75 )) !default;
28285
+ $kendo-slider-draghandle-focus-shadow: 0 0 4px 0 if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 75%, transparent), rgba( $kendo-slider-draghandle-border, .75 )) !default;
28400
28286
 
28401
28287
  /// The transition speed of the Slider.
28402
28288
  /// @group slider
@@ -29825,7 +29711,7 @@ $kendo-calendar-sizes: (
29825
29711
  .k-calendar { // stylelint-disable-line
29826
29712
 
29827
29713
  $kendo-calendar-range-gap: 1px !default;
29828
- $kendo-calendar-range-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-calendar-cell-selected-bg, .25 ));
29714
+ $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 ));
29829
29715
  $kendo-calendar-range-split-size: 5px !default;
29830
29716
 
29831
29717
  .k-range-start,
@@ -34482,7 +34368,7 @@ $kendo-switch-off-track-focus-border: null !default;
34482
34368
  $kendo-switch-off-track-focus-gradient: null !default;
34483
34369
  /// The ring around the track when the focused Switch is not checked.
34484
34370
  /// @group switch
34485
- $kendo-switch-off-track-focus-ring: 0 0 3px 1px rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .25 ) !default;
34371
+ $kendo-switch-off-track-focus-ring: 0 0 3px 1px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 25%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .25 )) !default;
34486
34372
 
34487
34373
  /// The background of the track when the disabled Switch is not checked.
34488
34374
  /// @group switch
@@ -34564,7 +34450,7 @@ $kendo-switch-on-track-focus-border: null !default;
34564
34450
  $kendo-switch-on-track-focus-gradient: null !default;
34565
34451
  /// The ring around the track wen the focused Switch is checked.
34566
34452
  /// @group switch
34567
- $kendo-switch-on-track-focus-ring: 0 0 3px 1px rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .25 ) !default;
34453
+ $kendo-switch-on-track-focus-ring: 0 0 3px 1px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 25%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .25 )) !default;
34568
34454
 
34569
34455
  /// The background of the track when the disabled Switch is checked.
34570
34456
  /// @group switch
@@ -34838,7 +34724,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
34838
34724
  $kendo-switch-off-track-focus-gradient
34839
34725
  );
34840
34726
  @if $kendo-enable-focus-contrast {
34841
- @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 )) );
34727
+ @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 )) );
34842
34728
  } @else {
34843
34729
  outline: $kendo-switch-off-track-focus-ring;
34844
34730
  }
@@ -34918,7 +34804,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
34918
34804
  $kendo-switch-on-track-focus-gradient
34919
34805
  );
34920
34806
  @if $kendo-enable-focus-contrast {
34921
- @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 )) );
34807
+ @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 )) );
34922
34808
  } @else {
34923
34809
  outline: $kendo-switch-on-track-focus-ring;
34924
34810
  }
@@ -36421,7 +36307,7 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
36421
36307
  @if $kendo-enable-focus-contrast {
36422
36308
  @include box-shadow( inset 0 0 0 2px currentColor );
36423
36309
  } @else {
36424
- outline: $kendo-fab-outline-style $kendo-fab-outline-width if($kendo-enable-color-system, rgba( k-color( $name, true ), .3 ), rgba( $color, .3 ));
36310
+ 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 ));
36425
36311
  }
36426
36312
  }
36427
36313
  }
@@ -36442,8 +36328,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
36442
36328
  .k-disabled.k-fab-solid-#{$name},
36443
36329
  .k-fab-solid-#{$name}:disabled {
36444
36330
  @include box-shadow($kendo-fab-disabled-shadow);
36445
- background-color: if($kendo-enable-color-system, rgba( k-color( $name, true ), .6 ), k-try-tint( $color, 5 ));
36446
- color: if($kendo-enable-color-system, rgba( k-color( on-#{$name}, true ), .6 ), k-try-tint( k-contrast-legacy( $color ), 5 ));
36331
+ background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 60%, transparent), k-try-tint( $color, 5 ));
36332
+ color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-#{$name} ) 60%, transparent), k-try-tint( k-contrast-legacy( $color ), 5 ));
36447
36333
  opacity: 1;
36448
36334
  }
36449
36335
  }
@@ -36482,7 +36368,7 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
36482
36368
  .k-fab-item.k-focus .k-fab-item-text,
36483
36369
  .k-fab-item.k-focus .k-fab-item-icon {
36484
36370
  @if $kendo-enable-focus-contrast {
36485
- @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 )) );
36371
+ @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 )) );
36486
36372
  } @else {
36487
36373
  outline: $kendo-fab-item-outline-style $kendo-fab-item-outline-width $kendo-fab-item-outline-color;
36488
36374
  }
@@ -36504,8 +36390,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
36504
36390
  .k-fab-item-text,
36505
36391
  .k-fab-item-icon {
36506
36392
  @include box-shadow($kendo-fab-item-disabled-shadow);
36507
- background-color: if($kendo-enable-color-system, rgba( k-color( base, true ), .6 ), k-try-tint( $kendo-fab-item-bg, 5 ));
36508
- color: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .6 ), k-try-tint( $kendo-fab-item-text, 5 ));
36393
+ background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( base ) 60%, transparent), k-try-tint( $kendo-fab-item-bg, 5 ));
36394
+ color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 60%, transparent), k-try-tint( $kendo-fab-item-text, 5 ));
36509
36395
  }
36510
36396
  }
36511
36397
 
@@ -39792,13 +39678,13 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
39792
39678
  @each $name, $color in $kendo-theme-colors {
39793
39679
  .k-bottom-nav-solid-#{$name} {
39794
39680
  @include fill(
39795
- $color: if($kendo-enable-color-system, rgba( k-color( on-#{$name}, true ), .65 ), k-true-mix( $color, k-contrast-legacy( $color ), 35%)),
39681
+ $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%)),
39796
39682
  $bg: $color
39797
39683
  );
39798
39684
 
39799
39685
  .k-bottom-nav-item.k-focus,
39800
39686
  .k-bottom-nav-item:focus {
39801
- @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)));
39687
+ @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)));
39802
39688
  }
39803
39689
 
39804
39690
  .k-bottom-nav-item.k-selected {
@@ -39822,7 +39708,7 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
39822
39708
 
39823
39709
  .k-bottom-nav-item.k-focus,
39824
39710
  .k-bottom-nav-item:focus {
39825
- @include fill( $bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .05), rgba($kendo-bottom-nav-flat-text, .05)) );
39711
+ @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)) );
39826
39712
  }
39827
39713
 
39828
39714
  .k-bottom-nav-item.k-selected {
@@ -41022,7 +40908,7 @@ $kendo-stepper-indicator-hover-border: null !default;
41022
40908
  $kendo-stepper-indicator-disabled-bg: null !default;
41023
40909
  /// The text color of the disabled Stepper indicator.
41024
40910
  /// @group stepper
41025
- $kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .6 ), $kendo-disabled-text) !default;
40911
+ $kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 60%, transparent), $kendo-disabled-text) !default;
41026
40912
  /// The border color of the disabled Stepper indicator.
41027
40913
  /// @group stepper
41028
40914
  $kendo-stepper-indicator-disabled-border: null !default;
@@ -41049,7 +40935,7 @@ $kendo-stepper-indicator-done-hover-border: null !default;
41049
40935
 
41050
40936
  /// The background color of the Stepper's disabled done indicator.
41051
40937
  /// @group stepper
41052
- $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;
40938
+ $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;
41053
40939
  /// The text color of the Stepper's disabled done indicator.
41054
40940
  /// @group stepper
41055
40941
  $kendo-stepper-indicator-done-disabled-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-stepper-indicator-done-bg )) !default;
@@ -41101,7 +40987,7 @@ $kendo-stepper-label-error-text: $kendo-color-error !default;
41101
40987
  $kendo-stepper-label-hover-text: null !default;
41102
40988
  /// The text color of the disabled Stepper label.
41103
40989
  /// @group stepper
41104
- $kendo-stepper-label-disabled-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .6 ), $kendo-disabled-text) !default;
40990
+ $kendo-stepper-label-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 60%, transparent), $kendo-disabled-text) !default;
41105
40991
 
41106
40992
  /// The text color of the optional Stepper label.
41107
40993
  /// @group stepper
@@ -44226,7 +44112,7 @@ $kendo-dock-manager-dock-preview-border-style: dashed !default;
44226
44112
  $kendo-dock-manager-dock-preview-border-radius: $kendo-border-radius-sm !default;
44227
44113
  /// The background color of the dropping area in the DockManager component.
44228
44114
  /// @group dock-manager
44229
- $kendo-dock-manager-dock-preview-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .16 ), rgba( $kendo-color-primary, .16 )) !default;
44115
+ $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;
44230
44116
  /// The border color of the dropping area in the DockManager component.
44231
44117
  /// @group dock-manager
44232
44118
  $kendo-dock-manager-dock-preview-border: $kendo-color-primary !default;
@@ -45588,7 +45474,7 @@ $kendo-grid-selection-aggregates-line-height: $kendo-grid-line-height !default;
45588
45474
  $kendo-grid-selection-aggregates-font-weight: $kendo-font-weight-bold !default;
45589
45475
 
45590
45476
  $kendo-grid-sorted-icon-spacing: calc( #{$kendo-padding-md-x} - 1px ) !default;
45591
- $kendo-grid-sorted-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .03 ), rgba( k-contrast-color( $kendo-grid-bg ), .02 )) !default;
45477
+ $kendo-grid-sorted-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 3%, transparent), rgba( k-contrast-color( $kendo-grid-bg ), .02 )) !default;
45592
45478
  $kendo-grid-sorting-indicator-text: $kendo-color-primary !default;
45593
45479
  $kendo-grid-sorting-index-font-size: $kendo-font-size-sm !default;
45594
45480
  $kendo-grid-sorting-index-height: $kendo-icon-size !default;
@@ -45619,12 +45505,12 @@ $kendo-grid-sticky-header-border: $kendo-grid-sticky-border !default;
45619
45505
  $kendo-grid-sticky-footer-bg: $kendo-grid-header-bg !default;
45620
45506
  $kendo-grid-sticky-footer-hover-bg: $kendo-grid-hover-bg !default;
45621
45507
 
45622
- $kendo-grid-sticky-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), k-color-mix($kendo-selected-bg, #ffffff, 25%)) !default;
45623
- $kendo-grid-sticky-selected-alt-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), k-try-shade( $kendo-grid-sticky-selected-bg, .5 )) !default;
45508
+ $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, #ffffff, 25%)) !default;
45509
+ $kendo-grid-sticky-selected-alt-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), k-try-shade( $kendo-grid-sticky-selected-bg, .5 )) !default;
45624
45510
 
45625
45511
  // Must be a solid color
45626
45512
  $kendo-grid-sticky-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-hover ), $kendo-grid-hover-bg) !default;
45627
- $kendo-grid-sticky-selected-hover-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), k-try-shade( $kendo-grid-sticky-selected-bg, 1 )) !default;
45513
+ $kendo-grid-sticky-selected-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), k-try-shade( $kendo-grid-sticky-selected-bg, 1 )) !default;
45628
45514
 
45629
45515
  $kendo-grid-column-menu-width: 230px !default;
45630
45516
  $kendo-grid-column-menu-max-width: 320px !default;
@@ -45675,7 +45561,7 @@ $kendo-grid-group-footer-second-cell-border: 1px !default;
45675
45561
 
45676
45562
  /// Background color of the grid row resize indicator
45677
45563
  /// @group grid
45678
- $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;
45564
+ $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;
45679
45565
  /// Active background color of the grid row resize indicator
45680
45566
  /// @group grid
45681
45567
  $kendo-grid-row-resizer-active-bg: $kendo-color-primary !default;
@@ -47727,7 +47613,7 @@ $kendo-listview-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
47727
47613
  $kendo-listview-item-selected-text: null !default;
47728
47614
  /// The background color of the selected ListView items.
47729
47615
  /// @group listview
47730
- $kendo-listview-item-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
47616
+ $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;
47731
47617
  /// The border color of the selected ListView items.
47732
47618
  /// @group listview
47733
47619
  $kendo-listview-item-selected-border: null !default;
@@ -48163,7 +48049,7 @@ $kendo-spreadsheet-view-font-size: $kendo-spreadsheet-font-size !default;
48163
48049
 
48164
48050
  /// The background color of the Spreadsheet selection.
48165
48051
  /// @group spreadsheet
48166
- $kendo-spreadsheet-selection-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
48052
+ $kendo-spreadsheet-selection-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
48167
48053
  /// The text color of the Spreadsheet selection.
48168
48054
  /// @group spreadsheet
48169
48055
  $kendo-spreadsheet-selection-text: null !default;
@@ -48186,7 +48072,7 @@ $kendo-spreadsheet-single-selection-border: $kendo-spreadsheet-bg !default;
48186
48072
 
48187
48073
  /// The background color of the Spreadsheet partial selection.
48188
48074
  /// @group spreadsheet
48189
- $kendo-spreadsheet-partial-selection-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
48075
+ $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;
48190
48076
 
48191
48077
  /// The background color of the Spreadsheet active cell.
48192
48078
  /// @group spreadsheet
@@ -48197,7 +48083,7 @@ $kendo-spreadsheet-active-cell-shadow: inset 0 0 0 1px $kendo-selected-bg !defau
48197
48083
 
48198
48084
  /// The background color of the Spreadsheet auto fill.
48199
48085
  /// @group spreadsheet
48200
- $kendo-spreadsheet-auto-fill-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
48086
+ $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;
48201
48087
  /// The text color of the Spreadsheet auto fill.
48202
48088
  /// @group spreadsheet
48203
48089
  $kendo-spreadsheet-auto-fill-text: null !default;
@@ -48327,7 +48213,7 @@ $kendo-spreadsheet-drawing-outline-width: 2px !default;
48327
48213
 
48328
48214
  /// The background color of the Spreadsheet drawing anchor.
48329
48215
  /// @group spreadsheet
48330
- $kendo-spreadsheet-drawing-anchor-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
48216
+ $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;
48331
48217
 
48332
48218
  /// The vertical spacing of the Spreadsheet DropZone.
48333
48219
  /// @group spreadsheet
@@ -49579,7 +49465,7 @@ $kendo-pivotgrid-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-h
49579
49465
  $kendo-pivotgrid-hover-text: null !default;
49580
49466
  $kendo-pivotgrid-hover-border: null !default;
49581
49467
 
49582
- $kendo-pivotgrid-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 )) !default;
49468
+ $kendo-pivotgrid-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
49583
49469
  $kendo-pivotgrid-selected-text: null !default;
49584
49470
  $kendo-pivotgrid-selected-border: null !default;
49585
49471
 
@@ -53736,7 +53622,7 @@ $kendo-gantt-treelist-bg: null !default;
53736
53622
  $kendo-gantt-treelist-text: null !default;
53737
53623
  $kendo-gantt-treelist-border: null !default;
53738
53624
 
53739
- $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;
53625
+ $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;
53740
53626
  $kendo-gantt-nonwork-text: null !default;
53741
53627
  $kendo-gantt-nonwork-border: null !default;
53742
53628
 
@@ -56320,7 +56206,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
56320
56206
 
56321
56207
  .k-scheduler-layout td.k-selected,
56322
56208
  .k-scheduler-layout .k-scheduler-cell.k-selected {
56323
- background-color: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25));
56209
+ background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-selected-bg, .25));
56324
56210
  }
56325
56211
 
56326
56212
  .k-scheduler-layout-flex {
@@ -56437,7 +56323,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
56437
56323
 
56438
56324
  // Selected
56439
56325
  .k-scheduler-content tr.k-selected {
56440
- background-color: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25));
56326
+ background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-selected-bg, .25));
56441
56327
  }
56442
56328
  .k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
56443
56329
  .k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
@@ -57416,7 +57302,7 @@ $kendo-media-player-titlebar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
57416
57302
  $kendo-media-player-titlebar-bg: null !default;
57417
57303
  $kendo-media-player-titlebar-text: $kendo-media-player-bg !default;
57418
57304
  $kendo-media-player-titlebar-border: null !default;
57419
- $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;
57305
+ $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;
57420
57306
 
57421
57307
  // #endregion
57422
57308
  // #region @import "./_layout.scss"; -> scss/mediaplayer/_layout.scss
@@ -57554,7 +57440,7 @@ $kendo-media-player-titlebar-gradient: if($kendo-enable-color-system, ( rgba( k-
57554
57440
  .k-mediaplayer-titlebar {
57555
57441
  color: $kendo-media-player-titlebar-text;
57556
57442
  background-image: linear-gradient( $kendo-media-player-titlebar-gradient );
57557
- text-shadow: 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-media-player-text, .5 ));
57443
+ 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 ));
57558
57444
  }
57559
57445
 
57560
57446
  }
@@ -57669,13 +57555,13 @@ $kendo-timeline-track-arrow-height: 30px !default;
57669
57555
 
57670
57556
  /// The background color of the disabled Timeline track arrow.
57671
57557
  /// @group timeline
57672
- $kendo-timeline-track-arrow-disabled-bg: if($kendo-enable-color-system, rgba( k-color( base, true ), .6 ), k-true-mix( $kendo-button-bg, $kendo-body-bg, 65% )) !default;
57558
+ $kendo-timeline-track-arrow-disabled-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( base ) 60%, transparent), k-true-mix( $kendo-button-bg, $kendo-body-bg, 65% )) !default;
57673
57559
  /// The text color of the disabled Timeline track arrow.
57674
57560
  /// @group timeline
57675
- $kendo-timeline-track-arrow-disabled-text: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .6 ), k-true-mix( $kendo-button-text, $kendo-body-bg, 65% )) !default;
57561
+ $kendo-timeline-track-arrow-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 60%, transparent), k-true-mix( $kendo-button-text, $kendo-body-bg, 65% )) !default;
57676
57562
  /// The border color of the disabled Timeline track arrow.
57677
57563
  /// @group timeline
57678
- $kendo-timeline-track-arrow-disabled-border: if($kendo-enable-color-system, rgba( k-color( border, true ), .15 ), k-true-mix( #000000, $kendo-body-bg, 4.8% )) !default;
57564
+ $kendo-timeline-track-arrow-disabled-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( border ) 15%, transparent), k-true-mix( #000000, $kendo-body-bg, 4.8% )) !default;
57679
57565
 
57680
57566
  /// The size of the Timeline track.
57681
57567
  /// @group timeline
@@ -59796,13 +59682,13 @@ $kendo-chart-pane-title-font-weight: $kendo-font-weight-normal !default;
59796
59682
 
59797
59683
  /// The color of the Chart grid lines (major).
59798
59684
  /// @group charts
59799
- $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;
59685
+ $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;
59800
59686
 
59801
59687
  /// The color of the Chart grid lines (minor).
59802
59688
  /// @group charts
59803
- $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;
59689
+ $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;
59804
59690
 
59805
- $kendo-chart-inactive: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-body-text, .5 )) !default;
59691
+ $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;
59806
59692
  $kendo-chart-area-opacity: .6 !default;
59807
59693
  $kendo-chart-area-inactive-opacity: .1 !default;
59808
59694
  $kendo-chart-line-inactive-opacity: .1 !default;
@@ -59813,20 +59699,20 @@ $kendo-chart-bg: $kendo-component-bg !default;
59813
59699
  $kendo-chart-text: $kendo-component-text !default;
59814
59700
  $kendo-chart-border: $kendo-component-border !default;
59815
59701
 
59816
- $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;
59702
+ $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;
59817
59703
  $kendo-chart-crosshair-shared-tooltip-color: $kendo-chart-text !default;
59818
59704
  $kendo-chart-crosshair-shared-tooltip-background: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-chart-bg, 1 )) !default;
59819
- $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;
59705
+ $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;
59820
59706
 
59821
- $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;
59822
- $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;
59823
- $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;
59707
+ $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;
59708
+ $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;
59709
+ $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;
59824
59710
 
59825
- $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;
59711
+ $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;
59826
59712
 
59827
59713
  $kendo-chart-selection-handle-size: 22px !default;
59828
- $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;
59829
- $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;
59714
+ $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;
59715
+ $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;
59830
59716
 
59831
59717
 
59832
59718
  // TreeMap
@@ -60588,7 +60474,7 @@ $kendo-map-zoom-control-button-padding-y: $kendo-map-zoom-control-button-padding
60588
60474
  $kendo-map-attribution-padding-x: $kendo-padding-sm-x !default;
60589
60475
  $kendo-map-attribution-padding-y: $kendo-padding-sm-y !default;
60590
60476
  $kendo-map-attribution-font-size: ($kendo-map-font-size * .75) !default;
60591
- $kendo-map-attribution-bg: if($kendo-enable-color-system, rgba( k-color( app-surface, true ), .8 ), rgba( $kendo-map-bg, .8 )) !default;
60477
+ $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;
60592
60478
 
60593
60479
  $kendo-map-marker-fill: $kendo-color-primary !default;
60594
60480
 
@@ -61280,7 +61166,7 @@ $kendo-signature-lg-padding-y: $kendo-signature-lg-padding-x !default;
61280
61166
 
61281
61167
  $kendo-signature-line-width: 1px !default;
61282
61168
  $kendo-signature-line-style: dashed !default;
61283
- $kendo-signature-line-color: if($kendo-enable-color-system, rgba( k-color( info, true ), .24 ), rgba( $kendo-color-info, .24 )) !default;
61169
+ $kendo-signature-line-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( info ) 24%, transparent), rgba( $kendo-color-info, .24 )) !default;
61284
61170
 
61285
61171
  $kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding-x} ) !default;
61286
61172
  $kendo-signature-sm-line-size: calc( 100% - 2 * #{$kendo-signature-sm-padding-x} ) !default;