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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. package/dist/all.css +314 -40
  2. package/dist/all.scss +2039 -646
  3. package/dist/meta/sassdoc-data.json +3650 -1164
  4. package/dist/meta/sassdoc-raw-data.json +1725 -577
  5. package/dist/meta/variables.json +514 -338
  6. package/lib/swatches/classic-green-dark.json +1 -1
  7. package/lib/swatches/classic-green.json +1 -1
  8. package/lib/swatches/classic-lavender-dark.json +1 -1
  9. package/lib/swatches/classic-lavender.json +1 -1
  10. package/lib/swatches/classic-main-dark.json +1 -1
  11. package/lib/swatches/classic-main.json +1 -1
  12. package/lib/swatches/classic-metro-dark.json +1 -1
  13. package/lib/swatches/classic-metro.json +1 -1
  14. package/lib/swatches/classic-moonlight.json +1 -1
  15. package/lib/swatches/classic-opal-dark.json +1 -1
  16. package/lib/swatches/classic-opal.json +1 -1
  17. package/lib/swatches/classic-silver-dark.json +1 -1
  18. package/lib/swatches/classic-silver.json +1 -1
  19. package/lib/swatches/classic-uniform.json +1 -1
  20. package/package.json +6 -6
  21. package/scss/_variables.scss +1 -193
  22. package/scss/adaptive/_variables.scss +1 -1
  23. package/scss/appbar/_variables.scss +2 -2
  24. package/scss/button/_variables.scss +7 -7
  25. package/scss/chat/_variables.scss +1 -1
  26. package/scss/checkbox/_variables.scss +2 -2
  27. package/scss/chip/_variables.scss +3 -3
  28. package/scss/core/_index.scss +6 -0
  29. package/scss/core/color-system/_palettes.scss +277 -0
  30. package/scss/core/color-system/_swatch-legacy.scss +62 -0
  31. package/scss/core/color-system/_swatch.scss +397 -0
  32. package/scss/dataviz/_variables.scss +42 -42
  33. package/scss/dock-manager/_variables.scss +1 -1
  34. package/scss/dropzone/_variables.scss +1 -1
  35. package/scss/editor/_variables.scss +1 -1
  36. package/scss/expansion-panel/_variables.scss +1 -2
  37. package/scss/filemanager/_variables.scss +2 -2
  38. package/scss/forms/_variables.scss +1 -1
  39. package/scss/gantt/_variables.scss +10 -10
  40. package/scss/grid/_variables.scss +11 -8
  41. package/scss/index.scss +2 -0
  42. package/scss/input/_variables.scss +20 -7
  43. package/scss/listview/_variables.scss +1 -1
  44. package/scss/map/_variables.scss +1 -1
  45. package/scss/mediaplayer/_variables.scss +1 -1
  46. package/scss/menu/_variables.scss +1 -1
  47. package/scss/notification/_variables.scss +6 -1
  48. package/scss/panelbar/_variables.scss +3 -4
  49. package/scss/pivotgrid/_variables.scss +5 -5
  50. package/scss/progressbar/_variables.scss +3 -3
  51. package/scss/prompt/_index.scss +37 -0
  52. package/scss/prompt/_layout.scss +6 -0
  53. package/scss/prompt/_theme.scss +6 -0
  54. package/scss/prompt/_variables.scss +66 -0
  55. package/scss/scheduler/_variables.scss +3 -3
  56. package/scss/scrollview/_variables.scss +1 -1
  57. package/scss/signature/_variables.scss +1 -1
  58. package/scss/skeleton/_variables.scss +1 -1
  59. package/scss/slider/_variables.scss +8 -8
  60. package/scss/splitter/_variables.scss +1 -1
  61. package/scss/spreadsheet/_variables.scss +4 -4
  62. package/scss/stepper/_variables.scss +7 -7
  63. package/scss/switch/_variables.scss +7 -7
  64. package/scss/table/_variables.scss +3 -3
  65. package/scss/taskboard/_variables.scss +4 -3
  66. package/scss/timeline/_variables.scss +4 -4
  67. package/scss/tooltip/_variables.scss +4 -4
  68. package/scss/core/color-system/index.import.scss +0 -1
@@ -283,7 +283,7 @@
283
283
  "context": {
284
284
  "type": "variable",
285
285
  "name": "kendo-appbar-light-text",
286
- "value": "k-contrast-color( $kendo-color-light )",
286
+ "value": "if($kendo-enable-color-system, k-color( on-light ), k-contrast-color( $kendo-color-light ))",
287
287
  "scope": "default",
288
288
  "line": {
289
289
  "start": 40,
@@ -333,7 +333,7 @@
333
333
  "context": {
334
334
  "type": "variable",
335
335
  "name": "kendo-appbar-dark-text",
336
- "value": "k-contrast-color( $kendo-color-dark )",
336
+ "value": "if($kendo-enable-color-system, k-color( on-dark ), k-contrast-color( $kendo-color-dark ))",
337
337
  "scope": "default",
338
338
  "line": {
339
339
  "start": 47,
@@ -3758,7 +3758,7 @@
3758
3758
  "context": {
3759
3759
  "type": "variable",
3760
3760
  "name": "kendo-button-border",
3761
- "value": "k-try-shade( $kendo-button-bg, 2 )",
3761
+ "value": "if($kendo-enable-color-system, k-color( border ), k-try-shade( $kendo-button-bg, 2 ))",
3762
3762
  "scope": "default",
3763
3763
  "line": {
3764
3764
  "start": 119,
@@ -3833,7 +3833,7 @@
3833
3833
  "context": {
3834
3834
  "type": "variable",
3835
3835
  "name": "kendo-button-hover-bg",
3836
- "value": "k-try-shade( $kendo-button-bg, 1 )",
3836
+ "value": "if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-button-bg, 1 ))",
3837
3837
  "scope": "default",
3838
3838
  "line": {
3839
3839
  "start": 129,
@@ -3883,7 +3883,7 @@
3883
3883
  "context": {
3884
3884
  "type": "variable",
3885
3885
  "name": "kendo-button-hover-border",
3886
- "value": "k-try-shade( $kendo-button-bg, 3 )",
3886
+ "value": "if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-button-bg, 3 ))",
3887
3887
  "scope": "default",
3888
3888
  "line": {
3889
3889
  "start": 135,
@@ -3958,7 +3958,7 @@
3958
3958
  "context": {
3959
3959
  "type": "variable",
3960
3960
  "name": "kendo-button-active-bg",
3961
- "value": "k-try-shade( $kendo-button-bg, 2 )",
3961
+ "value": "if($kendo-enable-color-system, k-color( base-active ), k-try-shade( $kendo-button-bg, 2 ))",
3962
3962
  "scope": "default",
3963
3963
  "line": {
3964
3964
  "start": 145,
@@ -4008,7 +4008,7 @@
4008
4008
  "context": {
4009
4009
  "type": "variable",
4010
4010
  "name": "kendo-button-active-border",
4011
- "value": "k-try-shade( $kendo-button-bg, 4 )",
4011
+ "value": "if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-button-bg, 4 ))",
4012
4012
  "scope": "default",
4013
4013
  "line": {
4014
4014
  "start": 151,
@@ -4108,7 +4108,7 @@
4108
4108
  "context": {
4109
4109
  "type": "variable",
4110
4110
  "name": "kendo-button-selected-text",
4111
- "value": "k-contrast-legacy( $kendo-button-selected-bg )",
4111
+ "value": "if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-button-selected-bg ))",
4112
4112
  "scope": "default",
4113
4113
  "line": {
4114
4114
  "start": 164,
@@ -4308,7 +4308,7 @@
4308
4308
  "context": {
4309
4309
  "type": "variable",
4310
4310
  "name": "kendo-button-focus-shadow",
4311
- "value": "0 0 4px 0 rgba( $kendo-button-border, .75 )",
4311
+ "value": "0 0 4px 0 if($kendo-enable-color-system, rgba( k-color( border, true ), .75), rgba( $kendo-button-border, .75 ))",
4312
4312
  "scope": "default",
4313
4313
  "line": {
4314
4314
  "start": 189,
@@ -6333,7 +6333,7 @@
6333
6333
  "context": {
6334
6334
  "type": "variable",
6335
6335
  "name": "kendo-series-a",
6336
- "value": "#ff6358",
6336
+ "value": "if($kendo-enable-color-system, k-color( series-a ), #ff6358)",
6337
6337
  "scope": "default",
6338
6338
  "line": {
6339
6339
  "start": 8,
@@ -6358,7 +6358,7 @@
6358
6358
  "context": {
6359
6359
  "type": "variable",
6360
6360
  "name": "kendo-series-b",
6361
- "value": "#ffd246",
6361
+ "value": "if($kendo-enable-color-system, k-color( series-b ), #ffd246)",
6362
6362
  "scope": "default",
6363
6363
  "line": {
6364
6364
  "start": 16,
@@ -6383,7 +6383,7 @@
6383
6383
  "context": {
6384
6384
  "type": "variable",
6385
6385
  "name": "kendo-series-c",
6386
- "value": "#78d237",
6386
+ "value": "if($kendo-enable-color-system, k-color( series-c ), #78d237)",
6387
6387
  "scope": "default",
6388
6388
  "line": {
6389
6389
  "start": 24,
@@ -6408,7 +6408,7 @@
6408
6408
  "context": {
6409
6409
  "type": "variable",
6410
6410
  "name": "kendo-series-d",
6411
- "value": "#28b4c8",
6411
+ "value": "if($kendo-enable-color-system, k-color( series-d ), #28b4c8)",
6412
6412
  "scope": "default",
6413
6413
  "line": {
6414
6414
  "start": 32,
@@ -6433,7 +6433,7 @@
6433
6433
  "context": {
6434
6434
  "type": "variable",
6435
6435
  "name": "kendo-series-e",
6436
- "value": "#2d73f5",
6436
+ "value": "if($kendo-enable-color-system, k-color( series-e ), #2d73f5)",
6437
6437
  "scope": "default",
6438
6438
  "line": {
6439
6439
  "start": 40,
@@ -6458,7 +6458,7 @@
6458
6458
  "context": {
6459
6459
  "type": "variable",
6460
6460
  "name": "kendo-series-f",
6461
- "value": "#aa46be",
6461
+ "value": "if($kendo-enable-color-system, k-color( series-f ), #aa46be)",
6462
6462
  "scope": "default",
6463
6463
  "line": {
6464
6464
  "start": 48,
@@ -6508,7 +6508,7 @@
6508
6508
  "context": {
6509
6509
  "type": "variable",
6510
6510
  "name": "kendo-chart-major-lines",
6511
- "value": "rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 )",
6511
+ "value": "rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .08 )",
6512
6512
  "scope": "default",
6513
6513
  "line": {
6514
6514
  "start": 103,
@@ -6533,7 +6533,7 @@
6533
6533
  "context": {
6534
6534
  "type": "variable",
6535
6535
  "name": "kendo-chart-minor-lines",
6536
- "value": "rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .04 )",
6536
+ "value": "rgba( if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )), .04 )",
6537
6537
  "scope": "default",
6538
6538
  "line": {
6539
6539
  "start": 107,
@@ -6983,7 +6983,7 @@
6983
6983
  "context": {
6984
6984
  "type": "variable",
6985
6985
  "name": "kendo-checkbox-checked-text",
6986
- "value": "k-contrast-legacy( $kendo-checkbox-checked-bg )",
6986
+ "value": "if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-checkbox-checked-bg ))",
6987
6987
  "scope": "default",
6988
6988
  "line": {
6989
6989
  "start": 84,
@@ -7183,7 +7183,7 @@
7183
7183
  "context": {
7184
7184
  "type": "variable",
7185
7185
  "name": "kendo-checkbox-focus-checked-shadow",
7186
- "value": "0 0 0 2px rgba( $kendo-color-primary, .3 )",
7186
+ "value": "0 0 0 2px if($kendo-enable-color-system, rgba( k-color( primary, true ), .3 ), rgba( $kendo-color-primary, .3 ))",
7187
7187
  "scope": "default",
7188
7188
  "line": {
7189
7189
  "start": 110,
@@ -8358,7 +8358,7 @@
8358
8358
  "context": {
8359
8359
  "type": "variable",
8360
8360
  "name": "kendo-chip-solid-shadow",
8361
- "value": "0 0 0 2px if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) )",
8361
+ "value": "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 ) ))",
8362
8362
  "scope": "default",
8363
8363
  "line": {
8364
8364
  "start": 118,
@@ -8633,7 +8633,7 @@
8633
8633
  "context": {
8634
8634
  "type": "variable",
8635
8635
  "name": "kendo-chip-outline-shadow",
8636
- "value": "0 0 0 2px if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) )",
8636
+ "value": "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 ) ))",
8637
8637
  "scope": "default",
8638
8638
  "line": {
8639
8639
  "start": 155,
@@ -8683,7 +8683,7 @@
8683
8683
  "context": {
8684
8684
  "type": "variable",
8685
8685
  "name": "kendo-chip-outline-hover-text",
8686
- "value": "k-contrast-legacy( $kendo-chip-outline-hover-bg )",
8686
+ "value": "if($kendo-enable-color-system, k-color( base-subtle ), k-contrast-legacy( $kendo-chip-outline-hover-bg ))",
8687
8687
  "scope": "default",
8688
8688
  "line": {
8689
8689
  "start": 162,
@@ -9850,62 +9850,35 @@
9850
9850
  }
9851
9851
  },
9852
9852
  {
9853
- "description": "The color white.\nNote: you cannot change this value.\n",
9853
+ "description": "The global default Colors map.\n",
9854
9854
  "commentRange": {
9855
- "start": 3,
9856
- "end": 6
9857
- },
9858
- "context": {
9859
- "type": "variable",
9860
- "name": "kendo-color-white",
9861
- "value": "#ffffff",
9862
- "scope": "private",
9863
- "line": {
9864
- "start": 7,
9865
- "end": 7
9866
- }
9867
- },
9868
- "type": "Color",
9869
- "group": [
9870
- "color-system"
9871
- ],
9872
- "access": "public",
9873
- "file": {
9874
- "path": "_variables.scss",
9875
- "name": "_variables.scss"
9876
- }
9877
- },
9878
- {
9879
- "description": "The color black.\nNote: you cannot change this value.\n",
9880
- "commentRange": {
9881
- "start": 9,
9882
- "end": 12
9855
+ "start": 177,
9856
+ "end": 178
9883
9857
  },
9884
9858
  "context": {
9885
9859
  "type": "variable",
9886
- "name": "kendo-color-black",
9887
- "value": "#000000",
9888
- "scope": "private",
9860
+ "name": "kendo-colors",
9861
+ "value": "$_default-colors",
9862
+ "scope": "default",
9889
9863
  "line": {
9890
- "start": 13,
9891
- "end": 13
9864
+ "start": 179,
9865
+ "end": 179
9892
9866
  }
9893
9867
  },
9894
- "type": "Color",
9895
9868
  "group": [
9896
9869
  "color-system"
9897
9870
  ],
9898
9871
  "access": "public",
9899
9872
  "file": {
9900
- "path": "_variables.scss",
9901
- "name": "_variables.scss"
9873
+ "path": "core/color-system/_swatch.scss",
9874
+ "name": "_swatch.scss"
9902
9875
  }
9903
9876
  },
9904
9877
  {
9905
9878
  "description": "The color that focuses the user attention.\nUsed for primary buttons and for elements of primary importance across the theme.\n",
9906
9879
  "commentRange": {
9907
- "start": 119,
9908
- "end": 122
9880
+ "start": 184,
9881
+ "end": 187
9909
9882
  },
9910
9883
  "context": {
9911
9884
  "type": "variable",
@@ -9913,8 +9886,8 @@
9913
9886
  "value": "#f35800",
9914
9887
  "scope": "default",
9915
9888
  "line": {
9916
- "start": 123,
9917
- "end": 123
9889
+ "start": 188,
9890
+ "end": 188
9918
9891
  }
9919
9892
  },
9920
9893
  "group": [
@@ -9923,15 +9896,15 @@
9923
9896
  "type": "Color",
9924
9897
  "access": "public",
9925
9898
  "file": {
9926
- "path": "_variables.scss",
9927
- "name": "_variables.scss"
9899
+ "path": "core/color-system/_swatch.scss",
9900
+ "name": "_swatch.scss"
9928
9901
  }
9929
9902
  },
9930
9903
  {
9931
9904
  "description": "The color used along with the primary color denoted by $kendo-color-primary.\nUsed to provide contrast between the background and foreground colors.\n",
9932
9905
  "commentRange": {
9933
- "start": 127,
9934
- "end": 130
9906
+ "start": 192,
9907
+ "end": 195
9935
9908
  },
9936
9909
  "context": {
9937
9910
  "type": "variable",
@@ -9939,8 +9912,8 @@
9939
9912
  "value": "k-contrast-legacy( $kendo-color-primary )",
9940
9913
  "scope": "default",
9941
9914
  "line": {
9942
- "start": 131,
9943
- "end": 131
9915
+ "start": 196,
9916
+ "end": 196
9944
9917
  }
9945
9918
  },
9946
9919
  "group": [
@@ -9949,15 +9922,15 @@
9949
9922
  "type": "Color",
9950
9923
  "access": "public",
9951
9924
  "file": {
9952
- "path": "_variables.scss",
9953
- "name": "_variables.scss"
9925
+ "path": "core/color-system/_swatch.scss",
9926
+ "name": "_swatch.scss"
9954
9927
  }
9955
9928
  },
9956
9929
  {
9957
9930
  "description": "The secondary color of the theme.\n",
9958
9931
  "commentRange": {
9959
- "start": 133,
9960
- "end": 135
9932
+ "start": 198,
9933
+ "end": 200
9961
9934
  },
9962
9935
  "context": {
9963
9936
  "type": "variable",
@@ -9965,8 +9938,8 @@
9965
9938
  "value": "#e9e9e9",
9966
9939
  "scope": "default",
9967
9940
  "line": {
9968
- "start": 136,
9969
- "end": 136
9941
+ "start": 201,
9942
+ "end": 201
9970
9943
  }
9971
9944
  },
9972
9945
  "group": [
@@ -9975,15 +9948,15 @@
9975
9948
  "type": "Color",
9976
9949
  "access": "public",
9977
9950
  "file": {
9978
- "path": "_variables.scss",
9979
- "name": "_variables.scss"
9951
+ "path": "core/color-system/_swatch.scss",
9952
+ "name": "_swatch.scss"
9980
9953
  }
9981
9954
  },
9982
9955
  {
9983
9956
  "description": "The color used along with the secondary color denoted by $kendo-color-secondary.\nUsed to provide contrast between the background and foreground colors.\n",
9984
9957
  "commentRange": {
9985
- "start": 140,
9986
- "end": 143
9958
+ "start": 205,
9959
+ "end": 208
9987
9960
  },
9988
9961
  "context": {
9989
9962
  "type": "variable",
@@ -9991,8 +9964,8 @@
9991
9964
  "value": "k-contrast-color( $kendo-color-secondary )",
9992
9965
  "scope": "default",
9993
9966
  "line": {
9994
- "start": 144,
9995
- "end": 144
9967
+ "start": 209,
9968
+ "end": 209
9996
9969
  }
9997
9970
  },
9998
9971
  "group": [
@@ -10001,15 +9974,15 @@
10001
9974
  "type": "Color",
10002
9975
  "access": "public",
10003
9976
  "file": {
10004
- "path": "_variables.scss",
10005
- "name": "_variables.scss"
9977
+ "path": "core/color-system/_swatch.scss",
9978
+ "name": "_swatch.scss"
10006
9979
  }
10007
9980
  },
10008
9981
  {
10009
9982
  "description": "The tertiary color of the theme.\n",
10010
9983
  "commentRange": {
10011
- "start": 146,
10012
- "end": 148
9984
+ "start": 211,
9985
+ "end": 213
10013
9986
  },
10014
9987
  "context": {
10015
9988
  "type": "variable",
@@ -10017,8 +9990,8 @@
10017
9990
  "value": "#03a9f4",
10018
9991
  "scope": "default",
10019
9992
  "line": {
10020
- "start": 149,
10021
- "end": 149
9993
+ "start": 214,
9994
+ "end": 214
10022
9995
  }
10023
9996
  },
10024
9997
  "group": [
@@ -10027,15 +10000,15 @@
10027
10000
  "type": "Color",
10028
10001
  "access": "public",
10029
10002
  "file": {
10030
- "path": "_variables.scss",
10031
- "name": "_variables.scss"
10003
+ "path": "core/color-system/_swatch.scss",
10004
+ "name": "_swatch.scss"
10032
10005
  }
10033
10006
  },
10034
10007
  {
10035
10008
  "description": "The color used along with the tertiary color denoted by $kendo-color-tertiary.\nUsed to provide contrast between the background and foreground colors.\n",
10036
10009
  "commentRange": {
10037
- "start": 153,
10038
- "end": 156
10010
+ "start": 218,
10011
+ "end": 221
10039
10012
  },
10040
10013
  "context": {
10041
10014
  "type": "variable",
@@ -10043,8 +10016,8 @@
10043
10016
  "value": "k-contrast-color( $kendo-color-tertiary )",
10044
10017
  "scope": "default",
10045
10018
  "line": {
10046
- "start": 157,
10047
- "end": 157
10019
+ "start": 222,
10020
+ "end": 222
10048
10021
  }
10049
10022
  },
10050
10023
  "group": [
@@ -10053,15 +10026,15 @@
10053
10026
  "type": "Color",
10054
10027
  "access": "public",
10055
10028
  "file": {
10056
- "path": "_variables.scss",
10057
- "name": "_variables.scss"
10029
+ "path": "core/color-system/_swatch.scss",
10030
+ "name": "_swatch.scss"
10058
10031
  }
10059
10032
  },
10060
10033
  {
10061
10034
  "description": "The color for informational messages and states.\n",
10062
10035
  "commentRange": {
10063
- "start": 159,
10064
- "end": 161
10036
+ "start": 224,
10037
+ "end": 226
10065
10038
  },
10066
10039
  "context": {
10067
10040
  "type": "variable",
@@ -10069,8 +10042,8 @@
10069
10042
  "value": "#2498bc",
10070
10043
  "scope": "default",
10071
10044
  "line": {
10072
- "start": 162,
10073
- "end": 162
10045
+ "start": 227,
10046
+ "end": 227
10074
10047
  }
10075
10048
  },
10076
10049
  "group": [
@@ -10079,15 +10052,15 @@
10079
10052
  "type": "Color",
10080
10053
  "access": "public",
10081
10054
  "file": {
10082
- "path": "_variables.scss",
10083
- "name": "_variables.scss"
10055
+ "path": "core/color-system/_swatch.scss",
10056
+ "name": "_swatch.scss"
10084
10057
  }
10085
10058
  },
10086
10059
  {
10087
10060
  "description": "The color for success messages and states.\n",
10088
10061
  "commentRange": {
10089
- "start": 166,
10090
- "end": 168
10062
+ "start": 231,
10063
+ "end": 233
10091
10064
  },
10092
10065
  "context": {
10093
10066
  "type": "variable",
@@ -10095,8 +10068,8 @@
10095
10068
  "value": "#3ea44e",
10096
10069
  "scope": "default",
10097
10070
  "line": {
10098
- "start": 169,
10099
- "end": 169
10071
+ "start": 234,
10072
+ "end": 234
10100
10073
  }
10101
10074
  },
10102
10075
  "group": [
@@ -10105,15 +10078,15 @@
10105
10078
  "type": "Color",
10106
10079
  "access": "public",
10107
10080
  "file": {
10108
- "path": "_variables.scss",
10109
- "name": "_variables.scss"
10081
+ "path": "core/color-system/_swatch.scss",
10082
+ "name": "_swatch.scss"
10110
10083
  }
10111
10084
  },
10112
10085
  {
10113
10086
  "description": "The color for warning messages and states.\n",
10114
10087
  "commentRange": {
10115
- "start": 173,
10116
- "end": 175
10088
+ "start": 238,
10089
+ "end": 240
10117
10090
  },
10118
10091
  "context": {
10119
10092
  "type": "variable",
@@ -10121,8 +10094,8 @@
10121
10094
  "value": "#ff9800",
10122
10095
  "scope": "default",
10123
10096
  "line": {
10124
- "start": 176,
10125
- "end": 176
10097
+ "start": 241,
10098
+ "end": 241
10126
10099
  }
10127
10100
  },
10128
10101
  "group": [
@@ -10131,15 +10104,15 @@
10131
10104
  "type": "Color",
10132
10105
  "access": "public",
10133
10106
  "file": {
10134
- "path": "_variables.scss",
10135
- "name": "_variables.scss"
10107
+ "path": "core/color-system/_swatch.scss",
10108
+ "name": "_swatch.scss"
10136
10109
  }
10137
10110
  },
10138
10111
  {
10139
10112
  "description": "The color for error messages and states.\n",
10140
10113
  "commentRange": {
10141
- "start": 180,
10142
- "end": 182
10114
+ "start": 245,
10115
+ "end": 247
10143
10116
  },
10144
10117
  "context": {
10145
10118
  "type": "variable",
@@ -10147,8 +10120,8 @@
10147
10120
  "value": "#d92800",
10148
10121
  "scope": "default",
10149
10122
  "line": {
10150
- "start": 183,
10151
- "end": 183
10123
+ "start": 248,
10124
+ "end": 248
10152
10125
  }
10153
10126
  },
10154
10127
  "group": [
@@ -10157,15 +10130,15 @@
10157
10130
  "type": "Color",
10158
10131
  "access": "public",
10159
10132
  "file": {
10160
- "path": "_variables.scss",
10161
- "name": "_variables.scss"
10133
+ "path": "core/color-system/_swatch.scss",
10134
+ "name": "_swatch.scss"
10162
10135
  }
10163
10136
  },
10164
10137
  {
10165
10138
  "description": "The dark color of the theme.\n",
10166
10139
  "commentRange": {
10167
- "start": 187,
10168
- "end": 189
10140
+ "start": 252,
10141
+ "end": 254
10169
10142
  },
10170
10143
  "context": {
10171
10144
  "type": "variable",
@@ -10173,8 +10146,8 @@
10173
10146
  "value": "#404040",
10174
10147
  "scope": "default",
10175
10148
  "line": {
10176
- "start": 190,
10177
- "end": 190
10149
+ "start": 255,
10150
+ "end": 255
10178
10151
  }
10179
10152
  },
10180
10153
  "group": [
@@ -10183,15 +10156,15 @@
10183
10156
  "type": "Color",
10184
10157
  "access": "public",
10185
10158
  "file": {
10186
- "path": "_variables.scss",
10187
- "name": "_variables.scss"
10159
+ "path": "core/color-system/_swatch.scss",
10160
+ "name": "_swatch.scss"
10188
10161
  }
10189
10162
  },
10190
10163
  {
10191
10164
  "description": "The light color of the theme.\n",
10192
10165
  "commentRange": {
10193
- "start": 192,
10194
- "end": 194
10166
+ "start": 257,
10167
+ "end": 259
10195
10168
  },
10196
10169
  "context": {
10197
10170
  "type": "variable",
@@ -10199,8 +10172,8 @@
10199
10172
  "value": "#ebebeb",
10200
10173
  "scope": "default",
10201
10174
  "line": {
10202
- "start": 195,
10203
- "end": 195
10175
+ "start": 260,
10176
+ "end": 260
10204
10177
  }
10205
10178
  },
10206
10179
  "group": [
@@ -10209,15 +10182,15 @@
10209
10182
  "type": "Color",
10210
10183
  "access": "public",
10211
10184
  "file": {
10212
- "path": "_variables.scss",
10213
- "name": "_variables.scss"
10185
+ "path": "core/color-system/_swatch.scss",
10186
+ "name": "_swatch.scss"
10214
10187
  }
10215
10188
  },
10216
10189
  {
10217
10190
  "description": "Inverse color of the theme. Depending on the theme luminance dark or light, it will be light or dark\n",
10218
10191
  "commentRange": {
10219
- "start": 197,
10220
- "end": 198
10192
+ "start": 262,
10193
+ "end": 263
10221
10194
  },
10222
10195
  "context": {
10223
10196
  "type": "variable",
@@ -10225,8 +10198,8 @@
10225
10198
  "value": "if( $kendo-is-dark-theme, $kendo-color-light, $kendo-color-dark )",
10226
10199
  "scope": "default",
10227
10200
  "line": {
10228
- "start": 199,
10229
- "end": 199
10201
+ "start": 264,
10202
+ "end": 264
10230
10203
  }
10231
10204
  },
10232
10205
  "group": [
@@ -10234,8 +10207,8 @@
10234
10207
  ],
10235
10208
  "access": "public",
10236
10209
  "file": {
10237
- "path": "_variables.scss",
10238
- "name": "_variables.scss"
10210
+ "path": "core/color-system/_swatch.scss",
10211
+ "name": "_swatch.scss"
10239
10212
  }
10240
10213
  },
10241
10214
  {
@@ -11038,11 +11011,136 @@
11038
11011
  "name": "_variables.scss"
11039
11012
  }
11040
11013
  },
11014
+ {
11015
+ "description": "Background color of the body.\n",
11016
+ "commentRange": {
11017
+ "start": 281,
11018
+ "end": 282
11019
+ },
11020
+ "context": {
11021
+ "type": "variable",
11022
+ "name": "kendo-body-bg",
11023
+ "value": "$kendo-color-white",
11024
+ "scope": "default",
11025
+ "line": {
11026
+ "start": 283,
11027
+ "end": 283
11028
+ }
11029
+ },
11030
+ "group": [
11031
+ "common"
11032
+ ],
11033
+ "access": "public",
11034
+ "file": {
11035
+ "path": "core/color-system/_swatch.scss",
11036
+ "name": "_swatch.scss"
11037
+ }
11038
+ },
11039
+ {
11040
+ "description": "Text color of the body.\n",
11041
+ "commentRange": {
11042
+ "start": 284,
11043
+ "end": 285
11044
+ },
11045
+ "context": {
11046
+ "type": "variable",
11047
+ "name": "kendo-body-text",
11048
+ "value": "#272727",
11049
+ "scope": "default",
11050
+ "line": {
11051
+ "start": 286,
11052
+ "end": 286
11053
+ }
11054
+ },
11055
+ "group": [
11056
+ "common"
11057
+ ],
11058
+ "access": "public",
11059
+ "file": {
11060
+ "path": "core/color-system/_swatch.scss",
11061
+ "name": "_swatch.scss"
11062
+ }
11063
+ },
11064
+ {
11065
+ "description": "Subtle text color.\n",
11066
+ "commentRange": {
11067
+ "start": 288,
11068
+ "end": 289
11069
+ },
11070
+ "context": {
11071
+ "type": "variable",
11072
+ "name": "kendo-subtle-text",
11073
+ "value": "#646464",
11074
+ "scope": "default",
11075
+ "line": {
11076
+ "start": 290,
11077
+ "end": 290
11078
+ }
11079
+ },
11080
+ "group": [
11081
+ "common"
11082
+ ],
11083
+ "access": "public",
11084
+ "file": {
11085
+ "path": "core/color-system/_swatch.scss",
11086
+ "name": "_swatch.scss"
11087
+ }
11088
+ },
11089
+ {
11090
+ "description": "Text color of the links.\n",
11091
+ "commentRange": {
11092
+ "start": 297,
11093
+ "end": 298
11094
+ },
11095
+ "context": {
11096
+ "type": "variable",
11097
+ "name": "kendo-link-text",
11098
+ "value": "$kendo-color-primary",
11099
+ "scope": "default",
11100
+ "line": {
11101
+ "start": 299,
11102
+ "end": 299
11103
+ }
11104
+ },
11105
+ "group": [
11106
+ "common"
11107
+ ],
11108
+ "access": "public",
11109
+ "file": {
11110
+ "path": "core/color-system/_swatch.scss",
11111
+ "name": "_swatch.scss"
11112
+ }
11113
+ },
11114
+ {
11115
+ "description": "Text color of the links on hover.\n",
11116
+ "commentRange": {
11117
+ "start": 300,
11118
+ "end": 301
11119
+ },
11120
+ "context": {
11121
+ "type": "variable",
11122
+ "name": "kendo-link-hover-text",
11123
+ "value": "$kendo-color-primary-darker",
11124
+ "scope": "default",
11125
+ "line": {
11126
+ "start": 302,
11127
+ "end": 302
11128
+ }
11129
+ },
11130
+ "group": [
11131
+ "common"
11132
+ ],
11133
+ "access": "public",
11134
+ "file": {
11135
+ "path": "core/color-system/_swatch.scss",
11136
+ "name": "_swatch.scss"
11137
+ }
11138
+ },
11041
11139
  {
11042
11140
  "description": "Background color of a component.\nNote: do not use this variable directly. Instead derive it as `$component-name-bg` e.g. `$kendo-grid-bg: $kendo-component-bg !default;`.\n",
11043
11141
  "commentRange": {
11044
- "start": 295,
11045
- "end": 297
11142
+ "start": 315,
11143
+ "end": 317
11046
11144
  },
11047
11145
  "context": {
11048
11146
  "type": "variable",
@@ -11050,8 +11148,8 @@
11050
11148
  "value": "$kendo-body-bg",
11051
11149
  "scope": "default",
11052
11150
  "line": {
11053
- "start": 298,
11054
- "end": 298
11151
+ "start": 318,
11152
+ "end": 318
11055
11153
  }
11056
11154
  },
11057
11155
  "group": [
@@ -11059,15 +11157,15 @@
11059
11157
  ],
11060
11158
  "access": "public",
11061
11159
  "file": {
11062
- "path": "_variables.scss",
11063
- "name": "_variables.scss"
11160
+ "path": "core/color-system/_swatch.scss",
11161
+ "name": "_swatch.scss"
11064
11162
  }
11065
11163
  },
11066
11164
  {
11067
11165
  "description": "Text color of a component.\nNote: do not use this variable directly. Instead derive it as `$component-name-text` e.g. `$kendo-grid-text: $kendo-component-text !default;`.\n",
11068
11166
  "commentRange": {
11069
- "start": 299,
11070
- "end": 301
11167
+ "start": 319,
11168
+ "end": 321
11071
11169
  },
11072
11170
  "context": {
11073
11171
  "type": "variable",
@@ -11075,8 +11173,8 @@
11075
11173
  "value": "$kendo-body-text",
11076
11174
  "scope": "default",
11077
11175
  "line": {
11078
- "start": 302,
11079
- "end": 302
11176
+ "start": 322,
11177
+ "end": 322
11080
11178
  }
11081
11179
  },
11082
11180
  "group": [
@@ -11084,15 +11182,15 @@
11084
11182
  ],
11085
11183
  "access": "public",
11086
11184
  "file": {
11087
- "path": "_variables.scss",
11088
- "name": "_variables.scss"
11185
+ "path": "core/color-system/_swatch.scss",
11186
+ "name": "_swatch.scss"
11089
11187
  }
11090
11188
  },
11091
11189
  {
11092
11190
  "description": "Border color of a component.\nNote: do not use this variable directly. Instead derive it as `$component-name-border` e.g. `$kendo-grid-border: $kendo-component-border !default;`.\n",
11093
11191
  "commentRange": {
11094
- "start": 303,
11095
- "end": 305
11192
+ "start": 323,
11193
+ "end": 325
11096
11194
  },
11097
11195
  "context": {
11098
11196
  "type": "variable",
@@ -11100,8 +11198,8 @@
11100
11198
  "value": "$kendo-base-border",
11101
11199
  "scope": "default",
11102
11200
  "line": {
11103
- "start": 306,
11104
- "end": 306
11201
+ "start": 326,
11202
+ "end": 326
11105
11203
  }
11106
11204
  },
11107
11205
  "group": [
@@ -11109,8 +11207,308 @@
11109
11207
  ],
11110
11208
  "access": "public",
11111
11209
  "file": {
11112
- "path": "_variables.scss",
11113
- "name": "_variables.scss"
11210
+ "path": "core/color-system/_swatch.scss",
11211
+ "name": "_swatch.scss"
11212
+ }
11213
+ },
11214
+ {
11215
+ "description": "Background color of the component header.\n",
11216
+ "commentRange": {
11217
+ "start": 360,
11218
+ "end": 361
11219
+ },
11220
+ "context": {
11221
+ "type": "variable",
11222
+ "name": "kendo-component-header-bg",
11223
+ "value": "$kendo-base-bg",
11224
+ "scope": "default",
11225
+ "line": {
11226
+ "start": 362,
11227
+ "end": 362
11228
+ }
11229
+ },
11230
+ "group": [
11231
+ "component"
11232
+ ],
11233
+ "access": "public",
11234
+ "file": {
11235
+ "path": "core/color-system/_swatch.scss",
11236
+ "name": "_swatch.scss"
11237
+ }
11238
+ },
11239
+ {
11240
+ "description": "Text color of the component header.\n",
11241
+ "commentRange": {
11242
+ "start": 363,
11243
+ "end": 364
11244
+ },
11245
+ "context": {
11246
+ "type": "variable",
11247
+ "name": "kendo-component-header-text",
11248
+ "value": "$kendo-base-text",
11249
+ "scope": "default",
11250
+ "line": {
11251
+ "start": 365,
11252
+ "end": 365
11253
+ }
11254
+ },
11255
+ "group": [
11256
+ "component"
11257
+ ],
11258
+ "access": "public",
11259
+ "file": {
11260
+ "path": "core/color-system/_swatch.scss",
11261
+ "name": "_swatch.scss"
11262
+ }
11263
+ },
11264
+ {
11265
+ "description": "Border color of the component header.\n",
11266
+ "commentRange": {
11267
+ "start": 366,
11268
+ "end": 367
11269
+ },
11270
+ "context": {
11271
+ "type": "variable",
11272
+ "name": "kendo-component-header-border",
11273
+ "value": "$kendo-base-border",
11274
+ "scope": "default",
11275
+ "line": {
11276
+ "start": 368,
11277
+ "end": 368
11278
+ }
11279
+ },
11280
+ "group": [
11281
+ "component"
11282
+ ],
11283
+ "access": "public",
11284
+ "file": {
11285
+ "path": "core/color-system/_swatch.scss",
11286
+ "name": "_swatch.scss"
11287
+ }
11288
+ },
11289
+ {
11290
+ "description": "Gradient of the component header.\n",
11291
+ "commentRange": {
11292
+ "start": 369,
11293
+ "end": 370
11294
+ },
11295
+ "context": {
11296
+ "type": "variable",
11297
+ "name": "kendo-component-header-gradient",
11298
+ "value": "$kendo-base-gradient",
11299
+ "scope": "default",
11300
+ "line": {
11301
+ "start": 371,
11302
+ "end": 371
11303
+ }
11304
+ },
11305
+ "group": [
11306
+ "component"
11307
+ ],
11308
+ "access": "public",
11309
+ "file": {
11310
+ "path": "core/color-system/_swatch.scss",
11311
+ "name": "_swatch.scss"
11312
+ }
11313
+ },
11314
+ {
11315
+ "description": "Background color of the invalid items.\n",
11316
+ "commentRange": {
11317
+ "start": 373,
11318
+ "end": 374
11319
+ },
11320
+ "context": {
11321
+ "type": "variable",
11322
+ "name": "kendo-invalid-bg",
11323
+ "value": "null",
11324
+ "scope": "default",
11325
+ "line": {
11326
+ "start": 375,
11327
+ "end": 375
11328
+ }
11329
+ },
11330
+ "group": [
11331
+ "component"
11332
+ ],
11333
+ "access": "public",
11334
+ "file": {
11335
+ "path": "core/color-system/_swatch.scss",
11336
+ "name": "_swatch.scss"
11337
+ }
11338
+ },
11339
+ {
11340
+ "description": "Text color of the invalid items.\n",
11341
+ "commentRange": {
11342
+ "start": 376,
11343
+ "end": 377
11344
+ },
11345
+ "context": {
11346
+ "type": "variable",
11347
+ "name": "kendo-invalid-text",
11348
+ "value": "$kendo-color-error",
11349
+ "scope": "default",
11350
+ "line": {
11351
+ "start": 378,
11352
+ "end": 378
11353
+ }
11354
+ },
11355
+ "group": [
11356
+ "component"
11357
+ ],
11358
+ "access": "public",
11359
+ "file": {
11360
+ "path": "core/color-system/_swatch.scss",
11361
+ "name": "_swatch.scss"
11362
+ }
11363
+ },
11364
+ {
11365
+ "description": "Border color of the invalid items.\n",
11366
+ "commentRange": {
11367
+ "start": 379,
11368
+ "end": 380
11369
+ },
11370
+ "context": {
11371
+ "type": "variable",
11372
+ "name": "kendo-invalid-border",
11373
+ "value": "$kendo-color-error",
11374
+ "scope": "default",
11375
+ "line": {
11376
+ "start": 381,
11377
+ "end": 381
11378
+ }
11379
+ },
11380
+ "group": [
11381
+ "component"
11382
+ ],
11383
+ "access": "public",
11384
+ "file": {
11385
+ "path": "core/color-system/_swatch.scss",
11386
+ "name": "_swatch.scss"
11387
+ }
11388
+ },
11389
+ {
11390
+ "description": "Shadow of the invalid items.\n",
11391
+ "commentRange": {
11392
+ "start": 382,
11393
+ "end": 383
11394
+ },
11395
+ "context": {
11396
+ "type": "variable",
11397
+ "name": "kendo-invalid-shadow",
11398
+ "value": "null",
11399
+ "scope": "default",
11400
+ "line": {
11401
+ "start": 384,
11402
+ "end": 384
11403
+ }
11404
+ },
11405
+ "group": [
11406
+ "component"
11407
+ ],
11408
+ "access": "public",
11409
+ "file": {
11410
+ "path": "core/color-system/_swatch.scss",
11411
+ "name": "_swatch.scss"
11412
+ }
11413
+ },
11414
+ {
11415
+ "description": "Background color of the valid items.\n",
11416
+ "commentRange": {
11417
+ "start": 386,
11418
+ "end": 387
11419
+ },
11420
+ "context": {
11421
+ "type": "variable",
11422
+ "name": "kendo-valid-bg",
11423
+ "value": "null",
11424
+ "scope": "default",
11425
+ "line": {
11426
+ "start": 388,
11427
+ "end": 388
11428
+ }
11429
+ },
11430
+ "group": [
11431
+ "component"
11432
+ ],
11433
+ "access": "public",
11434
+ "file": {
11435
+ "path": "core/color-system/_swatch.scss",
11436
+ "name": "_swatch.scss"
11437
+ }
11438
+ },
11439
+ {
11440
+ "description": "Text color of the valid items.\n",
11441
+ "commentRange": {
11442
+ "start": 389,
11443
+ "end": 390
11444
+ },
11445
+ "context": {
11446
+ "type": "variable",
11447
+ "name": "kendo-valid-text",
11448
+ "value": "$kendo-color-success",
11449
+ "scope": "default",
11450
+ "line": {
11451
+ "start": 391,
11452
+ "end": 391
11453
+ }
11454
+ },
11455
+ "group": [
11456
+ "component"
11457
+ ],
11458
+ "access": "public",
11459
+ "file": {
11460
+ "path": "core/color-system/_swatch.scss",
11461
+ "name": "_swatch.scss"
11462
+ }
11463
+ },
11464
+ {
11465
+ "description": "Border color of the valid items.\n",
11466
+ "commentRange": {
11467
+ "start": 392,
11468
+ "end": 393
11469
+ },
11470
+ "context": {
11471
+ "type": "variable",
11472
+ "name": "kendo-valid-border",
11473
+ "value": "$kendo-color-success",
11474
+ "scope": "default",
11475
+ "line": {
11476
+ "start": 394,
11477
+ "end": 394
11478
+ }
11479
+ },
11480
+ "group": [
11481
+ "component"
11482
+ ],
11483
+ "access": "public",
11484
+ "file": {
11485
+ "path": "core/color-system/_swatch.scss",
11486
+ "name": "_swatch.scss"
11487
+ }
11488
+ },
11489
+ {
11490
+ "description": "Shadow of the valid items.\n",
11491
+ "commentRange": {
11492
+ "start": 395,
11493
+ "end": 396
11494
+ },
11495
+ "context": {
11496
+ "type": "variable",
11497
+ "name": "kendo-valid-shadow",
11498
+ "value": "null",
11499
+ "scope": "default",
11500
+ "line": {
11501
+ "start": 397,
11502
+ "end": 397
11503
+ }
11504
+ },
11505
+ "group": [
11506
+ "component"
11507
+ ],
11508
+ "access": "public",
11509
+ "file": {
11510
+ "path": "core/color-system/_swatch.scss",
11511
+ "name": "_swatch.scss"
11114
11512
  }
11115
11513
  },
11116
11514
  {
@@ -12147,7 +12545,7 @@
12147
12545
  "context": {
12148
12546
  "type": "variable",
12149
12547
  "name": "kendo-dock-manager-dock-preview-bg",
12150
- "value": "rgba( $kendo-color-primary, .16 )",
12548
+ "value": "if($kendo-enable-color-system, rgba( k-color( primary, true ), .16 ), rgba( $kendo-color-primary, .16 ))",
12151
12549
  "scope": "default",
12152
12550
  "line": {
12153
12551
  "start": 110,
@@ -12522,7 +12920,7 @@
12522
12920
  "context": {
12523
12921
  "type": "variable",
12524
12922
  "name": "kendo-dropzone-icon-text",
12525
- "value": "k-try-tint( $kendo-dropzone-text, 4 )",
12923
+ "value": "if($kendo-enable-color-system, k-color( subtle ), k-try-tint( $kendo-dropzone-text, 4 ))",
12526
12924
  "scope": "default",
12527
12925
  "line": {
12528
12926
  "start": 41,
@@ -12922,7 +13320,7 @@
12922
13320
  "context": {
12923
13321
  "type": "variable",
12924
13322
  "name": "kendo-editor-highlighted-bg",
12925
- "value": "k-color-mix( $kendo-color-primary, #ffffff, 20% )",
13323
+ "value": "if($kendo-enable-color-system, k-color( primary-subtle ), k-color-mix( $kendo-color-primary, #ffffff, 20% ))",
12926
13324
  "scope": "default",
12927
13325
  "line": {
12928
13326
  "start": 32,
@@ -13466,17 +13864,17 @@
13466
13864
  {
13467
13865
  "description": "The background color of the hovered ExpansionPanel header.\n",
13468
13866
  "commentRange": {
13469
- "start": 51,
13470
- "end": 52
13867
+ "start": 50,
13868
+ "end": 51
13471
13869
  },
13472
13870
  "context": {
13473
13871
  "type": "variable",
13474
13872
  "name": "kendo-expander-header-hover-bg",
13475
- "value": "k-color-shade( $kendo-expander-bg, 1 )",
13873
+ "value": "if($kendo-enable-color-system, k-color( base-subtle-hover ), k-color-shade( $kendo-expander-bg, 1 ))",
13476
13874
  "scope": "default",
13477
13875
  "line": {
13478
- "start": 53,
13479
- "end": 53
13876
+ "start": 52,
13877
+ "end": 52
13480
13878
  }
13481
13879
  },
13482
13880
  "group": [
@@ -13491,8 +13889,8 @@
13491
13889
  {
13492
13890
  "description": "The background color of the focused ExpansionPanel header.\n",
13493
13891
  "commentRange": {
13494
- "start": 54,
13495
- "end": 55
13892
+ "start": 53,
13893
+ "end": 54
13496
13894
  },
13497
13895
  "context": {
13498
13896
  "type": "variable",
@@ -13500,8 +13898,8 @@
13500
13898
  "value": "null",
13501
13899
  "scope": "default",
13502
13900
  "line": {
13503
- "start": 56,
13504
- "end": 56
13901
+ "start": 55,
13902
+ "end": 55
13505
13903
  }
13506
13904
  },
13507
13905
  "group": [
@@ -13516,8 +13914,8 @@
13516
13914
  {
13517
13915
  "description": "The box shadow of the focused ExpansionPanel header.\n",
13518
13916
  "commentRange": {
13519
- "start": 57,
13520
- "end": 58
13917
+ "start": 56,
13918
+ "end": 57
13521
13919
  },
13522
13920
  "context": {
13523
13921
  "type": "variable",
@@ -13525,8 +13923,8 @@
13525
13923
  "value": "$kendo-list-item-focus-shadow",
13526
13924
  "scope": "default",
13527
13925
  "line": {
13528
- "start": 59,
13529
- "end": 59
13926
+ "start": 58,
13927
+ "end": 58
13530
13928
  }
13531
13929
  },
13532
13930
  "group": [
@@ -13541,8 +13939,8 @@
13541
13939
  {
13542
13940
  "description": "The text color of the ExpansionPanel title.\n",
13543
13941
  "commentRange": {
13544
- "start": 61,
13545
- "end": 62
13942
+ "start": 60,
13943
+ "end": 61
13546
13944
  },
13547
13945
  "context": {
13548
13946
  "type": "variable",
@@ -13550,8 +13948,8 @@
13550
13948
  "value": "$kendo-color-primary",
13551
13949
  "scope": "default",
13552
13950
  "line": {
13553
- "start": 63,
13554
- "end": 63
13951
+ "start": 62,
13952
+ "end": 62
13555
13953
  }
13556
13954
  },
13557
13955
  "group": [
@@ -13566,8 +13964,8 @@
13566
13964
  {
13567
13965
  "description": "The text color of the ExpansionPanel sub-title.\n",
13568
13966
  "commentRange": {
13569
- "start": 65,
13570
- "end": 66
13967
+ "start": 64,
13968
+ "end": 65
13571
13969
  },
13572
13970
  "context": {
13573
13971
  "type": "variable",
@@ -13575,8 +13973,8 @@
13575
13973
  "value": "$kendo-subtle-text",
13576
13974
  "scope": "default",
13577
13975
  "line": {
13578
- "start": 67,
13579
- "end": 67
13976
+ "start": 66,
13977
+ "end": 66
13580
13978
  }
13581
13979
  },
13582
13980
  "group": [
@@ -13591,8 +13989,8 @@
13591
13989
  {
13592
13990
  "description": "The horizontal margin of the ExpansionPanel indicator.\n",
13593
13991
  "commentRange": {
13594
- "start": 69,
13595
- "end": 70
13992
+ "start": 68,
13993
+ "end": 69
13596
13994
  },
13597
13995
  "context": {
13598
13996
  "type": "variable",
@@ -13600,8 +13998,8 @@
13600
13998
  "value": "k-map-get( $kendo-spacing, 3 )",
13601
13999
  "scope": "default",
13602
14000
  "line": {
13603
- "start": 71,
13604
- "end": 71
14001
+ "start": 70,
14002
+ "end": 70
13605
14003
  }
13606
14004
  },
13607
14005
  "group": [
@@ -13616,8 +14014,8 @@
13616
14014
  {
13617
14015
  "description": "The horizontal padding of the ExpansionPanel content.\n",
13618
14016
  "commentRange": {
13619
- "start": 73,
13620
- "end": 74
14017
+ "start": 72,
14018
+ "end": 73
13621
14019
  },
13622
14020
  "context": {
13623
14021
  "type": "variable",
@@ -13625,8 +14023,8 @@
13625
14023
  "value": "k-map-get( $kendo-spacing, 4 )",
13626
14024
  "scope": "default",
13627
14025
  "line": {
13628
- "start": 75,
13629
- "end": 75
14026
+ "start": 74,
14027
+ "end": 74
13630
14028
  }
13631
14029
  },
13632
14030
  "group": [
@@ -13641,8 +14039,8 @@
13641
14039
  {
13642
14040
  "description": "The vertical padding of the ExpansionPanel content.\n",
13643
14041
  "commentRange": {
13644
- "start": 76,
13645
- "end": 77
14042
+ "start": 75,
14043
+ "end": 76
13646
14044
  },
13647
14045
  "context": {
13648
14046
  "type": "variable",
@@ -13650,8 +14048,8 @@
13650
14048
  "value": "k-map-get( $kendo-spacing, 4 )",
13651
14049
  "scope": "default",
13652
14050
  "line": {
13653
- "start": 78,
13654
- "end": 78
14051
+ "start": 77,
14052
+ "end": 77
13655
14053
  }
13656
14054
  },
13657
14055
  "group": [
@@ -14597,7 +14995,7 @@
14597
14995
  "context": {
14598
14996
  "type": "variable",
14599
14997
  "name": "kendo-file-manager-listview-item-icon-text",
14600
- "value": "k-try-tint($kendo-file-manager-text, 4)",
14998
+ "value": "if($kendo-enable-color-system, k-color( subtle ), k-try-tint($kendo-file-manager-text, 4))",
14601
14999
  "scope": "default",
14602
15000
  "line": {
14603
15001
  "start": 122,
@@ -15047,7 +15445,7 @@
15047
15445
  "context": {
15048
15446
  "type": "variable",
15049
15447
  "name": "kendo-file-manager-preview-icon-text",
15050
- "value": "k-try-tint($kendo-file-manager-text, 4)",
15448
+ "value": "if($kendo-enable-color-system, k-color( subtle ), k-try-tint($kendo-file-manager-text, 4))",
15051
15449
  "scope": "default",
15052
15450
  "line": {
15053
15451
  "start": 179,
@@ -17872,7 +18270,7 @@
17872
18270
  "context": {
17873
18271
  "type": "variable",
17874
18272
  "name": "kendo-fieldset-legend-text",
17875
- "value": "k-try-shade( $kendo-body-text, 2 )",
18273
+ "value": "if($kendo-enable-color-system, k-color( on-app-surface ), k-try-shade( $kendo-body-text, 2 ))",
17876
18274
  "scope": "default",
17877
18275
  "line": {
17878
18276
  "start": 154,
@@ -18941,17 +19339,17 @@
18941
19339
  {
18942
19340
  "description": "Background color of the grid row resize indicator\n",
18943
19341
  "commentRange": {
18944
- "start": 312,
18945
- "end": 313
19342
+ "start": 315,
19343
+ "end": 316
18946
19344
  },
18947
19345
  "context": {
18948
19346
  "type": "variable",
18949
19347
  "name": "kendo-grid-row-resizer-hover-bg",
18950
- "value": "rgba( k-contrast-color( $kendo-grid-bg ), .12 )",
19348
+ "value": "if($kendo-enable-color-system, rgba( k-color( on-base, true ), .2 ), rgba( k-contrast-color( $kendo-grid-bg ), .12 ))",
18951
19349
  "scope": "default",
18952
19350
  "line": {
18953
- "start": 314,
18954
- "end": 314
19351
+ "start": 317,
19352
+ "end": 317
18955
19353
  }
18956
19354
  },
18957
19355
  "group": [
@@ -18966,8 +19364,8 @@
18966
19364
  {
18967
19365
  "description": "Active background color of the grid row resize indicator\n",
18968
19366
  "commentRange": {
18969
- "start": 315,
18970
- "end": 316
19367
+ "start": 318,
19368
+ "end": 319
18971
19369
  },
18972
19370
  "context": {
18973
19371
  "type": "variable",
@@ -18975,8 +19373,8 @@
18975
19373
  "value": "$kendo-color-primary",
18976
19374
  "scope": "default",
18977
19375
  "line": {
18978
- "start": 317,
18979
- "end": 317
19376
+ "start": 320,
19377
+ "end": 320
18980
19378
  }
18981
19379
  },
18982
19380
  "group": [
@@ -18991,8 +19389,8 @@
18991
19389
  {
18992
19390
  "description": "Height of the grid row resize indicator\n",
18993
19391
  "commentRange": {
18994
- "start": 318,
18995
- "end": 319
19392
+ "start": 321,
19393
+ "end": 322
18996
19394
  },
18997
19395
  "context": {
18998
19396
  "type": "variable",
@@ -19000,8 +19398,8 @@
19000
19398
  "value": "k-map-get( $kendo-spacing, .5 )",
19001
19399
  "scope": "default",
19002
19400
  "line": {
19003
- "start": 320,
19004
- "end": 320
19401
+ "start": 323,
19402
+ "end": 323
19005
19403
  }
19006
19404
  },
19007
19405
  "group": [
@@ -20072,7 +20470,7 @@
20072
20470
  "context": {
20073
20471
  "type": "variable",
20074
20472
  "name": "kendo-input-outline-border",
20075
- "value": "rgba( $kendo-button-text, .5)",
20473
+ "value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-button-text, .5))",
20076
20474
  "scope": "default",
20077
20475
  "line": {
20078
20476
  "start": 171,
@@ -20147,7 +20545,7 @@
20147
20545
  "context": {
20148
20546
  "type": "variable",
20149
20547
  "name": "kendo-input-outline-hover-border",
20150
- "value": "rgba( $kendo-button-text, .8)",
20548
+ "value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .8 ), rgba( $kendo-button-text, .8))",
20151
20549
  "scope": "default",
20152
20550
  "line": {
20153
20551
  "start": 181,
@@ -20821,8 +21219,8 @@
20821
21219
  },
20822
21220
  "context": {
20823
21221
  "type": "variable",
20824
- "name": "kendo-input-separator-color",
20825
- "value": "$kendo-input-text",
21222
+ "name": "kendo-input-separator-text",
21223
+ "value": "$kendo-input-border",
20826
21224
  "scope": "default",
20827
21225
  "line": {
20828
21226
  "start": 274,
@@ -20863,11 +21261,61 @@
20863
21261
  "name": "_variables.scss"
20864
21262
  }
20865
21263
  },
21264
+ {
21265
+ "description": "The text color of the Input prefix.\n",
21266
+ "commentRange": {
21267
+ "start": 279,
21268
+ "end": 280
21269
+ },
21270
+ "context": {
21271
+ "type": "variable",
21272
+ "name": "kendo-input-prefix-text",
21273
+ "value": "$kendo-subtle-text",
21274
+ "scope": "default",
21275
+ "line": {
21276
+ "start": 281,
21277
+ "end": 281
21278
+ }
21279
+ },
21280
+ "group": [
21281
+ "input"
21282
+ ],
21283
+ "access": "public",
21284
+ "file": {
21285
+ "path": "input/_variables.scss",
21286
+ "name": "_variables.scss"
21287
+ }
21288
+ },
21289
+ {
21290
+ "description": "The text color of the Input suffix.\n",
21291
+ "commentRange": {
21292
+ "start": 282,
21293
+ "end": 283
21294
+ },
21295
+ "context": {
21296
+ "type": "variable",
21297
+ "name": "kendo-input-suffix-text",
21298
+ "value": "$kendo-subtle-text",
21299
+ "scope": "default",
21300
+ "line": {
21301
+ "start": 284,
21302
+ "end": 284
21303
+ }
21304
+ },
21305
+ "group": [
21306
+ "input"
21307
+ ],
21308
+ "access": "public",
21309
+ "file": {
21310
+ "path": "input/_variables.scss",
21311
+ "name": "_variables.scss"
21312
+ }
21313
+ },
20866
21314
  {
20867
21315
  "description": "The border color of the invalid Input components.\n",
20868
21316
  "commentRange": {
20869
- "start": 280,
20870
- "end": 281
21317
+ "start": 286,
21318
+ "end": 287
20871
21319
  },
20872
21320
  "context": {
20873
21321
  "type": "variable",
@@ -20875,8 +21323,8 @@
20875
21323
  "value": "$kendo-invalid-border",
20876
21324
  "scope": "default",
20877
21325
  "line": {
20878
- "start": 282,
20879
- "end": 282
21326
+ "start": 288,
21327
+ "end": 288
20880
21328
  }
20881
21329
  },
20882
21330
  "group": [
@@ -20891,8 +21339,8 @@
20891
21339
  {
20892
21340
  "description": "The shadow of the invalid Input components.\n",
20893
21341
  "commentRange": {
20894
- "start": 283,
20895
- "end": 284
21342
+ "start": 289,
21343
+ "end": 290
20896
21344
  },
20897
21345
  "context": {
20898
21346
  "type": "variable",
@@ -20900,8 +21348,58 @@
20900
21348
  "value": "$kendo-invalid-shadow",
20901
21349
  "scope": "default",
20902
21350
  "line": {
20903
- "start": 285,
20904
- "end": 285
21351
+ "start": 291,
21352
+ "end": 291
21353
+ }
21354
+ },
21355
+ "group": [
21356
+ "input"
21357
+ ],
21358
+ "access": "public",
21359
+ "file": {
21360
+ "path": "input/_variables.scss",
21361
+ "name": "_variables.scss"
21362
+ }
21363
+ },
21364
+ {
21365
+ "description": "The border color of the valid Input components.\n",
21366
+ "commentRange": {
21367
+ "start": 293,
21368
+ "end": 294
21369
+ },
21370
+ "context": {
21371
+ "type": "variable",
21372
+ "name": "kendo-input-valid-border",
21373
+ "value": "$kendo-valid-border",
21374
+ "scope": "default",
21375
+ "line": {
21376
+ "start": 295,
21377
+ "end": 295
21378
+ }
21379
+ },
21380
+ "group": [
21381
+ "input"
21382
+ ],
21383
+ "access": "public",
21384
+ "file": {
21385
+ "path": "input/_variables.scss",
21386
+ "name": "_variables.scss"
21387
+ }
21388
+ },
21389
+ {
21390
+ "description": "The shadow of the valid Input components.\n",
21391
+ "commentRange": {
21392
+ "start": 296,
21393
+ "end": 297
21394
+ },
21395
+ "context": {
21396
+ "type": "variable",
21397
+ "name": "kendo-input-valid-shadow",
21398
+ "value": "$kendo-valid-shadow",
21399
+ "scope": "default",
21400
+ "line": {
21401
+ "start": 298,
21402
+ "end": 298
20905
21403
  }
20906
21404
  },
20907
21405
  "group": [
@@ -22647,7 +23145,7 @@
22647
23145
  "context": {
22648
23146
  "type": "variable",
22649
23147
  "name": "kendo-listview-item-selected-bg",
22650
- "value": "rgba( $kendo-selected-bg, .25 )",
23148
+ "value": "if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 ))",
22651
23149
  "scope": "default",
22652
23150
  "line": {
22653
23151
  "start": 44,
@@ -24438,11 +24936,36 @@
24438
24936
  "name": "_variables.scss"
24439
24937
  }
24440
24938
  },
24939
+ {
24940
+ "description": "The row-gap between the elements in the Notification group.\n",
24941
+ "commentRange": {
24942
+ "start": 4,
24943
+ "end": 5
24944
+ },
24945
+ "context": {
24946
+ "type": "variable",
24947
+ "name": "kendo-notification-group-gap",
24948
+ "value": "k-map-get( $kendo-spacing, 2 )",
24949
+ "scope": "default",
24950
+ "line": {
24951
+ "start": 6,
24952
+ "end": 6
24953
+ }
24954
+ },
24955
+ "group": [
24956
+ "notification"
24957
+ ],
24958
+ "access": "public",
24959
+ "file": {
24960
+ "path": "notification/_variables.scss",
24961
+ "name": "_variables.scss"
24962
+ }
24963
+ },
24441
24964
  {
24442
24965
  "description": "The horizontal padding of the Notification.\n",
24443
24966
  "commentRange": {
24444
- "start": 3,
24445
- "end": 4
24967
+ "start": 8,
24968
+ "end": 9
24446
24969
  },
24447
24970
  "context": {
24448
24971
  "type": "variable",
@@ -24450,8 +24973,8 @@
24450
24973
  "value": "8px",
24451
24974
  "scope": "default",
24452
24975
  "line": {
24453
- "start": 5,
24454
- "end": 5
24976
+ "start": 10,
24977
+ "end": 10
24455
24978
  }
24456
24979
  },
24457
24980
  "group": [
@@ -24466,8 +24989,8 @@
24466
24989
  {
24467
24990
  "description": "The vertical padding of the Notification.\n",
24468
24991
  "commentRange": {
24469
- "start": 6,
24470
- "end": 7
24992
+ "start": 11,
24993
+ "end": 12
24471
24994
  },
24472
24995
  "context": {
24473
24996
  "type": "variable",
@@ -24475,8 +24998,8 @@
24475
24998
  "value": "4px",
24476
24999
  "scope": "default",
24477
25000
  "line": {
24478
- "start": 8,
24479
- "end": 8
25001
+ "start": 13,
25002
+ "end": 13
24480
25003
  }
24481
25004
  },
24482
25005
  "group": [
@@ -24491,8 +25014,8 @@
24491
25014
  {
24492
25015
  "description": "The width of the border around the Notification.\n",
24493
25016
  "commentRange": {
24494
- "start": 9,
24495
- "end": 10
25017
+ "start": 14,
25018
+ "end": 15
24496
25019
  },
24497
25020
  "context": {
24498
25021
  "type": "variable",
@@ -24500,8 +25023,8 @@
24500
25023
  "value": "1px",
24501
25024
  "scope": "default",
24502
25025
  "line": {
24503
- "start": 11,
24504
- "end": 11
25026
+ "start": 16,
25027
+ "end": 16
24505
25028
  }
24506
25029
  },
24507
25030
  "group": [
@@ -24516,8 +25039,8 @@
24516
25039
  {
24517
25040
  "description": "The border radius of the Notification.\n",
24518
25041
  "commentRange": {
24519
- "start": 12,
24520
- "end": 13
25042
+ "start": 17,
25043
+ "end": 18
24521
25044
  },
24522
25045
  "context": {
24523
25046
  "type": "variable",
@@ -24525,8 +25048,8 @@
24525
25048
  "value": "$kendo-border-radius-md",
24526
25049
  "scope": "default",
24527
25050
  "line": {
24528
- "start": 14,
24529
- "end": 14
25051
+ "start": 19,
25052
+ "end": 19
24530
25053
  }
24531
25054
  },
24532
25055
  "group": [
@@ -24541,8 +25064,8 @@
24541
25064
  {
24542
25065
  "description": "The font family of the Notification.\n",
24543
25066
  "commentRange": {
24544
- "start": 15,
24545
- "end": 16
25067
+ "start": 20,
25068
+ "end": 21
24546
25069
  },
24547
25070
  "context": {
24548
25071
  "type": "variable",
@@ -24550,8 +25073,8 @@
24550
25073
  "value": "$kendo-font-family",
24551
25074
  "scope": "default",
24552
25075
  "line": {
24553
- "start": 17,
24554
- "end": 17
25076
+ "start": 22,
25077
+ "end": 22
24555
25078
  }
24556
25079
  },
24557
25080
  "group": [
@@ -24566,8 +25089,8 @@
24566
25089
  {
24567
25090
  "description": "The font size of the Notification.\n",
24568
25091
  "commentRange": {
24569
- "start": 18,
24570
- "end": 19
25092
+ "start": 23,
25093
+ "end": 24
24571
25094
  },
24572
25095
  "context": {
24573
25096
  "type": "variable",
@@ -24575,8 +25098,8 @@
24575
25098
  "value": "$kendo-font-size-sm",
24576
25099
  "scope": "default",
24577
25100
  "line": {
24578
- "start": 20,
24579
- "end": 20
25101
+ "start": 25,
25102
+ "end": 25
24580
25103
  }
24581
25104
  },
24582
25105
  "group": [
@@ -24591,8 +25114,8 @@
24591
25114
  {
24592
25115
  "description": "The line height of the Notification.\n",
24593
25116
  "commentRange": {
24594
- "start": 21,
24595
- "end": 22
25117
+ "start": 26,
25118
+ "end": 27
24596
25119
  },
24597
25120
  "context": {
24598
25121
  "type": "variable",
@@ -24600,8 +25123,8 @@
24600
25123
  "value": "$kendo-line-height-md",
24601
25124
  "scope": "default",
24602
25125
  "line": {
24603
- "start": 23,
24604
- "end": 23
25126
+ "start": 28,
25127
+ "end": 28
24605
25128
  }
24606
25129
  },
24607
25130
  "group": [
@@ -24616,8 +25139,8 @@
24616
25139
  {
24617
25140
  "description": "The background color of the Notification.\n",
24618
25141
  "commentRange": {
24619
- "start": 24,
24620
- "end": 25
25142
+ "start": 29,
25143
+ "end": 30
24621
25144
  },
24622
25145
  "context": {
24623
25146
  "type": "variable",
@@ -24625,8 +25148,8 @@
24625
25148
  "value": "$kendo-component-bg",
24626
25149
  "scope": "default",
24627
25150
  "line": {
24628
- "start": 26,
24629
- "end": 26
25151
+ "start": 31,
25152
+ "end": 31
24630
25153
  }
24631
25154
  },
24632
25155
  "group": [
@@ -24641,8 +25164,8 @@
24641
25164
  {
24642
25165
  "description": "The text color of the Notification.\n",
24643
25166
  "commentRange": {
24644
- "start": 27,
24645
- "end": 28
25167
+ "start": 32,
25168
+ "end": 33
24646
25169
  },
24647
25170
  "context": {
24648
25171
  "type": "variable",
@@ -24650,8 +25173,8 @@
24650
25173
  "value": "$kendo-component-text",
24651
25174
  "scope": "default",
24652
25175
  "line": {
24653
- "start": 29,
24654
- "end": 29
25176
+ "start": 34,
25177
+ "end": 34
24655
25178
  }
24656
25179
  },
24657
25180
  "group": [
@@ -24666,8 +25189,8 @@
24666
25189
  {
24667
25190
  "description": "The border color of the Notification.\n",
24668
25191
  "commentRange": {
24669
- "start": 30,
24670
- "end": 31
25192
+ "start": 35,
25193
+ "end": 36
24671
25194
  },
24672
25195
  "context": {
24673
25196
  "type": "variable",
@@ -24675,8 +25198,8 @@
24675
25198
  "value": "$kendo-component-border",
24676
25199
  "scope": "default",
24677
25200
  "line": {
24678
- "start": 32,
24679
- "end": 32
25201
+ "start": 37,
25202
+ "end": 37
24680
25203
  }
24681
25204
  },
24682
25205
  "group": [
@@ -24691,8 +25214,8 @@
24691
25214
  {
24692
25215
  "description": "The box shadow of the Notification.\n",
24693
25216
  "commentRange": {
24694
- "start": 33,
24695
- "end": 34
25217
+ "start": 38,
25218
+ "end": 39
24696
25219
  },
24697
25220
  "context": {
24698
25221
  "type": "variable",
@@ -24700,8 +25223,8 @@
24700
25223
  "value": "$kendo-popup-shadow",
24701
25224
  "scope": "default",
24702
25225
  "line": {
24703
- "start": 35,
24704
- "end": 35
25226
+ "start": 40,
25227
+ "end": 40
24705
25228
  }
24706
25229
  },
24707
25230
  "group": [
@@ -24716,8 +25239,8 @@
24716
25239
  {
24717
25240
  "description": "The horizontal spacing of the Notification icon.\n",
24718
25241
  "commentRange": {
24719
- "start": 37,
24720
- "end": 38
25242
+ "start": 42,
25243
+ "end": 43
24721
25244
  },
24722
25245
  "context": {
24723
25246
  "type": "variable",
@@ -24725,8 +25248,8 @@
24725
25248
  "value": "$kendo-icon-spacing",
24726
25249
  "scope": "default",
24727
25250
  "line": {
24728
- "start": 39,
24729
- "end": 39
25251
+ "start": 44,
25252
+ "end": 44
24730
25253
  }
24731
25254
  },
24732
25255
  "group": [
@@ -24741,8 +25264,8 @@
24741
25264
  {
24742
25265
  "description": "The theme colors map for the Notification.\n",
24743
25266
  "commentRange": {
24744
- "start": 55,
24745
- "end": 56
25267
+ "start": 60,
25268
+ "end": 61
24746
25269
  },
24747
25270
  "context": {
24748
25271
  "type": "variable",
@@ -24750,8 +25273,8 @@
24750
25273
  "value": "$kendo-theme-colors",
24751
25274
  "scope": "default",
24752
25275
  "line": {
24753
- "start": 57,
24754
- "end": 57
25276
+ "start": 62,
25277
+ "end": 62
24755
25278
  }
24756
25279
  },
24757
25280
  "group": [
@@ -24766,8 +25289,8 @@
24766
25289
  {
24767
25290
  "description": "The generated theme colors map for the Notification.\n",
24768
25291
  "commentRange": {
24769
- "start": 58,
24770
- "end": 59
25292
+ "start": 63,
25293
+ "end": 64
24771
25294
  },
24772
25295
  "context": {
24773
25296
  "type": "variable",
@@ -24775,8 +25298,8 @@
24775
25298
  "value": "notification-theme( $kendo-notification-theme-colors )",
24776
25299
  "scope": "default",
24777
25300
  "line": {
24778
- "start": 60,
24779
- "end": 60
25301
+ "start": 65,
25302
+ "end": 65
24780
25303
  }
24781
25304
  },
24782
25305
  "group": [
@@ -26741,8 +27264,8 @@
26741
27264
  {
26742
27265
  "description": "The background color of the Picker components.\n",
26743
27266
  "commentRange": {
26744
- "start": 287,
26745
- "end": 288
27267
+ "start": 300,
27268
+ "end": 301
26746
27269
  },
26747
27270
  "context": {
26748
27271
  "type": "variable",
@@ -26750,8 +27273,8 @@
26750
27273
  "value": "$kendo-button-bg",
26751
27274
  "scope": "default",
26752
27275
  "line": {
26753
- "start": 289,
26754
- "end": 289
27276
+ "start": 302,
27277
+ "end": 302
26755
27278
  }
26756
27279
  },
26757
27280
  "group": [
@@ -26766,8 +27289,8 @@
26766
27289
  {
26767
27290
  "description": "The text color of the Picker components.\n",
26768
27291
  "commentRange": {
26769
- "start": 290,
26770
- "end": 291
27292
+ "start": 303,
27293
+ "end": 304
26771
27294
  },
26772
27295
  "context": {
26773
27296
  "type": "variable",
@@ -26775,8 +27298,8 @@
26775
27298
  "value": "$kendo-button-text",
26776
27299
  "scope": "default",
26777
27300
  "line": {
26778
- "start": 292,
26779
- "end": 292
27301
+ "start": 305,
27302
+ "end": 305
26780
27303
  }
26781
27304
  },
26782
27305
  "group": [
@@ -26791,8 +27314,8 @@
26791
27314
  {
26792
27315
  "description": "The border color of the Picker components.\n",
26793
27316
  "commentRange": {
26794
- "start": 293,
26795
- "end": 294
27317
+ "start": 306,
27318
+ "end": 307
26796
27319
  },
26797
27320
  "context": {
26798
27321
  "type": "variable",
@@ -26800,8 +27323,8 @@
26800
27323
  "value": "$kendo-button-border",
26801
27324
  "scope": "default",
26802
27325
  "line": {
26803
- "start": 295,
26804
- "end": 295
27326
+ "start": 308,
27327
+ "end": 308
26805
27328
  }
26806
27329
  },
26807
27330
  "group": [
@@ -26816,8 +27339,8 @@
26816
27339
  {
26817
27340
  "description": "The gradient of the Picker components.\n",
26818
27341
  "commentRange": {
26819
- "start": 296,
26820
- "end": 297
27342
+ "start": 309,
27343
+ "end": 310
26821
27344
  },
26822
27345
  "context": {
26823
27346
  "type": "variable",
@@ -26825,8 +27348,8 @@
26825
27348
  "value": "$kendo-button-gradient",
26826
27349
  "scope": "default",
26827
27350
  "line": {
26828
- "start": 298,
26829
- "end": 298
27351
+ "start": 311,
27352
+ "end": 311
26830
27353
  }
26831
27354
  },
26832
27355
  "group": [
@@ -26841,8 +27364,8 @@
26841
27364
  {
26842
27365
  "description": "The shadow of the Picker components.\n",
26843
27366
  "commentRange": {
26844
- "start": 299,
26845
- "end": 300
27367
+ "start": 312,
27368
+ "end": 313
26846
27369
  },
26847
27370
  "context": {
26848
27371
  "type": "variable",
@@ -26850,8 +27373,8 @@
26850
27373
  "value": "$kendo-button-shadow",
26851
27374
  "scope": "default",
26852
27375
  "line": {
26853
- "start": 301,
26854
- "end": 301
27376
+ "start": 314,
27377
+ "end": 314
26855
27378
  }
26856
27379
  },
26857
27380
  "group": [
@@ -26866,8 +27389,8 @@
26866
27389
  {
26867
27390
  "description": "The background color of the hovered Picker components.\n",
26868
27391
  "commentRange": {
26869
- "start": 303,
26870
- "end": 304
27392
+ "start": 316,
27393
+ "end": 317
26871
27394
  },
26872
27395
  "context": {
26873
27396
  "type": "variable",
@@ -26875,8 +27398,8 @@
26875
27398
  "value": "$kendo-button-hover-bg",
26876
27399
  "scope": "default",
26877
27400
  "line": {
26878
- "start": 305,
26879
- "end": 305
27401
+ "start": 318,
27402
+ "end": 318
26880
27403
  }
26881
27404
  },
26882
27405
  "group": [
@@ -26891,8 +27414,8 @@
26891
27414
  {
26892
27415
  "description": "The text color of the hovered Picker components.\n",
26893
27416
  "commentRange": {
26894
- "start": 306,
26895
- "end": 307
27417
+ "start": 319,
27418
+ "end": 320
26896
27419
  },
26897
27420
  "context": {
26898
27421
  "type": "variable",
@@ -26900,8 +27423,8 @@
26900
27423
  "value": "$kendo-button-hover-text",
26901
27424
  "scope": "default",
26902
27425
  "line": {
26903
- "start": 308,
26904
- "end": 308
27426
+ "start": 321,
27427
+ "end": 321
26905
27428
  }
26906
27429
  },
26907
27430
  "group": [
@@ -26916,8 +27439,8 @@
26916
27439
  {
26917
27440
  "description": "The border color of the hovered Picker components.\n",
26918
27441
  "commentRange": {
26919
- "start": 309,
26920
- "end": 310
27442
+ "start": 322,
27443
+ "end": 323
26921
27444
  },
26922
27445
  "context": {
26923
27446
  "type": "variable",
@@ -26925,8 +27448,8 @@
26925
27448
  "value": "$kendo-button-hover-border",
26926
27449
  "scope": "default",
26927
27450
  "line": {
26928
- "start": 311,
26929
- "end": 311
27451
+ "start": 324,
27452
+ "end": 324
26930
27453
  }
26931
27454
  },
26932
27455
  "group": [
@@ -26941,8 +27464,8 @@
26941
27464
  {
26942
27465
  "description": "The gradient of the hovered Picker components.\n",
26943
27466
  "commentRange": {
26944
- "start": 312,
26945
- "end": 313
27467
+ "start": 325,
27468
+ "end": 326
26946
27469
  },
26947
27470
  "context": {
26948
27471
  "type": "variable",
@@ -26950,8 +27473,8 @@
26950
27473
  "value": "$kendo-button-hover-gradient",
26951
27474
  "scope": "default",
26952
27475
  "line": {
26953
- "start": 314,
26954
- "end": 314
27476
+ "start": 327,
27477
+ "end": 327
26955
27478
  }
26956
27479
  },
26957
27480
  "group": [
@@ -26966,8 +27489,8 @@
26966
27489
  {
26967
27490
  "description": "The shadow of the hovered Picker components.\n",
26968
27491
  "commentRange": {
26969
- "start": 315,
26970
- "end": 316
27492
+ "start": 328,
27493
+ "end": 329
26971
27494
  },
26972
27495
  "context": {
26973
27496
  "type": "variable",
@@ -26975,8 +27498,8 @@
26975
27498
  "value": "$kendo-button-hover-shadow",
26976
27499
  "scope": "default",
26977
27500
  "line": {
26978
- "start": 317,
26979
- "end": 317
27501
+ "start": 330,
27502
+ "end": 330
26980
27503
  }
26981
27504
  },
26982
27505
  "group": [
@@ -26991,8 +27514,8 @@
26991
27514
  {
26992
27515
  "description": "The background color of the focused Picker components.\n",
26993
27516
  "commentRange": {
26994
- "start": 319,
26995
- "end": 320
27517
+ "start": 332,
27518
+ "end": 333
26996
27519
  },
26997
27520
  "context": {
26998
27521
  "type": "variable",
@@ -27000,8 +27523,8 @@
27000
27523
  "value": "$kendo-button-focus-bg",
27001
27524
  "scope": "default",
27002
27525
  "line": {
27003
- "start": 321,
27004
- "end": 321
27526
+ "start": 334,
27527
+ "end": 334
27005
27528
  }
27006
27529
  },
27007
27530
  "group": [
@@ -27016,8 +27539,8 @@
27016
27539
  {
27017
27540
  "description": "The text color of the focused Picker components.\n",
27018
27541
  "commentRange": {
27019
- "start": 322,
27020
- "end": 323
27542
+ "start": 335,
27543
+ "end": 336
27021
27544
  },
27022
27545
  "context": {
27023
27546
  "type": "variable",
@@ -27025,8 +27548,8 @@
27025
27548
  "value": "$kendo-button-focus-text",
27026
27549
  "scope": "default",
27027
27550
  "line": {
27028
- "start": 324,
27029
- "end": 324
27551
+ "start": 337,
27552
+ "end": 337
27030
27553
  }
27031
27554
  },
27032
27555
  "group": [
@@ -27041,8 +27564,8 @@
27041
27564
  {
27042
27565
  "description": "The border color of the focused Picker components.\n",
27043
27566
  "commentRange": {
27044
- "start": 325,
27045
- "end": 326
27567
+ "start": 338,
27568
+ "end": 339
27046
27569
  },
27047
27570
  "context": {
27048
27571
  "type": "variable",
@@ -27050,8 +27573,8 @@
27050
27573
  "value": "$kendo-button-focus-border",
27051
27574
  "scope": "default",
27052
27575
  "line": {
27053
- "start": 327,
27054
- "end": 327
27576
+ "start": 340,
27577
+ "end": 340
27055
27578
  }
27056
27579
  },
27057
27580
  "group": [
@@ -27066,8 +27589,8 @@
27066
27589
  {
27067
27590
  "description": "The gradient of the focused Picker components.\n",
27068
27591
  "commentRange": {
27069
- "start": 328,
27070
- "end": 329
27592
+ "start": 341,
27593
+ "end": 342
27071
27594
  },
27072
27595
  "context": {
27073
27596
  "type": "variable",
@@ -27075,8 +27598,8 @@
27075
27598
  "value": "$kendo-button-focus-gradient",
27076
27599
  "scope": "default",
27077
27600
  "line": {
27078
- "start": 330,
27079
- "end": 330
27601
+ "start": 343,
27602
+ "end": 343
27080
27603
  }
27081
27604
  },
27082
27605
  "group": [
@@ -27091,8 +27614,8 @@
27091
27614
  {
27092
27615
  "description": "The shadow of the focused Picker components.\n",
27093
27616
  "commentRange": {
27094
- "start": 331,
27095
- "end": 332
27617
+ "start": 344,
27618
+ "end": 345
27096
27619
  },
27097
27620
  "context": {
27098
27621
  "type": "variable",
@@ -27100,8 +27623,8 @@
27100
27623
  "value": "$kendo-button-focus-shadow",
27101
27624
  "scope": "default",
27102
27625
  "line": {
27103
- "start": 333,
27104
- "end": 333
27626
+ "start": 346,
27627
+ "end": 346
27105
27628
  }
27106
27629
  },
27107
27630
  "group": [
@@ -27116,8 +27639,8 @@
27116
27639
  {
27117
27640
  "description": "The background color of the disabled Picker components.\n",
27118
27641
  "commentRange": {
27119
- "start": 335,
27120
- "end": 336
27642
+ "start": 348,
27643
+ "end": 349
27121
27644
  },
27122
27645
  "context": {
27123
27646
  "type": "variable",
@@ -27125,8 +27648,8 @@
27125
27648
  "value": "null",
27126
27649
  "scope": "default",
27127
27650
  "line": {
27128
- "start": 337,
27129
- "end": 337
27651
+ "start": 350,
27652
+ "end": 350
27130
27653
  }
27131
27654
  },
27132
27655
  "group": [
@@ -27141,8 +27664,8 @@
27141
27664
  {
27142
27665
  "description": "The text color of the disabled Picker components.\n",
27143
27666
  "commentRange": {
27144
- "start": 338,
27145
- "end": 339
27667
+ "start": 351,
27668
+ "end": 352
27146
27669
  },
27147
27670
  "context": {
27148
27671
  "type": "variable",
@@ -27150,8 +27673,8 @@
27150
27673
  "value": "null",
27151
27674
  "scope": "default",
27152
27675
  "line": {
27153
- "start": 340,
27154
- "end": 340
27676
+ "start": 353,
27677
+ "end": 353
27155
27678
  }
27156
27679
  },
27157
27680
  "group": [
@@ -27166,8 +27689,8 @@
27166
27689
  {
27167
27690
  "description": "The border color of the disabled Picker components.\n",
27168
27691
  "commentRange": {
27169
- "start": 341,
27170
- "end": 342
27692
+ "start": 354,
27693
+ "end": 355
27171
27694
  },
27172
27695
  "context": {
27173
27696
  "type": "variable",
@@ -27175,8 +27698,8 @@
27175
27698
  "value": "null",
27176
27699
  "scope": "default",
27177
27700
  "line": {
27178
- "start": 343,
27179
- "end": 343
27701
+ "start": 356,
27702
+ "end": 356
27180
27703
  }
27181
27704
  },
27182
27705
  "group": [
@@ -27191,8 +27714,8 @@
27191
27714
  {
27192
27715
  "description": "The gradient of the disabled Picker components.\n",
27193
27716
  "commentRange": {
27194
- "start": 344,
27195
- "end": 345
27717
+ "start": 357,
27718
+ "end": 358
27196
27719
  },
27197
27720
  "context": {
27198
27721
  "type": "variable",
@@ -27200,8 +27723,8 @@
27200
27723
  "value": "null",
27201
27724
  "scope": "default",
27202
27725
  "line": {
27203
- "start": 346,
27204
- "end": 346
27726
+ "start": 359,
27727
+ "end": 359
27205
27728
  }
27206
27729
  },
27207
27730
  "group": [
@@ -27216,8 +27739,8 @@
27216
27739
  {
27217
27740
  "description": "The shadow of the disabled Picker components.\n",
27218
27741
  "commentRange": {
27219
- "start": 347,
27220
- "end": 348
27742
+ "start": 360,
27743
+ "end": 361
27221
27744
  },
27222
27745
  "context": {
27223
27746
  "type": "variable",
@@ -27225,8 +27748,8 @@
27225
27748
  "value": "null",
27226
27749
  "scope": "default",
27227
27750
  "line": {
27228
- "start": 349,
27229
- "end": 349
27751
+ "start": 362,
27752
+ "end": 362
27230
27753
  }
27231
27754
  },
27232
27755
  "group": [
@@ -27241,8 +27764,8 @@
27241
27764
  {
27242
27765
  "description": "The background color of the outline Picker components.\n",
27243
27766
  "commentRange": {
27244
- "start": 351,
27245
- "end": 352
27767
+ "start": 364,
27768
+ "end": 365
27246
27769
  },
27247
27770
  "context": {
27248
27771
  "type": "variable",
@@ -27250,8 +27773,8 @@
27250
27773
  "value": "null",
27251
27774
  "scope": "default",
27252
27775
  "line": {
27253
- "start": 353,
27254
- "end": 353
27776
+ "start": 366,
27777
+ "end": 366
27255
27778
  }
27256
27779
  },
27257
27780
  "group": [
@@ -27266,8 +27789,8 @@
27266
27789
  {
27267
27790
  "description": "The text color of the outline Picker components.\n",
27268
27791
  "commentRange": {
27269
- "start": 354,
27270
- "end": 355
27792
+ "start": 367,
27793
+ "end": 368
27271
27794
  },
27272
27795
  "context": {
27273
27796
  "type": "variable",
@@ -27275,8 +27798,8 @@
27275
27798
  "value": "$kendo-button-text",
27276
27799
  "scope": "default",
27277
27800
  "line": {
27278
- "start": 356,
27279
- "end": 356
27801
+ "start": 369,
27802
+ "end": 369
27280
27803
  }
27281
27804
  },
27282
27805
  "group": [
@@ -27291,17 +27814,17 @@
27291
27814
  {
27292
27815
  "description": "The border color of the outline Picker components.\n",
27293
27816
  "commentRange": {
27294
- "start": 357,
27295
- "end": 358
27817
+ "start": 370,
27818
+ "end": 371
27296
27819
  },
27297
27820
  "context": {
27298
27821
  "type": "variable",
27299
27822
  "name": "kendo-picker-outline-border",
27300
- "value": "rgba( $kendo-picker-outline-text, .5)",
27823
+ "value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-picker-outline-text, .5))",
27301
27824
  "scope": "default",
27302
27825
  "line": {
27303
- "start": 359,
27304
- "end": 359
27826
+ "start": 372,
27827
+ "end": 372
27305
27828
  }
27306
27829
  },
27307
27830
  "group": [
@@ -27316,8 +27839,8 @@
27316
27839
  {
27317
27840
  "description": "The background color of the outline hovered Picker components.\n",
27318
27841
  "commentRange": {
27319
- "start": 361,
27320
- "end": 362
27842
+ "start": 374,
27843
+ "end": 375
27321
27844
  },
27322
27845
  "context": {
27323
27846
  "type": "variable",
@@ -27325,8 +27848,8 @@
27325
27848
  "value": "$kendo-picker-outline-text",
27326
27849
  "scope": "default",
27327
27850
  "line": {
27328
- "start": 363,
27329
- "end": 363
27851
+ "start": 376,
27852
+ "end": 376
27330
27853
  }
27331
27854
  },
27332
27855
  "group": [
@@ -27341,17 +27864,17 @@
27341
27864
  {
27342
27865
  "description": "The text color of the outline hovered Picker components.\n",
27343
27866
  "commentRange": {
27344
- "start": 364,
27345
- "end": 365
27867
+ "start": 377,
27868
+ "end": 378
27346
27869
  },
27347
27870
  "context": {
27348
27871
  "type": "variable",
27349
27872
  "name": "kendo-picker-outline-hover-text",
27350
- "value": "k-contrast-color( $kendo-picker-outline-hover-bg )",
27873
+ "value": "if($kendo-enable-color-system, k-color( base-subtle ), k-contrast-color( $kendo-picker-outline-hover-bg ))",
27351
27874
  "scope": "default",
27352
27875
  "line": {
27353
- "start": 366,
27354
- "end": 366
27876
+ "start": 379,
27877
+ "end": 379
27355
27878
  }
27356
27879
  },
27357
27880
  "group": [
@@ -27366,8 +27889,8 @@
27366
27889
  {
27367
27890
  "description": "The border color of the outline hovered Picker components.\n",
27368
27891
  "commentRange": {
27369
- "start": 367,
27370
- "end": 368
27892
+ "start": 380,
27893
+ "end": 381
27371
27894
  },
27372
27895
  "context": {
27373
27896
  "type": "variable",
@@ -27375,8 +27898,8 @@
27375
27898
  "value": "$kendo-picker-outline-hover-bg",
27376
27899
  "scope": "default",
27377
27900
  "line": {
27378
- "start": 369,
27379
- "end": 369
27901
+ "start": 382,
27902
+ "end": 382
27380
27903
  }
27381
27904
  },
27382
27905
  "group": [
@@ -27391,8 +27914,8 @@
27391
27914
  {
27392
27915
  "description": "The background color of the outline focused Picker components.\n",
27393
27916
  "commentRange": {
27394
- "start": 371,
27395
- "end": 372
27917
+ "start": 384,
27918
+ "end": 385
27396
27919
  },
27397
27920
  "context": {
27398
27921
  "type": "variable",
@@ -27400,8 +27923,8 @@
27400
27923
  "value": "null",
27401
27924
  "scope": "default",
27402
27925
  "line": {
27403
- "start": 373,
27404
- "end": 373
27926
+ "start": 386,
27927
+ "end": 386
27405
27928
  }
27406
27929
  },
27407
27930
  "group": [
@@ -27416,8 +27939,8 @@
27416
27939
  {
27417
27940
  "description": "The text color of the outline focused Picker components.\n",
27418
27941
  "commentRange": {
27419
- "start": 374,
27420
- "end": 375
27942
+ "start": 387,
27943
+ "end": 388
27421
27944
  },
27422
27945
  "context": {
27423
27946
  "type": "variable",
@@ -27425,8 +27948,8 @@
27425
27948
  "value": "null",
27426
27949
  "scope": "default",
27427
27950
  "line": {
27428
- "start": 376,
27429
- "end": 376
27951
+ "start": 389,
27952
+ "end": 389
27430
27953
  }
27431
27954
  },
27432
27955
  "group": [
@@ -27441,8 +27964,8 @@
27441
27964
  {
27442
27965
  "description": "The border color of the outline focused Picker components.\n",
27443
27966
  "commentRange": {
27444
- "start": 377,
27445
- "end": 378
27967
+ "start": 390,
27968
+ "end": 391
27446
27969
  },
27447
27970
  "context": {
27448
27971
  "type": "variable",
@@ -27450,8 +27973,8 @@
27450
27973
  "value": "null",
27451
27974
  "scope": "default",
27452
27975
  "line": {
27453
- "start": 379,
27454
- "end": 379
27976
+ "start": 392,
27977
+ "end": 392
27455
27978
  }
27456
27979
  },
27457
27980
  "group": [
@@ -27466,8 +27989,8 @@
27466
27989
  {
27467
27990
  "description": "The shadow of the outline focused Picker components.\n",
27468
27991
  "commentRange": {
27469
- "start": 380,
27470
- "end": 381
27992
+ "start": 393,
27993
+ "end": 394
27471
27994
  },
27472
27995
  "context": {
27473
27996
  "type": "variable",
@@ -27475,8 +27998,8 @@
27475
27998
  "value": "$kendo-picker-focus-shadow",
27476
27999
  "scope": "default",
27477
28000
  "line": {
27478
- "start": 382,
27479
- "end": 382
28001
+ "start": 395,
28002
+ "end": 395
27480
28003
  }
27481
28004
  },
27482
28005
  "group": [
@@ -27491,8 +28014,8 @@
27491
28014
  {
27492
28015
  "description": "The background color of the outline hovered and focused Picker components.\n",
27493
28016
  "commentRange": {
27494
- "start": 384,
27495
- "end": 385
28017
+ "start": 397,
28018
+ "end": 398
27496
28019
  },
27497
28020
  "context": {
27498
28021
  "type": "variable",
@@ -27500,8 +28023,8 @@
27500
28023
  "value": "null",
27501
28024
  "scope": "default",
27502
28025
  "line": {
27503
- "start": 386,
27504
- "end": 386
28026
+ "start": 399,
28027
+ "end": 399
27505
28028
  }
27506
28029
  },
27507
28030
  "group": [
@@ -27516,8 +28039,8 @@
27516
28039
  {
27517
28040
  "description": "The text color of the outline hovered and focused Picker components.\n",
27518
28041
  "commentRange": {
27519
- "start": 387,
27520
- "end": 388
28042
+ "start": 400,
28043
+ "end": 401
27521
28044
  },
27522
28045
  "context": {
27523
28046
  "type": "variable",
@@ -27525,8 +28048,8 @@
27525
28048
  "value": "null",
27526
28049
  "scope": "default",
27527
28050
  "line": {
27528
- "start": 389,
27529
- "end": 389
28051
+ "start": 402,
28052
+ "end": 402
27530
28053
  }
27531
28054
  },
27532
28055
  "group": [
@@ -27541,8 +28064,8 @@
27541
28064
  {
27542
28065
  "description": "The border color of the outline hovered and focused Picker components.\n",
27543
28066
  "commentRange": {
27544
- "start": 390,
27545
- "end": 391
28067
+ "start": 403,
28068
+ "end": 404
27546
28069
  },
27547
28070
  "context": {
27548
28071
  "type": "variable",
@@ -27550,8 +28073,8 @@
27550
28073
  "value": "null",
27551
28074
  "scope": "default",
27552
28075
  "line": {
27553
- "start": 392,
27554
- "end": 392
28076
+ "start": 405,
28077
+ "end": 405
27555
28078
  }
27556
28079
  },
27557
28080
  "group": [
@@ -27566,8 +28089,8 @@
27566
28089
  {
27567
28090
  "description": "The background color of the flat Picker components.\n",
27568
28091
  "commentRange": {
27569
- "start": 394,
27570
- "end": 395
28092
+ "start": 407,
28093
+ "end": 408
27571
28094
  },
27572
28095
  "context": {
27573
28096
  "type": "variable",
@@ -27575,8 +28098,8 @@
27575
28098
  "value": "null",
27576
28099
  "scope": "default",
27577
28100
  "line": {
27578
- "start": 396,
27579
- "end": 396
28101
+ "start": 409,
28102
+ "end": 409
27580
28103
  }
27581
28104
  },
27582
28105
  "group": [
@@ -27591,8 +28114,8 @@
27591
28114
  {
27592
28115
  "description": "The text color of the flat Picker components.\n",
27593
28116
  "commentRange": {
27594
- "start": 397,
27595
- "end": 398
28117
+ "start": 410,
28118
+ "end": 411
27596
28119
  },
27597
28120
  "context": {
27598
28121
  "type": "variable",
@@ -27600,8 +28123,8 @@
27600
28123
  "value": "$kendo-button-text",
27601
28124
  "scope": "default",
27602
28125
  "line": {
27603
- "start": 399,
27604
- "end": 399
28126
+ "start": 412,
28127
+ "end": 412
27605
28128
  }
27606
28129
  },
27607
28130
  "group": [
@@ -27616,8 +28139,8 @@
27616
28139
  {
27617
28140
  "description": "The border color of the flat Picker components.\n",
27618
28141
  "commentRange": {
27619
- "start": 400,
27620
- "end": 401
28142
+ "start": 413,
28143
+ "end": 414
27621
28144
  },
27622
28145
  "context": {
27623
28146
  "type": "variable",
@@ -27625,8 +28148,8 @@
27625
28148
  "value": "$kendo-button-border",
27626
28149
  "scope": "default",
27627
28150
  "line": {
27628
- "start": 402,
27629
- "end": 402
28151
+ "start": 415,
28152
+ "end": 415
27630
28153
  }
27631
28154
  },
27632
28155
  "group": [
@@ -27641,17 +28164,17 @@
27641
28164
  {
27642
28165
  "description": "The background color of the flat hovered Picker components.\n",
27643
28166
  "commentRange": {
27644
- "start": 404,
27645
- "end": 405
28167
+ "start": 417,
28168
+ "end": 418
27646
28169
  },
27647
28170
  "context": {
27648
28171
  "type": "variable",
27649
28172
  "name": "kendo-picker-flat-hover-bg",
27650
- "value": "rgba( $kendo-button-text, .04 )",
28173
+ "value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .04 ), rgba( $kendo-button-text, .04 ))",
27651
28174
  "scope": "default",
27652
28175
  "line": {
27653
- "start": 406,
27654
- "end": 406
28176
+ "start": 419,
28177
+ "end": 419
27655
28178
  }
27656
28179
  },
27657
28180
  "group": [
@@ -27666,8 +28189,8 @@
27666
28189
  {
27667
28190
  "description": "The text color of the flat hovered Picker components.\n",
27668
28191
  "commentRange": {
27669
- "start": 407,
27670
- "end": 408
28192
+ "start": 420,
28193
+ "end": 421
27671
28194
  },
27672
28195
  "context": {
27673
28196
  "type": "variable",
@@ -27675,8 +28198,8 @@
27675
28198
  "value": "null",
27676
28199
  "scope": "default",
27677
28200
  "line": {
27678
- "start": 409,
27679
- "end": 409
28201
+ "start": 422,
28202
+ "end": 422
27680
28203
  }
27681
28204
  },
27682
28205
  "group": [
@@ -27691,17 +28214,17 @@
27691
28214
  {
27692
28215
  "description": "The border color of the flat hovered Picker components.\n",
27693
28216
  "commentRange": {
27694
- "start": 410,
27695
- "end": 411
28217
+ "start": 423,
28218
+ "end": 424
27696
28219
  },
27697
28220
  "context": {
27698
28221
  "type": "variable",
27699
28222
  "name": "kendo-picker-flat-hover-border",
27700
- "value": "rgba( $kendo-button-border, .16 )",
28223
+ "value": "if($kendo-enable-color-system, rgba( k-color( border, true ), .16 ), rgba( $kendo-button-border, .16 ))",
27701
28224
  "scope": "default",
27702
28225
  "line": {
27703
- "start": 412,
27704
- "end": 412
28226
+ "start": 425,
28227
+ "end": 425
27705
28228
  }
27706
28229
  },
27707
28230
  "group": [
@@ -27716,8 +28239,8 @@
27716
28239
  {
27717
28240
  "description": "The background color of the flat focused Picker components.\n",
27718
28241
  "commentRange": {
27719
- "start": 414,
27720
- "end": 415
28242
+ "start": 427,
28243
+ "end": 428
27721
28244
  },
27722
28245
  "context": {
27723
28246
  "type": "variable",
@@ -27725,8 +28248,8 @@
27725
28248
  "value": "null",
27726
28249
  "scope": "default",
27727
28250
  "line": {
27728
- "start": 416,
27729
- "end": 416
28251
+ "start": 429,
28252
+ "end": 429
27730
28253
  }
27731
28254
  },
27732
28255
  "group": [
@@ -27741,8 +28264,8 @@
27741
28264
  {
27742
28265
  "description": "The text color of the flat focused Picker components.\n",
27743
28266
  "commentRange": {
27744
- "start": 417,
27745
- "end": 418
28267
+ "start": 430,
28268
+ "end": 431
27746
28269
  },
27747
28270
  "context": {
27748
28271
  "type": "variable",
@@ -27750,8 +28273,8 @@
27750
28273
  "value": "null",
27751
28274
  "scope": "default",
27752
28275
  "line": {
27753
- "start": 419,
27754
- "end": 419
28276
+ "start": 432,
28277
+ "end": 432
27755
28278
  }
27756
28279
  },
27757
28280
  "group": [
@@ -27766,8 +28289,8 @@
27766
28289
  {
27767
28290
  "description": "The border color of the flat focused Picker components.\n",
27768
28291
  "commentRange": {
27769
- "start": 420,
27770
- "end": 421
28292
+ "start": 433,
28293
+ "end": 434
27771
28294
  },
27772
28295
  "context": {
27773
28296
  "type": "variable",
@@ -27775,8 +28298,8 @@
27775
28298
  "value": "null",
27776
28299
  "scope": "default",
27777
28300
  "line": {
27778
- "start": 422,
27779
- "end": 422
28301
+ "start": 435,
28302
+ "end": 435
27780
28303
  }
27781
28304
  },
27782
28305
  "group": [
@@ -27791,8 +28314,8 @@
27791
28314
  {
27792
28315
  "description": "The shadow of the flat focused Picker components.\n",
27793
28316
  "commentRange": {
27794
- "start": 423,
27795
- "end": 424
28317
+ "start": 436,
28318
+ "end": 437
27796
28319
  },
27797
28320
  "context": {
27798
28321
  "type": "variable",
@@ -27800,8 +28323,8 @@
27800
28323
  "value": "$kendo-picker-focus-shadow",
27801
28324
  "scope": "default",
27802
28325
  "line": {
27803
- "start": 425,
27804
- "end": 425
28326
+ "start": 438,
28327
+ "end": 438
27805
28328
  }
27806
28329
  },
27807
28330
  "group": [
@@ -27816,8 +28339,8 @@
27816
28339
  {
27817
28340
  "description": "The background color of the flat hovered and focused Picker components.\n",
27818
28341
  "commentRange": {
27819
- "start": 427,
27820
- "end": 428
28342
+ "start": 440,
28343
+ "end": 441
27821
28344
  },
27822
28345
  "context": {
27823
28346
  "type": "variable",
@@ -27825,8 +28348,8 @@
27825
28348
  "value": "null",
27826
28349
  "scope": "default",
27827
28350
  "line": {
27828
- "start": 429,
27829
- "end": 429
28351
+ "start": 442,
28352
+ "end": 442
27830
28353
  }
27831
28354
  },
27832
28355
  "group": [
@@ -27841,8 +28364,8 @@
27841
28364
  {
27842
28365
  "description": "The text color of the flat hovered and focused Picker components.\n",
27843
28366
  "commentRange": {
27844
- "start": 430,
27845
- "end": 431
28367
+ "start": 443,
28368
+ "end": 444
27846
28369
  },
27847
28370
  "context": {
27848
28371
  "type": "variable",
@@ -27850,8 +28373,8 @@
27850
28373
  "value": "null",
27851
28374
  "scope": "default",
27852
28375
  "line": {
27853
- "start": 432,
27854
- "end": 432
28376
+ "start": 445,
28377
+ "end": 445
27855
28378
  }
27856
28379
  },
27857
28380
  "group": [
@@ -27866,8 +28389,8 @@
27866
28389
  {
27867
28390
  "description": "The border color of the flat hovered and focused Picker components.\n",
27868
28391
  "commentRange": {
27869
- "start": 433,
27870
- "end": 434
28392
+ "start": 446,
28393
+ "end": 447
27871
28394
  },
27872
28395
  "context": {
27873
28396
  "type": "variable",
@@ -27875,8 +28398,8 @@
27875
28398
  "value": "null",
27876
28399
  "scope": "default",
27877
28400
  "line": {
27878
- "start": 435,
27879
- "end": 435
28401
+ "start": 448,
28402
+ "end": 448
27880
28403
  }
27881
28404
  },
27882
28405
  "group": [
@@ -29022,7 +29545,7 @@
29022
29545
  "context": {
29023
29546
  "type": "variable",
29024
29547
  "name": "kendo-progressbar-bg",
29025
- "value": "k-try-shade( $kendo-component-bg, 1 )",
29548
+ "value": "if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-component-bg, 1 ))",
29026
29549
  "scope": "default",
29027
29550
  "line": {
29028
29551
  "start": 27,
@@ -29147,7 +29670,7 @@
29147
29670
  "context": {
29148
29671
  "type": "variable",
29149
29672
  "name": "kendo-progressbar-value-text",
29150
- "value": "k-contrast-legacy( $kendo-progressbar-value-bg )",
29673
+ "value": "if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-progressbar-value-bg ))",
29151
29674
  "scope": "default",
29152
29675
  "line": {
29153
29676
  "start": 43,
@@ -29172,7 +29695,7 @@
29172
29695
  "context": {
29173
29696
  "type": "variable",
29174
29697
  "name": "kendo-progressbar-value-border",
29175
- "value": "k-try-shade( $kendo-progressbar-value-bg )",
29698
+ "value": "if($kendo-enable-color-system, k-color( primary-active ), k-try-shade( $kendo-progressbar-value-bg ))",
29176
29699
  "scope": "default",
29177
29700
  "line": {
29178
29701
  "start": 46,
@@ -29388,6 +29911,506 @@
29388
29911
  "name": "_variables.scss"
29389
29912
  }
29390
29913
  },
29914
+ {
29915
+ "description": "The text color of the Prompt.\n",
29916
+ "commentRange": {
29917
+ "start": 3,
29918
+ "end": 4
29919
+ },
29920
+ "context": {
29921
+ "type": "variable",
29922
+ "name": "kendo-prompt-text",
29923
+ "value": "$kendo-component-text",
29924
+ "scope": "default",
29925
+ "line": {
29926
+ "start": 5,
29927
+ "end": 5
29928
+ }
29929
+ },
29930
+ "group": [
29931
+ "prompt"
29932
+ ],
29933
+ "access": "public",
29934
+ "file": {
29935
+ "path": "prompt/_variables.scss",
29936
+ "name": "_variables.scss"
29937
+ }
29938
+ },
29939
+ {
29940
+ "description": "The background color of the Prompt.\n",
29941
+ "commentRange": {
29942
+ "start": 6,
29943
+ "end": 7
29944
+ },
29945
+ "context": {
29946
+ "type": "variable",
29947
+ "name": "kendo-prompt-bg",
29948
+ "value": "$kendo-component-bg",
29949
+ "scope": "default",
29950
+ "line": {
29951
+ "start": 8,
29952
+ "end": 8
29953
+ }
29954
+ },
29955
+ "group": [
29956
+ "prompt"
29957
+ ],
29958
+ "access": "public",
29959
+ "file": {
29960
+ "path": "prompt/_variables.scss",
29961
+ "name": "_variables.scss"
29962
+ }
29963
+ },
29964
+ {
29965
+ "description": "The border color of the Prompt.\n",
29966
+ "commentRange": {
29967
+ "start": 9,
29968
+ "end": 10
29969
+ },
29970
+ "context": {
29971
+ "type": "variable",
29972
+ "name": "kendo-prompt-border",
29973
+ "value": "$kendo-component-border",
29974
+ "scope": "default",
29975
+ "line": {
29976
+ "start": 11,
29977
+ "end": 11
29978
+ }
29979
+ },
29980
+ "group": [
29981
+ "prompt"
29982
+ ],
29983
+ "access": "public",
29984
+ "file": {
29985
+ "path": "prompt/_variables.scss",
29986
+ "name": "_variables.scss"
29987
+ }
29988
+ },
29989
+ {
29990
+ "description": "The text color of the Prompt header.\n",
29991
+ "commentRange": {
29992
+ "start": 13,
29993
+ "end": 14
29994
+ },
29995
+ "context": {
29996
+ "type": "variable",
29997
+ "name": "kendo-prompt-header-text",
29998
+ "value": "$kendo-component-header-text",
29999
+ "scope": "default",
30000
+ "line": {
30001
+ "start": 15,
30002
+ "end": 15
30003
+ }
30004
+ },
30005
+ "group": [
30006
+ "prompt"
30007
+ ],
30008
+ "access": "public",
30009
+ "file": {
30010
+ "path": "prompt/_variables.scss",
30011
+ "name": "_variables.scss"
30012
+ }
30013
+ },
30014
+ {
30015
+ "description": "The background color of the Prompt header.\n",
30016
+ "commentRange": {
30017
+ "start": 16,
30018
+ "end": 17
30019
+ },
30020
+ "context": {
30021
+ "type": "variable",
30022
+ "name": "kendo-prompt-header-bg",
30023
+ "value": "$kendo-component-bg",
30024
+ "scope": "default",
30025
+ "line": {
30026
+ "start": 18,
30027
+ "end": 18
30028
+ }
30029
+ },
30030
+ "group": [
30031
+ "prompt"
30032
+ ],
30033
+ "access": "public",
30034
+ "file": {
30035
+ "path": "prompt/_variables.scss",
30036
+ "name": "_variables.scss"
30037
+ }
30038
+ },
30039
+ {
30040
+ "description": "The border color of the Prompt header.\n",
30041
+ "commentRange": {
30042
+ "start": 19,
30043
+ "end": 20
30044
+ },
30045
+ "context": {
30046
+ "type": "variable",
30047
+ "name": "kendo-prompt-header-border",
30048
+ "value": "$kendo-component-header-border",
30049
+ "scope": "default",
30050
+ "line": {
30051
+ "start": 21,
30052
+ "end": 21
30053
+ }
30054
+ },
30055
+ "group": [
30056
+ "prompt"
30057
+ ],
30058
+ "access": "public",
30059
+ "file": {
30060
+ "path": "prompt/_variables.scss",
30061
+ "name": "_variables.scss"
30062
+ }
30063
+ },
30064
+ {
30065
+ "description": "The vertical padding of the Prompt content.\n",
30066
+ "commentRange": {
30067
+ "start": 23,
30068
+ "end": 24
30069
+ },
30070
+ "context": {
30071
+ "type": "variable",
30072
+ "name": "kendo-prompt-content-padding-y",
30073
+ "value": "k-map-get( $kendo-spacing, 4 )",
30074
+ "scope": "default",
30075
+ "line": {
30076
+ "start": 25,
30077
+ "end": 25
30078
+ }
30079
+ },
30080
+ "group": [
30081
+ "prompt"
30082
+ ],
30083
+ "access": "public",
30084
+ "file": {
30085
+ "path": "prompt/_variables.scss",
30086
+ "name": "_variables.scss"
30087
+ }
30088
+ },
30089
+ {
30090
+ "description": "The horizontal padding of the Prompt content.\n",
30091
+ "commentRange": {
30092
+ "start": 26,
30093
+ "end": 27
30094
+ },
30095
+ "context": {
30096
+ "type": "variable",
30097
+ "name": "kendo-prompt-content-padding-x",
30098
+ "value": "k-map-get( $kendo-spacing, 4 )",
30099
+ "scope": "default",
30100
+ "line": {
30101
+ "start": 28,
30102
+ "end": 28
30103
+ }
30104
+ },
30105
+ "group": [
30106
+ "prompt"
30107
+ ],
30108
+ "access": "public",
30109
+ "file": {
30110
+ "path": "prompt/_variables.scss",
30111
+ "name": "_variables.scss"
30112
+ }
30113
+ },
30114
+ {
30115
+ "description": "The spacing between the items of the Prompt content.\n",
30116
+ "commentRange": {
30117
+ "start": 29,
30118
+ "end": 30
30119
+ },
30120
+ "context": {
30121
+ "type": "variable",
30122
+ "name": "kendo-prompt-content-spacing",
30123
+ "value": "k-map-get( $kendo-spacing, 4 )",
30124
+ "scope": "default",
30125
+ "line": {
30126
+ "start": 31,
30127
+ "end": 31
30128
+ }
30129
+ },
30130
+ "group": [
30131
+ "prompt"
30132
+ ],
30133
+ "access": "public",
30134
+ "file": {
30135
+ "path": "prompt/_variables.scss",
30136
+ "name": "_variables.scss"
30137
+ }
30138
+ },
30139
+ {
30140
+ "description": "The text color of the Prompt content.\n",
30141
+ "commentRange": {
30142
+ "start": 32,
30143
+ "end": 33
30144
+ },
30145
+ "context": {
30146
+ "type": "variable",
30147
+ "name": "kendo-prompt-content-text",
30148
+ "value": "$kendo-component-header-text",
30149
+ "scope": "default",
30150
+ "line": {
30151
+ "start": 34,
30152
+ "end": 34
30153
+ }
30154
+ },
30155
+ "group": [
30156
+ "prompt"
30157
+ ],
30158
+ "access": "public",
30159
+ "file": {
30160
+ "path": "prompt/_variables.scss",
30161
+ "name": "_variables.scss"
30162
+ }
30163
+ },
30164
+ {
30165
+ "description": "The background color of the Prompt content.\n",
30166
+ "commentRange": {
30167
+ "start": 35,
30168
+ "end": 36
30169
+ },
30170
+ "context": {
30171
+ "type": "variable",
30172
+ "name": "kendo-prompt-content-bg",
30173
+ "value": "$kendo-component-header-bg",
30174
+ "scope": "default",
30175
+ "line": {
30176
+ "start": 37,
30177
+ "end": 37
30178
+ }
30179
+ },
30180
+ "group": [
30181
+ "prompt"
30182
+ ],
30183
+ "access": "public",
30184
+ "file": {
30185
+ "path": "prompt/_variables.scss",
30186
+ "name": "_variables.scss"
30187
+ }
30188
+ },
30189
+ {
30190
+ "description": "The text border of the Prompt content.\n",
30191
+ "commentRange": {
30192
+ "start": 38,
30193
+ "end": 39
30194
+ },
30195
+ "context": {
30196
+ "type": "variable",
30197
+ "name": "kendo-prompt-content-border",
30198
+ "value": "$kendo-component-header-border",
30199
+ "scope": "default",
30200
+ "line": {
30201
+ "start": 40,
30202
+ "end": 40
30203
+ }
30204
+ },
30205
+ "group": [
30206
+ "prompt"
30207
+ ],
30208
+ "access": "public",
30209
+ "file": {
30210
+ "path": "prompt/_variables.scss",
30211
+ "name": "_variables.scss"
30212
+ }
30213
+ },
30214
+ {
30215
+ "description": "The spacing between the items of the Prompt content expander.\n",
30216
+ "commentRange": {
30217
+ "start": 42,
30218
+ "end": 43
30219
+ },
30220
+ "context": {
30221
+ "type": "variable",
30222
+ "name": "kendo-prompt-expander-spacing",
30223
+ "value": "k-map-get( $kendo-spacing, 2 )",
30224
+ "scope": "default",
30225
+ "line": {
30226
+ "start": 44,
30227
+ "end": 44
30228
+ }
30229
+ },
30230
+ "group": [
30231
+ "prompt"
30232
+ ],
30233
+ "access": "public",
30234
+ "file": {
30235
+ "path": "prompt/_variables.scss",
30236
+ "name": "_variables.scss"
30237
+ }
30238
+ },
30239
+ {
30240
+ "description": "The vertical padding of the Prompt suggestion container.\n",
30241
+ "commentRange": {
30242
+ "start": 46,
30243
+ "end": 47
30244
+ },
30245
+ "context": {
30246
+ "type": "variable",
30247
+ "name": "kendo-prompt-suggestion-padding-y",
30248
+ "value": "k-map-get( $kendo-spacing, 2 )",
30249
+ "scope": "default",
30250
+ "line": {
30251
+ "start": 48,
30252
+ "end": 48
30253
+ }
30254
+ },
30255
+ "group": [
30256
+ "prompt"
30257
+ ],
30258
+ "access": "public",
30259
+ "file": {
30260
+ "path": "prompt/_variables.scss",
30261
+ "name": "_variables.scss"
30262
+ }
30263
+ },
30264
+ {
30265
+ "description": "The horizontal padding of the Prompt suggestion container.\n",
30266
+ "commentRange": {
30267
+ "start": 49,
30268
+ "end": 50
30269
+ },
30270
+ "context": {
30271
+ "type": "variable",
30272
+ "name": "kendo-prompt-suggestion-padding-x",
30273
+ "value": "k-map-get( $kendo-spacing, 2 )",
30274
+ "scope": "default",
30275
+ "line": {
30276
+ "start": 51,
30277
+ "end": 51
30278
+ }
30279
+ },
30280
+ "group": [
30281
+ "prompt"
30282
+ ],
30283
+ "access": "public",
30284
+ "file": {
30285
+ "path": "prompt/_variables.scss",
30286
+ "name": "_variables.scss"
30287
+ }
30288
+ },
30289
+ {
30290
+ "description": "The border radius of the Prompt suggestion container.\n",
30291
+ "commentRange": {
30292
+ "start": 52,
30293
+ "end": 53
30294
+ },
30295
+ "context": {
30296
+ "type": "variable",
30297
+ "name": "kendo-prompt-suggestion-border-radius",
30298
+ "value": "$kendo-border-radius-md",
30299
+ "scope": "default",
30300
+ "line": {
30301
+ "start": 54,
30302
+ "end": 54
30303
+ }
30304
+ },
30305
+ "group": [
30306
+ "prompt"
30307
+ ],
30308
+ "access": "public",
30309
+ "file": {
30310
+ "path": "prompt/_variables.scss",
30311
+ "name": "_variables.scss"
30312
+ }
30313
+ },
30314
+ {
30315
+ "description": "The text color of the Prompt suggestion container.\n",
30316
+ "commentRange": {
30317
+ "start": 55,
30318
+ "end": 56
30319
+ },
30320
+ "context": {
30321
+ "type": "variable",
30322
+ "name": "kendo-prompt-suggestion-text",
30323
+ "value": "$kendo-component-text",
30324
+ "scope": "default",
30325
+ "line": {
30326
+ "start": 57,
30327
+ "end": 57
30328
+ }
30329
+ },
30330
+ "group": [
30331
+ "prompt"
30332
+ ],
30333
+ "access": "public",
30334
+ "file": {
30335
+ "path": "prompt/_variables.scss",
30336
+ "name": "_variables.scss"
30337
+ }
30338
+ },
30339
+ {
30340
+ "description": "The background color of the Prompt suggestion container.\n",
30341
+ "commentRange": {
30342
+ "start": 58,
30343
+ "end": 59
30344
+ },
30345
+ "context": {
30346
+ "type": "variable",
30347
+ "name": "kendo-prompt-suggestion-bg",
30348
+ "value": "$kendo-body-bg",
30349
+ "scope": "default",
30350
+ "line": {
30351
+ "start": 60,
30352
+ "end": 60
30353
+ }
30354
+ },
30355
+ "group": [
30356
+ "prompt"
30357
+ ],
30358
+ "access": "public",
30359
+ "file": {
30360
+ "path": "prompt/_variables.scss",
30361
+ "name": "_variables.scss"
30362
+ }
30363
+ },
30364
+ {
30365
+ "description": "The border color of the Prompt suggestion container.\n",
30366
+ "commentRange": {
30367
+ "start": 61,
30368
+ "end": 62
30369
+ },
30370
+ "context": {
30371
+ "type": "variable",
30372
+ "name": "kendo-prompt-suggestion-border",
30373
+ "value": "$kendo-component-border",
30374
+ "scope": "default",
30375
+ "line": {
30376
+ "start": 63,
30377
+ "end": 63
30378
+ }
30379
+ },
30380
+ "group": [
30381
+ "prompt"
30382
+ ],
30383
+ "access": "public",
30384
+ "file": {
30385
+ "path": "prompt/_variables.scss",
30386
+ "name": "_variables.scss"
30387
+ }
30388
+ },
30389
+ {
30390
+ "description": "The elevation of the Prompt suggestion container.\n",
30391
+ "commentRange": {
30392
+ "start": 64,
30393
+ "end": 65
30394
+ },
30395
+ "context": {
30396
+ "type": "variable",
30397
+ "name": "kendo-prompt-suggestion-shadow",
30398
+ "value": "k-elevation(1)",
30399
+ "scope": "default",
30400
+ "line": {
30401
+ "start": 66,
30402
+ "end": 66
30403
+ }
30404
+ },
30405
+ "group": [
30406
+ "prompt"
30407
+ ],
30408
+ "access": "public",
30409
+ "file": {
30410
+ "path": "prompt/_variables.scss",
30411
+ "name": "_variables.scss"
30412
+ }
30413
+ },
29391
30414
  {
29392
30415
  "description": "The border radius of the RadioButton.\n",
29393
30416
  "commentRange": {
@@ -31172,7 +32195,7 @@
31172
32195
  "context": {
31173
32196
  "type": "variable",
31174
32197
  "name": "kendo-scrollview-pagebutton-primary-border",
31175
- "value": "k-try-shade( $kendo-color-primary, 2 )",
32198
+ "value": "if($kendo-enable-color-system, k-color( primary ), k-try-shade( $kendo-color-primary, 2 ))",
31176
32199
  "scope": "default",
31177
32200
  "line": {
31178
32201
  "start": 40,
@@ -31697,7 +32720,7 @@
31697
32720
  "context": {
31698
32721
  "type": "variable",
31699
32722
  "name": "kendo-skeleton-item-bg",
31700
- "value": "rgba( $kendo-color-inverse, .2 )",
32723
+ "value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .2 ), rgba( $kendo-color-inverse, .2 ))",
31701
32724
  "scope": "default",
31702
32725
  "line": {
31703
32726
  "start": 20,
@@ -32422,7 +33445,7 @@
32422
33445
  "context": {
32423
33446
  "type": "variable",
32424
33447
  "name": "kendo-switch-off-track-focus-ring",
32425
- "value": "0 0 3px 1px rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .25 )",
33448
+ "value": "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 )",
32426
33449
  "scope": "default",
32427
33450
  "line": {
32428
33451
  "start": 71,
@@ -32547,7 +33570,7 @@
32547
33570
  "context": {
32548
33571
  "type": "variable",
32549
33572
  "name": "kendo-switch-off-thumb-bg",
32550
- "value": "k-try-shade( $kendo-switch-off-track-bg )",
33573
+ "value": "if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-switch-off-track-bg ))",
32551
33574
  "scope": "default",
32552
33575
  "line": {
32553
33576
  "start": 88,
@@ -32647,7 +33670,7 @@
32647
33670
  "context": {
32648
33671
  "type": "variable",
32649
33672
  "name": "kendo-switch-off-thumb-hover-bg",
32650
- "value": "k-try-shade( $kendo-switch-off-thumb-bg )",
33673
+ "value": "if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-switch-off-thumb-bg ))",
32651
33674
  "scope": "default",
32652
33675
  "line": {
32653
33676
  "start": 101,
@@ -33047,7 +34070,7 @@
33047
34070
  "context": {
33048
34071
  "type": "variable",
33049
34072
  "name": "kendo-switch-on-track-focus-ring",
33050
- "value": "0 0 3px 1px rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .25 )",
34073
+ "value": "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 )",
33051
34074
  "scope": "default",
33052
34075
  "line": {
33053
34076
  "start": 153,
@@ -33222,7 +34245,7 @@
33222
34245
  "context": {
33223
34246
  "type": "variable",
33224
34247
  "name": "kendo-switch-on-thumb-border",
33225
- "value": "k-try-shade( $kendo-switch-on-thumb-bg )",
34248
+ "value": "if($kendo-enable-color-system, k-color( primary ), k-try-shade( $kendo-switch-on-thumb-bg ))",
33226
34249
  "scope": "default",
33227
34250
  "line": {
33228
34251
  "start": 176,
@@ -33272,7 +34295,7 @@
33272
34295
  "context": {
33273
34296
  "type": "variable",
33274
34297
  "name": "kendo-switch-on-thumb-hover-bg",
33275
- "value": "k-try-shade( $kendo-switch-on-thumb-bg )",
34298
+ "value": "if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-switch-on-thumb-bg ))",
33276
34299
  "scope": "default",
33277
34300
  "line": {
33278
34301
  "start": 183,
@@ -33322,7 +34345,7 @@
33322
34345
  "context": {
33323
34346
  "type": "variable",
33324
34347
  "name": "kendo-switch-on-thumb-hover-border",
33325
- "value": "k-try-shade( $kendo-switch-on-thumb-hover-bg )",
34348
+ "value": "if($kendo-enable-color-system, k-color( primary-hover ), k-try-shade( $kendo-switch-on-thumb-hover-bg ))",
33326
34349
  "scope": "default",
33327
34350
  "line": {
33328
34351
  "start": 189,
@@ -33897,7 +34920,7 @@
33897
34920
  "context": {
33898
34921
  "type": "variable",
33899
34922
  "name": "kendo-table-alt-row-bg",
33900
- "value": "k-try-shade( $kendo-table-bg, .5 )",
34923
+ "value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .05 ), k-try-shade( $kendo-table-bg, .5 ))",
33901
34924
  "scope": "default",
33902
34925
  "line": {
33903
34926
  "start": 114,
@@ -33972,7 +34995,7 @@
33972
34995
  "context": {
33973
34996
  "type": "variable",
33974
34997
  "name": "kendo-table-hover-bg",
33975
- "value": "k-try-shade( $kendo-table-bg, 1 )",
34998
+ "value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .11 ), k-try-shade( $kendo-table-bg, 1 ))",
33976
34999
  "scope": "default",
33977
35000
  "line": {
33978
35001
  "start": 125,
@@ -34147,7 +35170,7 @@
34147
35170
  "context": {
34148
35171
  "type": "variable",
34149
35172
  "name": "kendo-table-selected-bg",
34150
- "value": "rgba( $kendo-selected-bg, .25 )",
35173
+ "value": "if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 ))",
34151
35174
  "scope": "default",
34152
35175
  "line": {
34153
35176
  "start": 150,
@@ -36072,7 +37095,7 @@
36072
37095
  "context": {
36073
37096
  "type": "variable",
36074
37097
  "name": "kendo-tooltip-bg",
36075
- "value": "rgba( k-contrast-color( $kendo-body-bg ), .75 )",
37098
+ "value": "if($kendo-enable-color-system, k-color( on-app-surface ), rgba( k-contrast-color( $kendo-body-bg ), .75 ))",
36076
37099
  "scope": "default",
36077
37100
  "line": {
36078
37101
  "start": 39,
@@ -36097,7 +37120,7 @@
36097
37120
  "context": {
36098
37121
  "type": "variable",
36099
37122
  "name": "kendo-tooltip-text",
36100
- "value": "k-contrast-color( $kendo-tooltip-bg )",
37123
+ "value": "if($kendo-enable-color-system, k-color( app-surface ), k-contrast-color( $kendo-tooltip-bg ))",
36101
37124
  "scope": "default",
36102
37125
  "line": {
36103
37126
  "start": 42,
@@ -37441,8 +38464,8 @@
37441
38464
  {
37442
38465
  "description": "Base font size across all components.\n",
37443
38466
  "commentRange": {
37444
- "start": 218,
37445
- "end": 219
38467
+ "start": 109,
38468
+ "end": 110
37446
38469
  },
37447
38470
  "context": {
37448
38471
  "type": "variable",
@@ -37450,8 +38473,8 @@
37450
38473
  "value": "14px",
37451
38474
  "scope": "default",
37452
38475
  "line": {
37453
- "start": 220,
37454
- "end": 220
38476
+ "start": 111,
38477
+ "end": 111
37455
38478
  }
37456
38479
  },
37457
38480
  "group": [
@@ -37466,8 +38489,8 @@
37466
38489
  {
37467
38490
  "description": "Font family for text.\n",
37468
38491
  "commentRange": {
37469
- "start": 235,
37470
- "end": 236
38492
+ "start": 126,
38493
+ "end": 127
37471
38494
  },
37472
38495
  "context": {
37473
38496
  "type": "variable",
@@ -37475,8 +38498,8 @@
37475
38498
  "value": "system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"",
37476
38499
  "scope": "default",
37477
38500
  "line": {
37478
- "start": 237,
37479
- "end": 237
38501
+ "start": 128,
38502
+ "end": 128
37480
38503
  }
37481
38504
  },
37482
38505
  "group": [
@@ -37491,8 +38514,8 @@
37491
38514
  {
37492
38515
  "description": "Font family for monospaced text. Used for styling the code.\n",
37493
38516
  "commentRange": {
37494
- "start": 239,
37495
- "end": 240
38517
+ "start": 130,
38518
+ "end": 131
37496
38519
  },
37497
38520
  "context": {
37498
38521
  "type": "variable",
@@ -37500,8 +38523,8 @@
37500
38523
  "value": "SFMono-Regular, Menlo, Monaco, Consolas, \"Roboto Mono\", \"Ubuntu Mono\", \"Lucida Console\", \"Courier New\", monospace",
37501
38524
  "scope": "default",
37502
38525
  "line": {
37503
- "start": 241,
37504
- "end": 241
38526
+ "start": 132,
38527
+ "end": 132
37505
38528
  }
37506
38529
  },
37507
38530
  "group": [
@@ -37516,8 +38539,8 @@
37516
38539
  {
37517
38540
  "description": "Font family across all components.\n",
37518
38541
  "commentRange": {
37519
- "start": 243,
37520
- "end": 244
38542
+ "start": 134,
38543
+ "end": 135
37521
38544
  },
37522
38545
  "context": {
37523
38546
  "type": "variable",
@@ -37525,8 +38548,8 @@
37525
38548
  "value": "inherit",
37526
38549
  "scope": "default",
37527
38550
  "line": {
37528
- "start": 245,
37529
- "end": 245
38551
+ "start": 136,
38552
+ "end": 136
37530
38553
  }
37531
38554
  },
37532
38555
  "group": [
@@ -37541,8 +38564,8 @@
37541
38564
  {
37542
38565
  "description": "Line height used along with $kendo-font-size.\n",
37543
38566
  "commentRange": {
37544
- "start": 247,
37545
- "end": 248
38567
+ "start": 138,
38568
+ "end": 139
37546
38569
  },
37547
38570
  "context": {
37548
38571
  "type": "variable",
@@ -37550,8 +38573,8 @@
37550
38573
  "value": "k-math-div( 20, 14 )",
37551
38574
  "scope": "default",
37552
38575
  "line": {
37553
- "start": 249,
37554
- "end": 249
38576
+ "start": 140,
38577
+ "end": 140
37555
38578
  }
37556
38579
  },
37557
38580
  "group": [
@@ -37566,8 +38589,8 @@
37566
38589
  {
37567
38590
  "description": "Border radius for all components.\n",
37568
38591
  "commentRange": {
37569
- "start": 94,
37570
- "end": 94
38592
+ "start": 82,
38593
+ "end": 82
37571
38594
  },
37572
38595
  "context": {
37573
38596
  "type": "variable",
@@ -37575,8 +38598,8 @@
37575
38598
  "value": "k-map-get( $kendo-spacing, 1 )",
37576
38599
  "scope": "default",
37577
38600
  "line": {
37578
- "start": 95,
37579
- "end": 95
38601
+ "start": 83,
38602
+ "end": 83
37580
38603
  }
37581
38604
  },
37582
38605
  "access": "public",
@@ -37591,8 +38614,8 @@
37591
38614
  {
37592
38615
  "description": "The background of the components' chrome area.\n",
37593
38616
  "commentRange": {
37594
- "start": 286,
37595
- "end": 286
38617
+ "start": 306,
38618
+ "end": 306
37596
38619
  },
37597
38620
  "context": {
37598
38621
  "type": "variable",
@@ -37600,8 +38623,8 @@
37600
38623
  "value": "#f0f0f0",
37601
38624
  "scope": "default",
37602
38625
  "line": {
37603
- "start": 287,
37604
- "end": 287
38626
+ "start": 307,
38627
+ "end": 307
37605
38628
  }
37606
38629
  },
37607
38630
  "access": "public",
@@ -37609,15 +38632,15 @@
37609
38632
  "undefined"
37610
38633
  ],
37611
38634
  "file": {
37612
- "path": "_variables.scss",
37613
- "name": "_variables.scss"
38635
+ "path": "core/color-system/_swatch.scss",
38636
+ "name": "_swatch.scss"
37614
38637
  }
37615
38638
  },
37616
38639
  {
37617
38640
  "description": "The text color of the components' chrome area.\n",
37618
38641
  "commentRange": {
37619
- "start": 288,
37620
- "end": 288
38642
+ "start": 308,
38643
+ "end": 308
37621
38644
  },
37622
38645
  "context": {
37623
38646
  "type": "variable",
@@ -37625,8 +38648,8 @@
37625
38648
  "value": "$kendo-body-text",
37626
38649
  "scope": "default",
37627
38650
  "line": {
37628
- "start": 289,
37629
- "end": 289
38651
+ "start": 309,
38652
+ "end": 309
37630
38653
  }
37631
38654
  },
37632
38655
  "access": "public",
@@ -37634,15 +38657,15 @@
37634
38657
  "undefined"
37635
38658
  ],
37636
38659
  "file": {
37637
- "path": "_variables.scss",
37638
- "name": "_variables.scss"
38660
+ "path": "core/color-system/_swatch.scss",
38661
+ "name": "_swatch.scss"
37639
38662
  }
37640
38663
  },
37641
38664
  {
37642
38665
  "description": "The border color of the components' chrome area.\n",
37643
38666
  "commentRange": {
37644
- "start": 290,
37645
- "end": 290
38667
+ "start": 310,
38668
+ "end": 310
37646
38669
  },
37647
38670
  "context": {
37648
38671
  "type": "variable",
@@ -37650,8 +38673,8 @@
37650
38673
  "value": "k-try-shade( $kendo-base-bg, 2 )",
37651
38674
  "scope": "default",
37652
38675
  "line": {
37653
- "start": 291,
37654
- "end": 291
38676
+ "start": 311,
38677
+ "end": 311
37655
38678
  }
37656
38679
  },
37657
38680
  "access": "public",
@@ -37659,15 +38682,15 @@
37659
38682
  "undefined"
37660
38683
  ],
37661
38684
  "file": {
37662
- "path": "_variables.scss",
37663
- "name": "_variables.scss"
38685
+ "path": "core/color-system/_swatch.scss",
38686
+ "name": "_swatch.scss"
37664
38687
  }
37665
38688
  },
37666
38689
  {
37667
38690
  "description": "The gradient background of the components' chrome area.\n",
37668
38691
  "commentRange": {
37669
- "start": 292,
37670
- "end": 292
38692
+ "start": 312,
38693
+ "end": 312
37671
38694
  },
37672
38695
  "context": {
37673
38696
  "type": "variable",
@@ -37675,8 +38698,8 @@
37675
38698
  "value": "rgba( white, .1 ), rgba( white, 0 )",
37676
38699
  "scope": "default",
37677
38700
  "line": {
37678
- "start": 293,
37679
- "end": 293
38701
+ "start": 313,
38702
+ "end": 313
37680
38703
  }
37681
38704
  },
37682
38705
  "access": "public",
@@ -37684,15 +38707,15 @@
37684
38707
  "undefined"
37685
38708
  ],
37686
38709
  "file": {
37687
- "path": "_variables.scss",
37688
- "name": "_variables.scss"
38710
+ "path": "core/color-system/_swatch.scss",
38711
+ "name": "_swatch.scss"
37689
38712
  }
37690
38713
  },
37691
38714
  {
37692
38715
  "description": "The background of hovered items.\n",
37693
38716
  "commentRange": {
37694
- "start": 308,
37695
- "end": 308
38717
+ "start": 328,
38718
+ "end": 328
37696
38719
  },
37697
38720
  "context": {
37698
38721
  "type": "variable",
@@ -37700,8 +38723,8 @@
37700
38723
  "value": "k-try-shade( $kendo-base-bg, 1 )",
37701
38724
  "scope": "default",
37702
38725
  "line": {
37703
- "start": 309,
37704
- "end": 309
38726
+ "start": 329,
38727
+ "end": 329
37705
38728
  }
37706
38729
  },
37707
38730
  "access": "public",
@@ -37709,15 +38732,15 @@
37709
38732
  "undefined"
37710
38733
  ],
37711
38734
  "file": {
37712
- "path": "_variables.scss",
37713
- "name": "_variables.scss"
38735
+ "path": "core/color-system/_swatch.scss",
38736
+ "name": "_swatch.scss"
37714
38737
  }
37715
38738
  },
37716
38739
  {
37717
38740
  "description": "The text color of hovered items.\n",
37718
38741
  "commentRange": {
37719
- "start": 310,
37720
- "end": 310
38742
+ "start": 330,
38743
+ "end": 330
37721
38744
  },
37722
38745
  "context": {
37723
38746
  "type": "variable",
@@ -37725,8 +38748,8 @@
37725
38748
  "value": "$kendo-base-text",
37726
38749
  "scope": "default",
37727
38750
  "line": {
37728
- "start": 311,
37729
- "end": 311
38751
+ "start": 331,
38752
+ "end": 331
37730
38753
  }
37731
38754
  },
37732
38755
  "access": "public",
@@ -37734,15 +38757,15 @@
37734
38757
  "undefined"
37735
38758
  ],
37736
38759
  "file": {
37737
- "path": "_variables.scss",
37738
- "name": "_variables.scss"
38760
+ "path": "core/color-system/_swatch.scss",
38761
+ "name": "_swatch.scss"
37739
38762
  }
37740
38763
  },
37741
38764
  {
37742
38765
  "description": "The border color of hovered items.\n",
37743
38766
  "commentRange": {
37744
- "start": 312,
37745
- "end": 312
38767
+ "start": 332,
38768
+ "end": 332
37746
38769
  },
37747
38770
  "context": {
37748
38771
  "type": "variable",
@@ -37750,8 +38773,8 @@
37750
38773
  "value": "k-try-shade( $kendo-hover-bg, 2 )",
37751
38774
  "scope": "default",
37752
38775
  "line": {
37753
- "start": 313,
37754
- "end": 313
38776
+ "start": 333,
38777
+ "end": 333
37755
38778
  }
37756
38779
  },
37757
38780
  "access": "public",
@@ -37759,15 +38782,15 @@
37759
38782
  "undefined"
37760
38783
  ],
37761
38784
  "file": {
37762
- "path": "_variables.scss",
37763
- "name": "_variables.scss"
38785
+ "path": "core/color-system/_swatch.scss",
38786
+ "name": "_swatch.scss"
37764
38787
  }
37765
38788
  },
37766
38789
  {
37767
38790
  "description": "The gradient background of hovered items.\n",
37768
38791
  "commentRange": {
37769
- "start": 314,
37770
- "end": 314
38792
+ "start": 334,
38793
+ "end": 334
37771
38794
  },
37772
38795
  "context": {
37773
38796
  "type": "variable",
@@ -37775,8 +38798,8 @@
37775
38798
  "value": "$kendo-base-gradient",
37776
38799
  "scope": "default",
37777
38800
  "line": {
37778
- "start": 315,
37779
- "end": 315
38801
+ "start": 335,
38802
+ "end": 335
37780
38803
  }
37781
38804
  },
37782
38805
  "access": "public",
@@ -37784,15 +38807,15 @@
37784
38807
  "undefined"
37785
38808
  ],
37786
38809
  "file": {
37787
- "path": "_variables.scss",
37788
- "name": "_variables.scss"
38810
+ "path": "core/color-system/_swatch.scss",
38811
+ "name": "_swatch.scss"
37789
38812
  }
37790
38813
  },
37791
38814
  {
37792
38815
  "description": "The background of selected items.\n",
37793
38816
  "commentRange": {
37794
- "start": 317,
37795
- "end": 317
38817
+ "start": 337,
38818
+ "end": 337
37796
38819
  },
37797
38820
  "context": {
37798
38821
  "type": "variable",
@@ -37800,8 +38823,8 @@
37800
38823
  "value": "$kendo-color-primary",
37801
38824
  "scope": "default",
37802
38825
  "line": {
37803
- "start": 318,
37804
- "end": 318
38826
+ "start": 338,
38827
+ "end": 338
37805
38828
  }
37806
38829
  },
37807
38830
  "access": "public",
@@ -37809,15 +38832,15 @@
37809
38832
  "undefined"
37810
38833
  ],
37811
38834
  "file": {
37812
- "path": "_variables.scss",
37813
- "name": "_variables.scss"
38835
+ "path": "core/color-system/_swatch.scss",
38836
+ "name": "_swatch.scss"
37814
38837
  }
37815
38838
  },
37816
38839
  {
37817
38840
  "description": "The text color of selected items.\n",
37818
38841
  "commentRange": {
37819
- "start": 319,
37820
- "end": 319
38842
+ "start": 339,
38843
+ "end": 339
37821
38844
  },
37822
38845
  "context": {
37823
38846
  "type": "variable",
@@ -37825,8 +38848,8 @@
37825
38848
  "value": "k-contrast-legacy( $kendo-selected-bg )",
37826
38849
  "scope": "default",
37827
38850
  "line": {
37828
- "start": 320,
37829
- "end": 320
38851
+ "start": 340,
38852
+ "end": 340
37830
38853
  }
37831
38854
  },
37832
38855
  "access": "public",
@@ -37834,15 +38857,15 @@
37834
38857
  "undefined"
37835
38858
  ],
37836
38859
  "file": {
37837
- "path": "_variables.scss",
37838
- "name": "_variables.scss"
38860
+ "path": "core/color-system/_swatch.scss",
38861
+ "name": "_swatch.scss"
37839
38862
  }
37840
38863
  },
37841
38864
  {
37842
38865
  "description": "The border color of selected items.\n",
37843
38866
  "commentRange": {
37844
- "start": 321,
37845
- "end": 321
38867
+ "start": 341,
38868
+ "end": 341
37846
38869
  },
37847
38870
  "context": {
37848
38871
  "type": "variable",
@@ -37850,8 +38873,8 @@
37850
38873
  "value": "k-try-shade( $kendo-selected-bg, 2 )",
37851
38874
  "scope": "default",
37852
38875
  "line": {
37853
- "start": 322,
37854
- "end": 322
38876
+ "start": 342,
38877
+ "end": 342
37855
38878
  }
37856
38879
  },
37857
38880
  "access": "public",
@@ -37859,15 +38882,15 @@
37859
38882
  "undefined"
37860
38883
  ],
37861
38884
  "file": {
37862
- "path": "_variables.scss",
37863
- "name": "_variables.scss"
38885
+ "path": "core/color-system/_swatch.scss",
38886
+ "name": "_swatch.scss"
37864
38887
  }
37865
38888
  },
37866
38889
  {
37867
38890
  "description": "The gradient background of selected items.\n",
37868
38891
  "commentRange": {
37869
- "start": 323,
37870
- "end": 323
38892
+ "start": 343,
38893
+ "end": 343
37871
38894
  },
37872
38895
  "context": {
37873
38896
  "type": "variable",
@@ -37875,8 +38898,8 @@
37875
38898
  "value": "$kendo-base-gradient",
37876
38899
  "scope": "default",
37877
38900
  "line": {
37878
- "start": 324,
37879
- "end": 324
38901
+ "start": 344,
38902
+ "end": 344
37880
38903
  }
37881
38904
  },
37882
38905
  "access": "public",
@@ -37884,8 +38907,133 @@
37884
38907
  "undefined"
37885
38908
  ],
37886
38909
  "file": {
37887
- "path": "_variables.scss",
37888
- "name": "_variables.scss"
38910
+ "path": "core/color-system/_swatch.scss",
38911
+ "name": "_swatch.scss"
38912
+ }
38913
+ },
38914
+ {
38915
+ "description": "The background of selected and hovered items.\n",
38916
+ "commentRange": {
38917
+ "start": 346,
38918
+ "end": 346
38919
+ },
38920
+ "context": {
38921
+ "type": "variable",
38922
+ "name": "kendo-selected-hover-bg",
38923
+ "value": "k-try-shade( $kendo-selected-bg, 1 )",
38924
+ "scope": "default",
38925
+ "line": {
38926
+ "start": 347,
38927
+ "end": 347
38928
+ }
38929
+ },
38930
+ "access": "public",
38931
+ "group": [
38932
+ "undefined"
38933
+ ],
38934
+ "file": {
38935
+ "path": "core/color-system/_swatch.scss",
38936
+ "name": "_swatch.scss"
38937
+ }
38938
+ },
38939
+ {
38940
+ "description": "The text color of selected and hovered items.\n",
38941
+ "commentRange": {
38942
+ "start": 348,
38943
+ "end": 348
38944
+ },
38945
+ "context": {
38946
+ "type": "variable",
38947
+ "name": "kendo-selected-hover-text",
38948
+ "value": "k-contrast-legacy( $kendo-selected-hover-bg )",
38949
+ "scope": "default",
38950
+ "line": {
38951
+ "start": 349,
38952
+ "end": 349
38953
+ }
38954
+ },
38955
+ "access": "public",
38956
+ "group": [
38957
+ "undefined"
38958
+ ],
38959
+ "file": {
38960
+ "path": "core/color-system/_swatch.scss",
38961
+ "name": "_swatch.scss"
38962
+ }
38963
+ },
38964
+ {
38965
+ "description": "The border of selected and hovered items.\n",
38966
+ "commentRange": {
38967
+ "start": 350,
38968
+ "end": 350
38969
+ },
38970
+ "context": {
38971
+ "type": "variable",
38972
+ "name": "kendo-selected-hover-border",
38973
+ "value": "$kendo-selected-border",
38974
+ "scope": "default",
38975
+ "line": {
38976
+ "start": 351,
38977
+ "end": 351
38978
+ }
38979
+ },
38980
+ "access": "public",
38981
+ "group": [
38982
+ "undefined"
38983
+ ],
38984
+ "file": {
38985
+ "path": "core/color-system/_swatch.scss",
38986
+ "name": "_swatch.scss"
38987
+ }
38988
+ },
38989
+ {
38990
+ "description": "The gradient of selected and hovered items.\n",
38991
+ "commentRange": {
38992
+ "start": 352,
38993
+ "end": 352
38994
+ },
38995
+ "context": {
38996
+ "type": "variable",
38997
+ "name": "kendo-selected-hover-gradient",
38998
+ "value": "$kendo-selected-gradient",
38999
+ "scope": "default",
39000
+ "line": {
39001
+ "start": 353,
39002
+ "end": 353
39003
+ }
39004
+ },
39005
+ "access": "public",
39006
+ "group": [
39007
+ "undefined"
39008
+ ],
39009
+ "file": {
39010
+ "path": "core/color-system/_swatch.scss",
39011
+ "name": "_swatch.scss"
39012
+ }
39013
+ },
39014
+ {
39015
+ "description": "Text color of disabled items.\n",
39016
+ "commentRange": {
39017
+ "start": 355,
39018
+ "end": 355
39019
+ },
39020
+ "context": {
39021
+ "type": "variable",
39022
+ "name": "kendo-disabled-text",
39023
+ "value": "#8d8d8d",
39024
+ "scope": "default",
39025
+ "line": {
39026
+ "start": 356,
39027
+ "end": 356
39028
+ }
39029
+ },
39030
+ "access": "public",
39031
+ "group": [
39032
+ "undefined"
39033
+ ],
39034
+ "file": {
39035
+ "path": "core/color-system/_swatch.scss",
39036
+ "name": "_swatch.scss"
37889
39037
  }
37890
39038
  },
37891
39039
  {