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

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 +324 -40
  2. package/dist/all.scss +2041 -644
  3. package/dist/meta/sassdoc-data.json +3484 -1052
  4. package/dist/meta/sassdoc-raw-data.json +1644 -521
  5. package/dist/meta/variables.json +510 -338
  6. package/lib/swatches/classic-green-dark.json +1 -1
  7. package/lib/swatches/classic-green.json +1 -1
  8. package/lib/swatches/classic-lavender-dark.json +1 -1
  9. package/lib/swatches/classic-lavender.json +1 -1
  10. package/lib/swatches/classic-main-dark.json +1 -1
  11. package/lib/swatches/classic-main.json +1 -1
  12. package/lib/swatches/classic-metro-dark.json +1 -1
  13. package/lib/swatches/classic-metro.json +1 -1
  14. package/lib/swatches/classic-moonlight.json +1 -1
  15. package/lib/swatches/classic-opal-dark.json +1 -1
  16. package/lib/swatches/classic-opal.json +1 -1
  17. package/lib/swatches/classic-silver-dark.json +1 -1
  18. package/lib/swatches/classic-silver.json +1 -1
  19. package/lib/swatches/classic-uniform.json +1 -1
  20. package/package.json +6 -6
  21. package/scss/_variables.scss +1 -193
  22. package/scss/adaptive/_variables.scss +1 -1
  23. package/scss/appbar/_variables.scss +2 -2
  24. package/scss/button/_variables.scss +7 -7
  25. package/scss/chat/_variables.scss +1 -1
  26. package/scss/checkbox/_variables.scss +2 -2
  27. package/scss/chip/_variables.scss +3 -3
  28. package/scss/core/_index.scss +6 -0
  29. package/scss/core/color-system/_palettes.scss +277 -0
  30. package/scss/core/color-system/_swatch-legacy.scss +62 -0
  31. package/scss/core/color-system/_swatch.scss +397 -0
  32. package/scss/dataviz/_variables.scss +42 -42
  33. package/scss/dock-manager/_variables.scss +1 -1
  34. package/scss/dropzone/_variables.scss +1 -1
  35. package/scss/editor/_variables.scss +1 -1
  36. package/scss/expansion-panel/_variables.scss +1 -2
  37. package/scss/filemanager/_variables.scss +2 -2
  38. package/scss/forms/_variables.scss +1 -1
  39. package/scss/gantt/_variables.scss +10 -10
  40. package/scss/grid/_variables.scss +11 -8
  41. package/scss/index.scss +2 -0
  42. package/scss/input/_variables.scss +20 -7
  43. package/scss/listview/_variables.scss +1 -1
  44. package/scss/map/_variables.scss +1 -1
  45. package/scss/mediaplayer/_variables.scss +1 -1
  46. package/scss/menu/_variables.scss +1 -1
  47. package/scss/notification/_variables.scss +1 -1
  48. package/scss/panelbar/_variables.scss +3 -4
  49. package/scss/pivotgrid/_variables.scss +5 -5
  50. package/scss/progressbar/_variables.scss +3 -3
  51. package/scss/prompt/_index.scss +37 -0
  52. package/scss/prompt/_layout.scss +6 -0
  53. package/scss/prompt/_theme.scss +6 -0
  54. package/scss/prompt/_variables.scss +66 -0
  55. package/scss/scheduler/_variables.scss +3 -3
  56. package/scss/scrollview/_variables.scss +1 -1
  57. package/scss/signature/_variables.scss +1 -1
  58. package/scss/skeleton/_variables.scss +1 -1
  59. package/scss/slider/_variables.scss +8 -8
  60. package/scss/splitter/_variables.scss +1 -1
  61. package/scss/spreadsheet/_variables.scss +4 -4
  62. package/scss/stepper/_variables.scss +7 -7
  63. package/scss/switch/_variables.scss +7 -7
  64. package/scss/table/_variables.scss +3 -3
  65. package/scss/taskboard/_variables.scss +4 -3
  66. package/scss/timeline/_variables.scss +4 -4
  67. package/scss/tooltip/_variables.scss +4 -4
  68. package/scss/core/color-system/index.import.scss +0 -1
@@ -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,
@@ -26766,8 +27264,8 @@
26766
27264
  {
26767
27265
  "description": "The background color of the Picker components.\n",
26768
27266
  "commentRange": {
26769
- "start": 287,
26770
- "end": 288
27267
+ "start": 300,
27268
+ "end": 301
26771
27269
  },
26772
27270
  "context": {
26773
27271
  "type": "variable",
@@ -26775,8 +27273,8 @@
26775
27273
  "value": "$kendo-button-bg",
26776
27274
  "scope": "default",
26777
27275
  "line": {
26778
- "start": 289,
26779
- "end": 289
27276
+ "start": 302,
27277
+ "end": 302
26780
27278
  }
26781
27279
  },
26782
27280
  "group": [
@@ -26791,8 +27289,8 @@
26791
27289
  {
26792
27290
  "description": "The text color of the Picker components.\n",
26793
27291
  "commentRange": {
26794
- "start": 290,
26795
- "end": 291
27292
+ "start": 303,
27293
+ "end": 304
26796
27294
  },
26797
27295
  "context": {
26798
27296
  "type": "variable",
@@ -26800,8 +27298,8 @@
26800
27298
  "value": "$kendo-button-text",
26801
27299
  "scope": "default",
26802
27300
  "line": {
26803
- "start": 292,
26804
- "end": 292
27301
+ "start": 305,
27302
+ "end": 305
26805
27303
  }
26806
27304
  },
26807
27305
  "group": [
@@ -26816,8 +27314,8 @@
26816
27314
  {
26817
27315
  "description": "The border color of the Picker components.\n",
26818
27316
  "commentRange": {
26819
- "start": 293,
26820
- "end": 294
27317
+ "start": 306,
27318
+ "end": 307
26821
27319
  },
26822
27320
  "context": {
26823
27321
  "type": "variable",
@@ -26825,8 +27323,8 @@
26825
27323
  "value": "$kendo-button-border",
26826
27324
  "scope": "default",
26827
27325
  "line": {
26828
- "start": 295,
26829
- "end": 295
27326
+ "start": 308,
27327
+ "end": 308
26830
27328
  }
26831
27329
  },
26832
27330
  "group": [
@@ -26841,8 +27339,8 @@
26841
27339
  {
26842
27340
  "description": "The gradient of the Picker components.\n",
26843
27341
  "commentRange": {
26844
- "start": 296,
26845
- "end": 297
27342
+ "start": 309,
27343
+ "end": 310
26846
27344
  },
26847
27345
  "context": {
26848
27346
  "type": "variable",
@@ -26850,8 +27348,8 @@
26850
27348
  "value": "$kendo-button-gradient",
26851
27349
  "scope": "default",
26852
27350
  "line": {
26853
- "start": 298,
26854
- "end": 298
27351
+ "start": 311,
27352
+ "end": 311
26855
27353
  }
26856
27354
  },
26857
27355
  "group": [
@@ -26866,8 +27364,8 @@
26866
27364
  {
26867
27365
  "description": "The shadow of the Picker components.\n",
26868
27366
  "commentRange": {
26869
- "start": 299,
26870
- "end": 300
27367
+ "start": 312,
27368
+ "end": 313
26871
27369
  },
26872
27370
  "context": {
26873
27371
  "type": "variable",
@@ -26875,8 +27373,8 @@
26875
27373
  "value": "$kendo-button-shadow",
26876
27374
  "scope": "default",
26877
27375
  "line": {
26878
- "start": 301,
26879
- "end": 301
27376
+ "start": 314,
27377
+ "end": 314
26880
27378
  }
26881
27379
  },
26882
27380
  "group": [
@@ -26891,8 +27389,8 @@
26891
27389
  {
26892
27390
  "description": "The background color of the hovered Picker components.\n",
26893
27391
  "commentRange": {
26894
- "start": 303,
26895
- "end": 304
27392
+ "start": 316,
27393
+ "end": 317
26896
27394
  },
26897
27395
  "context": {
26898
27396
  "type": "variable",
@@ -26900,8 +27398,8 @@
26900
27398
  "value": "$kendo-button-hover-bg",
26901
27399
  "scope": "default",
26902
27400
  "line": {
26903
- "start": 305,
26904
- "end": 305
27401
+ "start": 318,
27402
+ "end": 318
26905
27403
  }
26906
27404
  },
26907
27405
  "group": [
@@ -26916,8 +27414,8 @@
26916
27414
  {
26917
27415
  "description": "The text color of the hovered Picker components.\n",
26918
27416
  "commentRange": {
26919
- "start": 306,
26920
- "end": 307
27417
+ "start": 319,
27418
+ "end": 320
26921
27419
  },
26922
27420
  "context": {
26923
27421
  "type": "variable",
@@ -26925,8 +27423,8 @@
26925
27423
  "value": "$kendo-button-hover-text",
26926
27424
  "scope": "default",
26927
27425
  "line": {
26928
- "start": 308,
26929
- "end": 308
27426
+ "start": 321,
27427
+ "end": 321
26930
27428
  }
26931
27429
  },
26932
27430
  "group": [
@@ -26941,8 +27439,8 @@
26941
27439
  {
26942
27440
  "description": "The border color of the hovered Picker components.\n",
26943
27441
  "commentRange": {
26944
- "start": 309,
26945
- "end": 310
27442
+ "start": 322,
27443
+ "end": 323
26946
27444
  },
26947
27445
  "context": {
26948
27446
  "type": "variable",
@@ -26950,8 +27448,8 @@
26950
27448
  "value": "$kendo-button-hover-border",
26951
27449
  "scope": "default",
26952
27450
  "line": {
26953
- "start": 311,
26954
- "end": 311
27451
+ "start": 324,
27452
+ "end": 324
26955
27453
  }
26956
27454
  },
26957
27455
  "group": [
@@ -26966,8 +27464,8 @@
26966
27464
  {
26967
27465
  "description": "The gradient of the hovered Picker components.\n",
26968
27466
  "commentRange": {
26969
- "start": 312,
26970
- "end": 313
27467
+ "start": 325,
27468
+ "end": 326
26971
27469
  },
26972
27470
  "context": {
26973
27471
  "type": "variable",
@@ -26975,8 +27473,8 @@
26975
27473
  "value": "$kendo-button-hover-gradient",
26976
27474
  "scope": "default",
26977
27475
  "line": {
26978
- "start": 314,
26979
- "end": 314
27476
+ "start": 327,
27477
+ "end": 327
26980
27478
  }
26981
27479
  },
26982
27480
  "group": [
@@ -26991,8 +27489,8 @@
26991
27489
  {
26992
27490
  "description": "The shadow of the hovered Picker components.\n",
26993
27491
  "commentRange": {
26994
- "start": 315,
26995
- "end": 316
27492
+ "start": 328,
27493
+ "end": 329
26996
27494
  },
26997
27495
  "context": {
26998
27496
  "type": "variable",
@@ -27000,8 +27498,8 @@
27000
27498
  "value": "$kendo-button-hover-shadow",
27001
27499
  "scope": "default",
27002
27500
  "line": {
27003
- "start": 317,
27004
- "end": 317
27501
+ "start": 330,
27502
+ "end": 330
27005
27503
  }
27006
27504
  },
27007
27505
  "group": [
@@ -27016,8 +27514,8 @@
27016
27514
  {
27017
27515
  "description": "The background color of the focused Picker components.\n",
27018
27516
  "commentRange": {
27019
- "start": 319,
27020
- "end": 320
27517
+ "start": 332,
27518
+ "end": 333
27021
27519
  },
27022
27520
  "context": {
27023
27521
  "type": "variable",
@@ -27025,8 +27523,8 @@
27025
27523
  "value": "$kendo-button-focus-bg",
27026
27524
  "scope": "default",
27027
27525
  "line": {
27028
- "start": 321,
27029
- "end": 321
27526
+ "start": 334,
27527
+ "end": 334
27030
27528
  }
27031
27529
  },
27032
27530
  "group": [
@@ -27041,8 +27539,8 @@
27041
27539
  {
27042
27540
  "description": "The text color of the focused Picker components.\n",
27043
27541
  "commentRange": {
27044
- "start": 322,
27045
- "end": 323
27542
+ "start": 335,
27543
+ "end": 336
27046
27544
  },
27047
27545
  "context": {
27048
27546
  "type": "variable",
@@ -27050,8 +27548,8 @@
27050
27548
  "value": "$kendo-button-focus-text",
27051
27549
  "scope": "default",
27052
27550
  "line": {
27053
- "start": 324,
27054
- "end": 324
27551
+ "start": 337,
27552
+ "end": 337
27055
27553
  }
27056
27554
  },
27057
27555
  "group": [
@@ -27066,8 +27564,8 @@
27066
27564
  {
27067
27565
  "description": "The border color of the focused Picker components.\n",
27068
27566
  "commentRange": {
27069
- "start": 325,
27070
- "end": 326
27567
+ "start": 338,
27568
+ "end": 339
27071
27569
  },
27072
27570
  "context": {
27073
27571
  "type": "variable",
@@ -27075,8 +27573,8 @@
27075
27573
  "value": "$kendo-button-focus-border",
27076
27574
  "scope": "default",
27077
27575
  "line": {
27078
- "start": 327,
27079
- "end": 327
27576
+ "start": 340,
27577
+ "end": 340
27080
27578
  }
27081
27579
  },
27082
27580
  "group": [
@@ -27091,8 +27589,8 @@
27091
27589
  {
27092
27590
  "description": "The gradient of the focused Picker components.\n",
27093
27591
  "commentRange": {
27094
- "start": 328,
27095
- "end": 329
27592
+ "start": 341,
27593
+ "end": 342
27096
27594
  },
27097
27595
  "context": {
27098
27596
  "type": "variable",
@@ -27100,8 +27598,8 @@
27100
27598
  "value": "$kendo-button-focus-gradient",
27101
27599
  "scope": "default",
27102
27600
  "line": {
27103
- "start": 330,
27104
- "end": 330
27601
+ "start": 343,
27602
+ "end": 343
27105
27603
  }
27106
27604
  },
27107
27605
  "group": [
@@ -27116,8 +27614,8 @@
27116
27614
  {
27117
27615
  "description": "The shadow of the focused Picker components.\n",
27118
27616
  "commentRange": {
27119
- "start": 331,
27120
- "end": 332
27617
+ "start": 344,
27618
+ "end": 345
27121
27619
  },
27122
27620
  "context": {
27123
27621
  "type": "variable",
@@ -27125,8 +27623,8 @@
27125
27623
  "value": "$kendo-button-focus-shadow",
27126
27624
  "scope": "default",
27127
27625
  "line": {
27128
- "start": 333,
27129
- "end": 333
27626
+ "start": 346,
27627
+ "end": 346
27130
27628
  }
27131
27629
  },
27132
27630
  "group": [
@@ -27141,8 +27639,8 @@
27141
27639
  {
27142
27640
  "description": "The background color of the disabled Picker components.\n",
27143
27641
  "commentRange": {
27144
- "start": 335,
27145
- "end": 336
27642
+ "start": 348,
27643
+ "end": 349
27146
27644
  },
27147
27645
  "context": {
27148
27646
  "type": "variable",
@@ -27150,8 +27648,8 @@
27150
27648
  "value": "null",
27151
27649
  "scope": "default",
27152
27650
  "line": {
27153
- "start": 337,
27154
- "end": 337
27651
+ "start": 350,
27652
+ "end": 350
27155
27653
  }
27156
27654
  },
27157
27655
  "group": [
@@ -27166,8 +27664,8 @@
27166
27664
  {
27167
27665
  "description": "The text color of the disabled Picker components.\n",
27168
27666
  "commentRange": {
27169
- "start": 338,
27170
- "end": 339
27667
+ "start": 351,
27668
+ "end": 352
27171
27669
  },
27172
27670
  "context": {
27173
27671
  "type": "variable",
@@ -27175,8 +27673,8 @@
27175
27673
  "value": "null",
27176
27674
  "scope": "default",
27177
27675
  "line": {
27178
- "start": 340,
27179
- "end": 340
27676
+ "start": 353,
27677
+ "end": 353
27180
27678
  }
27181
27679
  },
27182
27680
  "group": [
@@ -27191,8 +27689,8 @@
27191
27689
  {
27192
27690
  "description": "The border color of the disabled Picker components.\n",
27193
27691
  "commentRange": {
27194
- "start": 341,
27195
- "end": 342
27692
+ "start": 354,
27693
+ "end": 355
27196
27694
  },
27197
27695
  "context": {
27198
27696
  "type": "variable",
@@ -27200,8 +27698,8 @@
27200
27698
  "value": "null",
27201
27699
  "scope": "default",
27202
27700
  "line": {
27203
- "start": 343,
27204
- "end": 343
27701
+ "start": 356,
27702
+ "end": 356
27205
27703
  }
27206
27704
  },
27207
27705
  "group": [
@@ -27216,8 +27714,8 @@
27216
27714
  {
27217
27715
  "description": "The gradient of the disabled Picker components.\n",
27218
27716
  "commentRange": {
27219
- "start": 344,
27220
- "end": 345
27717
+ "start": 357,
27718
+ "end": 358
27221
27719
  },
27222
27720
  "context": {
27223
27721
  "type": "variable",
@@ -27225,8 +27723,8 @@
27225
27723
  "value": "null",
27226
27724
  "scope": "default",
27227
27725
  "line": {
27228
- "start": 346,
27229
- "end": 346
27726
+ "start": 359,
27727
+ "end": 359
27230
27728
  }
27231
27729
  },
27232
27730
  "group": [
@@ -27241,8 +27739,8 @@
27241
27739
  {
27242
27740
  "description": "The shadow of the disabled Picker components.\n",
27243
27741
  "commentRange": {
27244
- "start": 347,
27245
- "end": 348
27742
+ "start": 360,
27743
+ "end": 361
27246
27744
  },
27247
27745
  "context": {
27248
27746
  "type": "variable",
@@ -27250,8 +27748,8 @@
27250
27748
  "value": "null",
27251
27749
  "scope": "default",
27252
27750
  "line": {
27253
- "start": 349,
27254
- "end": 349
27751
+ "start": 362,
27752
+ "end": 362
27255
27753
  }
27256
27754
  },
27257
27755
  "group": [
@@ -27266,8 +27764,8 @@
27266
27764
  {
27267
27765
  "description": "The background color of the outline Picker components.\n",
27268
27766
  "commentRange": {
27269
- "start": 351,
27270
- "end": 352
27767
+ "start": 364,
27768
+ "end": 365
27271
27769
  },
27272
27770
  "context": {
27273
27771
  "type": "variable",
@@ -27275,8 +27773,8 @@
27275
27773
  "value": "null",
27276
27774
  "scope": "default",
27277
27775
  "line": {
27278
- "start": 353,
27279
- "end": 353
27776
+ "start": 366,
27777
+ "end": 366
27280
27778
  }
27281
27779
  },
27282
27780
  "group": [
@@ -27291,8 +27789,8 @@
27291
27789
  {
27292
27790
  "description": "The text color of the outline Picker components.\n",
27293
27791
  "commentRange": {
27294
- "start": 354,
27295
- "end": 355
27792
+ "start": 367,
27793
+ "end": 368
27296
27794
  },
27297
27795
  "context": {
27298
27796
  "type": "variable",
@@ -27300,8 +27798,8 @@
27300
27798
  "value": "$kendo-button-text",
27301
27799
  "scope": "default",
27302
27800
  "line": {
27303
- "start": 356,
27304
- "end": 356
27801
+ "start": 369,
27802
+ "end": 369
27305
27803
  }
27306
27804
  },
27307
27805
  "group": [
@@ -27316,17 +27814,17 @@
27316
27814
  {
27317
27815
  "description": "The border color of the outline Picker components.\n",
27318
27816
  "commentRange": {
27319
- "start": 357,
27320
- "end": 358
27817
+ "start": 370,
27818
+ "end": 371
27321
27819
  },
27322
27820
  "context": {
27323
27821
  "type": "variable",
27324
27822
  "name": "kendo-picker-outline-border",
27325
- "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))",
27326
27824
  "scope": "default",
27327
27825
  "line": {
27328
- "start": 359,
27329
- "end": 359
27826
+ "start": 372,
27827
+ "end": 372
27330
27828
  }
27331
27829
  },
27332
27830
  "group": [
@@ -27341,8 +27839,8 @@
27341
27839
  {
27342
27840
  "description": "The background color of the outline hovered Picker components.\n",
27343
27841
  "commentRange": {
27344
- "start": 361,
27345
- "end": 362
27842
+ "start": 374,
27843
+ "end": 375
27346
27844
  },
27347
27845
  "context": {
27348
27846
  "type": "variable",
@@ -27350,8 +27848,8 @@
27350
27848
  "value": "$kendo-picker-outline-text",
27351
27849
  "scope": "default",
27352
27850
  "line": {
27353
- "start": 363,
27354
- "end": 363
27851
+ "start": 376,
27852
+ "end": 376
27355
27853
  }
27356
27854
  },
27357
27855
  "group": [
@@ -27366,17 +27864,17 @@
27366
27864
  {
27367
27865
  "description": "The text color of the outline hovered Picker components.\n",
27368
27866
  "commentRange": {
27369
- "start": 364,
27370
- "end": 365
27867
+ "start": 377,
27868
+ "end": 378
27371
27869
  },
27372
27870
  "context": {
27373
27871
  "type": "variable",
27374
27872
  "name": "kendo-picker-outline-hover-text",
27375
- "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 ))",
27376
27874
  "scope": "default",
27377
27875
  "line": {
27378
- "start": 366,
27379
- "end": 366
27876
+ "start": 379,
27877
+ "end": 379
27380
27878
  }
27381
27879
  },
27382
27880
  "group": [
@@ -27391,8 +27889,8 @@
27391
27889
  {
27392
27890
  "description": "The border color of the outline hovered Picker components.\n",
27393
27891
  "commentRange": {
27394
- "start": 367,
27395
- "end": 368
27892
+ "start": 380,
27893
+ "end": 381
27396
27894
  },
27397
27895
  "context": {
27398
27896
  "type": "variable",
@@ -27400,8 +27898,8 @@
27400
27898
  "value": "$kendo-picker-outline-hover-bg",
27401
27899
  "scope": "default",
27402
27900
  "line": {
27403
- "start": 369,
27404
- "end": 369
27901
+ "start": 382,
27902
+ "end": 382
27405
27903
  }
27406
27904
  },
27407
27905
  "group": [
@@ -27416,8 +27914,8 @@
27416
27914
  {
27417
27915
  "description": "The background color of the outline focused Picker components.\n",
27418
27916
  "commentRange": {
27419
- "start": 371,
27420
- "end": 372
27917
+ "start": 384,
27918
+ "end": 385
27421
27919
  },
27422
27920
  "context": {
27423
27921
  "type": "variable",
@@ -27425,8 +27923,8 @@
27425
27923
  "value": "null",
27426
27924
  "scope": "default",
27427
27925
  "line": {
27428
- "start": 373,
27429
- "end": 373
27926
+ "start": 386,
27927
+ "end": 386
27430
27928
  }
27431
27929
  },
27432
27930
  "group": [
@@ -27441,8 +27939,8 @@
27441
27939
  {
27442
27940
  "description": "The text color of the outline focused Picker components.\n",
27443
27941
  "commentRange": {
27444
- "start": 374,
27445
- "end": 375
27942
+ "start": 387,
27943
+ "end": 388
27446
27944
  },
27447
27945
  "context": {
27448
27946
  "type": "variable",
@@ -27450,8 +27948,8 @@
27450
27948
  "value": "null",
27451
27949
  "scope": "default",
27452
27950
  "line": {
27453
- "start": 376,
27454
- "end": 376
27951
+ "start": 389,
27952
+ "end": 389
27455
27953
  }
27456
27954
  },
27457
27955
  "group": [
@@ -27466,8 +27964,8 @@
27466
27964
  {
27467
27965
  "description": "The border color of the outline focused Picker components.\n",
27468
27966
  "commentRange": {
27469
- "start": 377,
27470
- "end": 378
27967
+ "start": 390,
27968
+ "end": 391
27471
27969
  },
27472
27970
  "context": {
27473
27971
  "type": "variable",
@@ -27475,8 +27973,8 @@
27475
27973
  "value": "null",
27476
27974
  "scope": "default",
27477
27975
  "line": {
27478
- "start": 379,
27479
- "end": 379
27976
+ "start": 392,
27977
+ "end": 392
27480
27978
  }
27481
27979
  },
27482
27980
  "group": [
@@ -27491,8 +27989,8 @@
27491
27989
  {
27492
27990
  "description": "The shadow of the outline focused Picker components.\n",
27493
27991
  "commentRange": {
27494
- "start": 380,
27495
- "end": 381
27992
+ "start": 393,
27993
+ "end": 394
27496
27994
  },
27497
27995
  "context": {
27498
27996
  "type": "variable",
@@ -27500,8 +27998,8 @@
27500
27998
  "value": "$kendo-picker-focus-shadow",
27501
27999
  "scope": "default",
27502
28000
  "line": {
27503
- "start": 382,
27504
- "end": 382
28001
+ "start": 395,
28002
+ "end": 395
27505
28003
  }
27506
28004
  },
27507
28005
  "group": [
@@ -27516,8 +28014,8 @@
27516
28014
  {
27517
28015
  "description": "The background color of the outline hovered and focused Picker components.\n",
27518
28016
  "commentRange": {
27519
- "start": 384,
27520
- "end": 385
28017
+ "start": 397,
28018
+ "end": 398
27521
28019
  },
27522
28020
  "context": {
27523
28021
  "type": "variable",
@@ -27525,8 +28023,8 @@
27525
28023
  "value": "null",
27526
28024
  "scope": "default",
27527
28025
  "line": {
27528
- "start": 386,
27529
- "end": 386
28026
+ "start": 399,
28027
+ "end": 399
27530
28028
  }
27531
28029
  },
27532
28030
  "group": [
@@ -27541,8 +28039,8 @@
27541
28039
  {
27542
28040
  "description": "The text color of the outline hovered and focused Picker components.\n",
27543
28041
  "commentRange": {
27544
- "start": 387,
27545
- "end": 388
28042
+ "start": 400,
28043
+ "end": 401
27546
28044
  },
27547
28045
  "context": {
27548
28046
  "type": "variable",
@@ -27550,8 +28048,8 @@
27550
28048
  "value": "null",
27551
28049
  "scope": "default",
27552
28050
  "line": {
27553
- "start": 389,
27554
- "end": 389
28051
+ "start": 402,
28052
+ "end": 402
27555
28053
  }
27556
28054
  },
27557
28055
  "group": [
@@ -27566,8 +28064,8 @@
27566
28064
  {
27567
28065
  "description": "The border color of the outline hovered and focused Picker components.\n",
27568
28066
  "commentRange": {
27569
- "start": 390,
27570
- "end": 391
28067
+ "start": 403,
28068
+ "end": 404
27571
28069
  },
27572
28070
  "context": {
27573
28071
  "type": "variable",
@@ -27575,8 +28073,8 @@
27575
28073
  "value": "null",
27576
28074
  "scope": "default",
27577
28075
  "line": {
27578
- "start": 392,
27579
- "end": 392
28076
+ "start": 405,
28077
+ "end": 405
27580
28078
  }
27581
28079
  },
27582
28080
  "group": [
@@ -27591,8 +28089,8 @@
27591
28089
  {
27592
28090
  "description": "The background color of the flat Picker components.\n",
27593
28091
  "commentRange": {
27594
- "start": 394,
27595
- "end": 395
28092
+ "start": 407,
28093
+ "end": 408
27596
28094
  },
27597
28095
  "context": {
27598
28096
  "type": "variable",
@@ -27600,8 +28098,8 @@
27600
28098
  "value": "null",
27601
28099
  "scope": "default",
27602
28100
  "line": {
27603
- "start": 396,
27604
- "end": 396
28101
+ "start": 409,
28102
+ "end": 409
27605
28103
  }
27606
28104
  },
27607
28105
  "group": [
@@ -27616,8 +28114,8 @@
27616
28114
  {
27617
28115
  "description": "The text color of the flat Picker components.\n",
27618
28116
  "commentRange": {
27619
- "start": 397,
27620
- "end": 398
28117
+ "start": 410,
28118
+ "end": 411
27621
28119
  },
27622
28120
  "context": {
27623
28121
  "type": "variable",
@@ -27625,8 +28123,8 @@
27625
28123
  "value": "$kendo-button-text",
27626
28124
  "scope": "default",
27627
28125
  "line": {
27628
- "start": 399,
27629
- "end": 399
28126
+ "start": 412,
28127
+ "end": 412
27630
28128
  }
27631
28129
  },
27632
28130
  "group": [
@@ -27641,8 +28139,8 @@
27641
28139
  {
27642
28140
  "description": "The border color of the flat Picker components.\n",
27643
28141
  "commentRange": {
27644
- "start": 400,
27645
- "end": 401
28142
+ "start": 413,
28143
+ "end": 414
27646
28144
  },
27647
28145
  "context": {
27648
28146
  "type": "variable",
@@ -27650,8 +28148,8 @@
27650
28148
  "value": "$kendo-button-border",
27651
28149
  "scope": "default",
27652
28150
  "line": {
27653
- "start": 402,
27654
- "end": 402
28151
+ "start": 415,
28152
+ "end": 415
27655
28153
  }
27656
28154
  },
27657
28155
  "group": [
@@ -27666,17 +28164,17 @@
27666
28164
  {
27667
28165
  "description": "The background color of the flat hovered Picker components.\n",
27668
28166
  "commentRange": {
27669
- "start": 404,
27670
- "end": 405
28167
+ "start": 417,
28168
+ "end": 418
27671
28169
  },
27672
28170
  "context": {
27673
28171
  "type": "variable",
27674
28172
  "name": "kendo-picker-flat-hover-bg",
27675
- "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 ))",
27676
28174
  "scope": "default",
27677
28175
  "line": {
27678
- "start": 406,
27679
- "end": 406
28176
+ "start": 419,
28177
+ "end": 419
27680
28178
  }
27681
28179
  },
27682
28180
  "group": [
@@ -27691,8 +28189,8 @@
27691
28189
  {
27692
28190
  "description": "The text color of the flat hovered Picker components.\n",
27693
28191
  "commentRange": {
27694
- "start": 407,
27695
- "end": 408
28192
+ "start": 420,
28193
+ "end": 421
27696
28194
  },
27697
28195
  "context": {
27698
28196
  "type": "variable",
@@ -27700,8 +28198,8 @@
27700
28198
  "value": "null",
27701
28199
  "scope": "default",
27702
28200
  "line": {
27703
- "start": 409,
27704
- "end": 409
28201
+ "start": 422,
28202
+ "end": 422
27705
28203
  }
27706
28204
  },
27707
28205
  "group": [
@@ -27716,17 +28214,17 @@
27716
28214
  {
27717
28215
  "description": "The border color of the flat hovered Picker components.\n",
27718
28216
  "commentRange": {
27719
- "start": 410,
27720
- "end": 411
28217
+ "start": 423,
28218
+ "end": 424
27721
28219
  },
27722
28220
  "context": {
27723
28221
  "type": "variable",
27724
28222
  "name": "kendo-picker-flat-hover-border",
27725
- "value": "rgba( $kendo-button-border, .16 )",
28223
+ "value": "if($kendo-enable-color-system, rgba( k-color( border, true ), .16 ), rgba( $kendo-button-border, .16 ))",
27726
28224
  "scope": "default",
27727
28225
  "line": {
27728
- "start": 412,
27729
- "end": 412
28226
+ "start": 425,
28227
+ "end": 425
27730
28228
  }
27731
28229
  },
27732
28230
  "group": [
@@ -27741,8 +28239,8 @@
27741
28239
  {
27742
28240
  "description": "The background color of the flat focused Picker components.\n",
27743
28241
  "commentRange": {
27744
- "start": 414,
27745
- "end": 415
28242
+ "start": 427,
28243
+ "end": 428
27746
28244
  },
27747
28245
  "context": {
27748
28246
  "type": "variable",
@@ -27750,8 +28248,8 @@
27750
28248
  "value": "null",
27751
28249
  "scope": "default",
27752
28250
  "line": {
27753
- "start": 416,
27754
- "end": 416
28251
+ "start": 429,
28252
+ "end": 429
27755
28253
  }
27756
28254
  },
27757
28255
  "group": [
@@ -27766,8 +28264,8 @@
27766
28264
  {
27767
28265
  "description": "The text color of the flat focused Picker components.\n",
27768
28266
  "commentRange": {
27769
- "start": 417,
27770
- "end": 418
28267
+ "start": 430,
28268
+ "end": 431
27771
28269
  },
27772
28270
  "context": {
27773
28271
  "type": "variable",
@@ -27775,8 +28273,8 @@
27775
28273
  "value": "null",
27776
28274
  "scope": "default",
27777
28275
  "line": {
27778
- "start": 419,
27779
- "end": 419
28276
+ "start": 432,
28277
+ "end": 432
27780
28278
  }
27781
28279
  },
27782
28280
  "group": [
@@ -27791,8 +28289,8 @@
27791
28289
  {
27792
28290
  "description": "The border color of the flat focused Picker components.\n",
27793
28291
  "commentRange": {
27794
- "start": 420,
27795
- "end": 421
28292
+ "start": 433,
28293
+ "end": 434
27796
28294
  },
27797
28295
  "context": {
27798
28296
  "type": "variable",
@@ -27800,8 +28298,8 @@
27800
28298
  "value": "null",
27801
28299
  "scope": "default",
27802
28300
  "line": {
27803
- "start": 422,
27804
- "end": 422
28301
+ "start": 435,
28302
+ "end": 435
27805
28303
  }
27806
28304
  },
27807
28305
  "group": [
@@ -27816,8 +28314,8 @@
27816
28314
  {
27817
28315
  "description": "The shadow of the flat focused Picker components.\n",
27818
28316
  "commentRange": {
27819
- "start": 423,
27820
- "end": 424
28317
+ "start": 436,
28318
+ "end": 437
27821
28319
  },
27822
28320
  "context": {
27823
28321
  "type": "variable",
@@ -27825,8 +28323,8 @@
27825
28323
  "value": "$kendo-picker-focus-shadow",
27826
28324
  "scope": "default",
27827
28325
  "line": {
27828
- "start": 425,
27829
- "end": 425
28326
+ "start": 438,
28327
+ "end": 438
27830
28328
  }
27831
28329
  },
27832
28330
  "group": [
@@ -27841,8 +28339,8 @@
27841
28339
  {
27842
28340
  "description": "The background color of the flat hovered and focused Picker components.\n",
27843
28341
  "commentRange": {
27844
- "start": 427,
27845
- "end": 428
28342
+ "start": 440,
28343
+ "end": 441
27846
28344
  },
27847
28345
  "context": {
27848
28346
  "type": "variable",
@@ -27850,8 +28348,8 @@
27850
28348
  "value": "null",
27851
28349
  "scope": "default",
27852
28350
  "line": {
27853
- "start": 429,
27854
- "end": 429
28351
+ "start": 442,
28352
+ "end": 442
27855
28353
  }
27856
28354
  },
27857
28355
  "group": [
@@ -27866,8 +28364,8 @@
27866
28364
  {
27867
28365
  "description": "The text color of the flat hovered and focused Picker components.\n",
27868
28366
  "commentRange": {
27869
- "start": 430,
27870
- "end": 431
28367
+ "start": 443,
28368
+ "end": 444
27871
28369
  },
27872
28370
  "context": {
27873
28371
  "type": "variable",
@@ -27875,8 +28373,8 @@
27875
28373
  "value": "null",
27876
28374
  "scope": "default",
27877
28375
  "line": {
27878
- "start": 432,
27879
- "end": 432
28376
+ "start": 445,
28377
+ "end": 445
27880
28378
  }
27881
28379
  },
27882
28380
  "group": [
@@ -27891,8 +28389,8 @@
27891
28389
  {
27892
28390
  "description": "The border color of the flat hovered and focused Picker components.\n",
27893
28391
  "commentRange": {
27894
- "start": 433,
27895
- "end": 434
28392
+ "start": 446,
28393
+ "end": 447
27896
28394
  },
27897
28395
  "context": {
27898
28396
  "type": "variable",
@@ -27900,8 +28398,8 @@
27900
28398
  "value": "null",
27901
28399
  "scope": "default",
27902
28400
  "line": {
27903
- "start": 435,
27904
- "end": 435
28401
+ "start": 448,
28402
+ "end": 448
27905
28403
  }
27906
28404
  },
27907
28405
  "group": [
@@ -29047,7 +29545,7 @@
29047
29545
  "context": {
29048
29546
  "type": "variable",
29049
29547
  "name": "kendo-progressbar-bg",
29050
- "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 ))",
29051
29549
  "scope": "default",
29052
29550
  "line": {
29053
29551
  "start": 27,
@@ -29172,7 +29670,7 @@
29172
29670
  "context": {
29173
29671
  "type": "variable",
29174
29672
  "name": "kendo-progressbar-value-text",
29175
- "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 ))",
29176
29674
  "scope": "default",
29177
29675
  "line": {
29178
29676
  "start": 43,
@@ -29197,7 +29695,7 @@
29197
29695
  "context": {
29198
29696
  "type": "variable",
29199
29697
  "name": "kendo-progressbar-value-border",
29200
- "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 ))",
29201
29699
  "scope": "default",
29202
29700
  "line": {
29203
29701
  "start": 46,
@@ -29413,6 +29911,506 @@
29413
29911
  "name": "_variables.scss"
29414
29912
  }
29415
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
+ },
29416
30414
  {
29417
30415
  "description": "The border radius of the RadioButton.\n",
29418
30416
  "commentRange": {
@@ -31197,7 +32195,7 @@
31197
32195
  "context": {
31198
32196
  "type": "variable",
31199
32197
  "name": "kendo-scrollview-pagebutton-primary-border",
31200
- "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 ))",
31201
32199
  "scope": "default",
31202
32200
  "line": {
31203
32201
  "start": 40,
@@ -31722,7 +32720,7 @@
31722
32720
  "context": {
31723
32721
  "type": "variable",
31724
32722
  "name": "kendo-skeleton-item-bg",
31725
- "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 ))",
31726
32724
  "scope": "default",
31727
32725
  "line": {
31728
32726
  "start": 20,
@@ -32447,7 +33445,7 @@
32447
33445
  "context": {
32448
33446
  "type": "variable",
32449
33447
  "name": "kendo-switch-off-track-focus-ring",
32450
- "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 )",
32451
33449
  "scope": "default",
32452
33450
  "line": {
32453
33451
  "start": 71,
@@ -32572,7 +33570,7 @@
32572
33570
  "context": {
32573
33571
  "type": "variable",
32574
33572
  "name": "kendo-switch-off-thumb-bg",
32575
- "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 ))",
32576
33574
  "scope": "default",
32577
33575
  "line": {
32578
33576
  "start": 88,
@@ -32672,7 +33670,7 @@
32672
33670
  "context": {
32673
33671
  "type": "variable",
32674
33672
  "name": "kendo-switch-off-thumb-hover-bg",
32675
- "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 ))",
32676
33674
  "scope": "default",
32677
33675
  "line": {
32678
33676
  "start": 101,
@@ -33072,7 +34070,7 @@
33072
34070
  "context": {
33073
34071
  "type": "variable",
33074
34072
  "name": "kendo-switch-on-track-focus-ring",
33075
- "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 )",
33076
34074
  "scope": "default",
33077
34075
  "line": {
33078
34076
  "start": 153,
@@ -33247,7 +34245,7 @@
33247
34245
  "context": {
33248
34246
  "type": "variable",
33249
34247
  "name": "kendo-switch-on-thumb-border",
33250
- "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 ))",
33251
34249
  "scope": "default",
33252
34250
  "line": {
33253
34251
  "start": 176,
@@ -33297,7 +34295,7 @@
33297
34295
  "context": {
33298
34296
  "type": "variable",
33299
34297
  "name": "kendo-switch-on-thumb-hover-bg",
33300
- "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 ))",
33301
34299
  "scope": "default",
33302
34300
  "line": {
33303
34301
  "start": 183,
@@ -33347,7 +34345,7 @@
33347
34345
  "context": {
33348
34346
  "type": "variable",
33349
34347
  "name": "kendo-switch-on-thumb-hover-border",
33350
- "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 ))",
33351
34349
  "scope": "default",
33352
34350
  "line": {
33353
34351
  "start": 189,
@@ -33922,7 +34920,7 @@
33922
34920
  "context": {
33923
34921
  "type": "variable",
33924
34922
  "name": "kendo-table-alt-row-bg",
33925
- "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 ))",
33926
34924
  "scope": "default",
33927
34925
  "line": {
33928
34926
  "start": 114,
@@ -33997,7 +34995,7 @@
33997
34995
  "context": {
33998
34996
  "type": "variable",
33999
34997
  "name": "kendo-table-hover-bg",
34000
- "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 ))",
34001
34999
  "scope": "default",
34002
35000
  "line": {
34003
35001
  "start": 125,
@@ -34172,7 +35170,7 @@
34172
35170
  "context": {
34173
35171
  "type": "variable",
34174
35172
  "name": "kendo-table-selected-bg",
34175
- "value": "rgba( $kendo-selected-bg, .25 )",
35173
+ "value": "if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-selected-bg, .25 ))",
34176
35174
  "scope": "default",
34177
35175
  "line": {
34178
35176
  "start": 150,
@@ -36097,7 +37095,7 @@
36097
37095
  "context": {
36098
37096
  "type": "variable",
36099
37097
  "name": "kendo-tooltip-bg",
36100
- "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 ))",
36101
37099
  "scope": "default",
36102
37100
  "line": {
36103
37101
  "start": 39,
@@ -36122,7 +37120,7 @@
36122
37120
  "context": {
36123
37121
  "type": "variable",
36124
37122
  "name": "kendo-tooltip-text",
36125
- "value": "k-contrast-color( $kendo-tooltip-bg )",
37123
+ "value": "if($kendo-enable-color-system, k-color( app-surface ), k-contrast-color( $kendo-tooltip-bg ))",
36126
37124
  "scope": "default",
36127
37125
  "line": {
36128
37126
  "start": 42,
@@ -37466,8 +38464,8 @@
37466
38464
  {
37467
38465
  "description": "Base font size across all components.\n",
37468
38466
  "commentRange": {
37469
- "start": 218,
37470
- "end": 219
38467
+ "start": 109,
38468
+ "end": 110
37471
38469
  },
37472
38470
  "context": {
37473
38471
  "type": "variable",
@@ -37475,8 +38473,8 @@
37475
38473
  "value": "14px",
37476
38474
  "scope": "default",
37477
38475
  "line": {
37478
- "start": 220,
37479
- "end": 220
38476
+ "start": 111,
38477
+ "end": 111
37480
38478
  }
37481
38479
  },
37482
38480
  "group": [
@@ -37491,8 +38489,8 @@
37491
38489
  {
37492
38490
  "description": "Font family for text.\n",
37493
38491
  "commentRange": {
37494
- "start": 235,
37495
- "end": 236
38492
+ "start": 126,
38493
+ "end": 127
37496
38494
  },
37497
38495
  "context": {
37498
38496
  "type": "variable",
@@ -37500,8 +38498,8 @@
37500
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\"",
37501
38499
  "scope": "default",
37502
38500
  "line": {
37503
- "start": 237,
37504
- "end": 237
38501
+ "start": 128,
38502
+ "end": 128
37505
38503
  }
37506
38504
  },
37507
38505
  "group": [
@@ -37516,8 +38514,8 @@
37516
38514
  {
37517
38515
  "description": "Font family for monospaced text. Used for styling the code.\n",
37518
38516
  "commentRange": {
37519
- "start": 239,
37520
- "end": 240
38517
+ "start": 130,
38518
+ "end": 131
37521
38519
  },
37522
38520
  "context": {
37523
38521
  "type": "variable",
@@ -37525,8 +38523,8 @@
37525
38523
  "value": "SFMono-Regular, Menlo, Monaco, Consolas, \"Roboto Mono\", \"Ubuntu Mono\", \"Lucida Console\", \"Courier New\", monospace",
37526
38524
  "scope": "default",
37527
38525
  "line": {
37528
- "start": 241,
37529
- "end": 241
38526
+ "start": 132,
38527
+ "end": 132
37530
38528
  }
37531
38529
  },
37532
38530
  "group": [
@@ -37541,8 +38539,8 @@
37541
38539
  {
37542
38540
  "description": "Font family across all components.\n",
37543
38541
  "commentRange": {
37544
- "start": 243,
37545
- "end": 244
38542
+ "start": 134,
38543
+ "end": 135
37546
38544
  },
37547
38545
  "context": {
37548
38546
  "type": "variable",
@@ -37550,8 +38548,8 @@
37550
38548
  "value": "inherit",
37551
38549
  "scope": "default",
37552
38550
  "line": {
37553
- "start": 245,
37554
- "end": 245
38551
+ "start": 136,
38552
+ "end": 136
37555
38553
  }
37556
38554
  },
37557
38555
  "group": [
@@ -37566,8 +38564,8 @@
37566
38564
  {
37567
38565
  "description": "Line height used along with $kendo-font-size.\n",
37568
38566
  "commentRange": {
37569
- "start": 247,
37570
- "end": 248
38567
+ "start": 138,
38568
+ "end": 139
37571
38569
  },
37572
38570
  "context": {
37573
38571
  "type": "variable",
@@ -37575,8 +38573,8 @@
37575
38573
  "value": "k-math-div( 20, 14 )",
37576
38574
  "scope": "default",
37577
38575
  "line": {
37578
- "start": 249,
37579
- "end": 249
38576
+ "start": 140,
38577
+ "end": 140
37580
38578
  }
37581
38579
  },
37582
38580
  "group": [
@@ -37591,8 +38589,8 @@
37591
38589
  {
37592
38590
  "description": "Border radius for all components.\n",
37593
38591
  "commentRange": {
37594
- "start": 94,
37595
- "end": 94
38592
+ "start": 82,
38593
+ "end": 82
37596
38594
  },
37597
38595
  "context": {
37598
38596
  "type": "variable",
@@ -37600,8 +38598,8 @@
37600
38598
  "value": "k-map-get( $kendo-spacing, 1 )",
37601
38599
  "scope": "default",
37602
38600
  "line": {
37603
- "start": 95,
37604
- "end": 95
38601
+ "start": 83,
38602
+ "end": 83
37605
38603
  }
37606
38604
  },
37607
38605
  "access": "public",
@@ -37616,8 +38614,8 @@
37616
38614
  {
37617
38615
  "description": "The background of the components' chrome area.\n",
37618
38616
  "commentRange": {
37619
- "start": 286,
37620
- "end": 286
38617
+ "start": 306,
38618
+ "end": 306
37621
38619
  },
37622
38620
  "context": {
37623
38621
  "type": "variable",
@@ -37625,8 +38623,8 @@
37625
38623
  "value": "#f0f0f0",
37626
38624
  "scope": "default",
37627
38625
  "line": {
37628
- "start": 287,
37629
- "end": 287
38626
+ "start": 307,
38627
+ "end": 307
37630
38628
  }
37631
38629
  },
37632
38630
  "access": "public",
@@ -37634,15 +38632,15 @@
37634
38632
  "undefined"
37635
38633
  ],
37636
38634
  "file": {
37637
- "path": "_variables.scss",
37638
- "name": "_variables.scss"
38635
+ "path": "core/color-system/_swatch.scss",
38636
+ "name": "_swatch.scss"
37639
38637
  }
37640
38638
  },
37641
38639
  {
37642
38640
  "description": "The text color of the components' chrome area.\n",
37643
38641
  "commentRange": {
37644
- "start": 288,
37645
- "end": 288
38642
+ "start": 308,
38643
+ "end": 308
37646
38644
  },
37647
38645
  "context": {
37648
38646
  "type": "variable",
@@ -37650,8 +38648,8 @@
37650
38648
  "value": "$kendo-body-text",
37651
38649
  "scope": "default",
37652
38650
  "line": {
37653
- "start": 289,
37654
- "end": 289
38651
+ "start": 309,
38652
+ "end": 309
37655
38653
  }
37656
38654
  },
37657
38655
  "access": "public",
@@ -37659,15 +38657,15 @@
37659
38657
  "undefined"
37660
38658
  ],
37661
38659
  "file": {
37662
- "path": "_variables.scss",
37663
- "name": "_variables.scss"
38660
+ "path": "core/color-system/_swatch.scss",
38661
+ "name": "_swatch.scss"
37664
38662
  }
37665
38663
  },
37666
38664
  {
37667
38665
  "description": "The border color of the components' chrome area.\n",
37668
38666
  "commentRange": {
37669
- "start": 290,
37670
- "end": 290
38667
+ "start": 310,
38668
+ "end": 310
37671
38669
  },
37672
38670
  "context": {
37673
38671
  "type": "variable",
@@ -37675,8 +38673,8 @@
37675
38673
  "value": "k-try-shade( $kendo-base-bg, 2 )",
37676
38674
  "scope": "default",
37677
38675
  "line": {
37678
- "start": 291,
37679
- "end": 291
38676
+ "start": 311,
38677
+ "end": 311
37680
38678
  }
37681
38679
  },
37682
38680
  "access": "public",
@@ -37684,15 +38682,15 @@
37684
38682
  "undefined"
37685
38683
  ],
37686
38684
  "file": {
37687
- "path": "_variables.scss",
37688
- "name": "_variables.scss"
38685
+ "path": "core/color-system/_swatch.scss",
38686
+ "name": "_swatch.scss"
37689
38687
  }
37690
38688
  },
37691
38689
  {
37692
38690
  "description": "The gradient background of the components' chrome area.\n",
37693
38691
  "commentRange": {
37694
- "start": 292,
37695
- "end": 292
38692
+ "start": 312,
38693
+ "end": 312
37696
38694
  },
37697
38695
  "context": {
37698
38696
  "type": "variable",
@@ -37700,8 +38698,8 @@
37700
38698
  "value": "rgba( white, .1 ), rgba( white, 0 )",
37701
38699
  "scope": "default",
37702
38700
  "line": {
37703
- "start": 293,
37704
- "end": 293
38701
+ "start": 313,
38702
+ "end": 313
37705
38703
  }
37706
38704
  },
37707
38705
  "access": "public",
@@ -37709,15 +38707,15 @@
37709
38707
  "undefined"
37710
38708
  ],
37711
38709
  "file": {
37712
- "path": "_variables.scss",
37713
- "name": "_variables.scss"
38710
+ "path": "core/color-system/_swatch.scss",
38711
+ "name": "_swatch.scss"
37714
38712
  }
37715
38713
  },
37716
38714
  {
37717
38715
  "description": "The background of hovered items.\n",
37718
38716
  "commentRange": {
37719
- "start": 308,
37720
- "end": 308
38717
+ "start": 328,
38718
+ "end": 328
37721
38719
  },
37722
38720
  "context": {
37723
38721
  "type": "variable",
@@ -37725,8 +38723,8 @@
37725
38723
  "value": "k-try-shade( $kendo-base-bg, 1 )",
37726
38724
  "scope": "default",
37727
38725
  "line": {
37728
- "start": 309,
37729
- "end": 309
38726
+ "start": 329,
38727
+ "end": 329
37730
38728
  }
37731
38729
  },
37732
38730
  "access": "public",
@@ -37734,15 +38732,15 @@
37734
38732
  "undefined"
37735
38733
  ],
37736
38734
  "file": {
37737
- "path": "_variables.scss",
37738
- "name": "_variables.scss"
38735
+ "path": "core/color-system/_swatch.scss",
38736
+ "name": "_swatch.scss"
37739
38737
  }
37740
38738
  },
37741
38739
  {
37742
38740
  "description": "The text color of hovered items.\n",
37743
38741
  "commentRange": {
37744
- "start": 310,
37745
- "end": 310
38742
+ "start": 330,
38743
+ "end": 330
37746
38744
  },
37747
38745
  "context": {
37748
38746
  "type": "variable",
@@ -37750,8 +38748,8 @@
37750
38748
  "value": "$kendo-base-text",
37751
38749
  "scope": "default",
37752
38750
  "line": {
37753
- "start": 311,
37754
- "end": 311
38751
+ "start": 331,
38752
+ "end": 331
37755
38753
  }
37756
38754
  },
37757
38755
  "access": "public",
@@ -37759,15 +38757,15 @@
37759
38757
  "undefined"
37760
38758
  ],
37761
38759
  "file": {
37762
- "path": "_variables.scss",
37763
- "name": "_variables.scss"
38760
+ "path": "core/color-system/_swatch.scss",
38761
+ "name": "_swatch.scss"
37764
38762
  }
37765
38763
  },
37766
38764
  {
37767
38765
  "description": "The border color of hovered items.\n",
37768
38766
  "commentRange": {
37769
- "start": 312,
37770
- "end": 312
38767
+ "start": 332,
38768
+ "end": 332
37771
38769
  },
37772
38770
  "context": {
37773
38771
  "type": "variable",
@@ -37775,8 +38773,8 @@
37775
38773
  "value": "k-try-shade( $kendo-hover-bg, 2 )",
37776
38774
  "scope": "default",
37777
38775
  "line": {
37778
- "start": 313,
37779
- "end": 313
38776
+ "start": 333,
38777
+ "end": 333
37780
38778
  }
37781
38779
  },
37782
38780
  "access": "public",
@@ -37784,15 +38782,15 @@
37784
38782
  "undefined"
37785
38783
  ],
37786
38784
  "file": {
37787
- "path": "_variables.scss",
37788
- "name": "_variables.scss"
38785
+ "path": "core/color-system/_swatch.scss",
38786
+ "name": "_swatch.scss"
37789
38787
  }
37790
38788
  },
37791
38789
  {
37792
38790
  "description": "The gradient background of hovered items.\n",
37793
38791
  "commentRange": {
37794
- "start": 314,
37795
- "end": 314
38792
+ "start": 334,
38793
+ "end": 334
37796
38794
  },
37797
38795
  "context": {
37798
38796
  "type": "variable",
@@ -37800,8 +38798,8 @@
37800
38798
  "value": "$kendo-base-gradient",
37801
38799
  "scope": "default",
37802
38800
  "line": {
37803
- "start": 315,
37804
- "end": 315
38801
+ "start": 335,
38802
+ "end": 335
37805
38803
  }
37806
38804
  },
37807
38805
  "access": "public",
@@ -37809,15 +38807,15 @@
37809
38807
  "undefined"
37810
38808
  ],
37811
38809
  "file": {
37812
- "path": "_variables.scss",
37813
- "name": "_variables.scss"
38810
+ "path": "core/color-system/_swatch.scss",
38811
+ "name": "_swatch.scss"
37814
38812
  }
37815
38813
  },
37816
38814
  {
37817
38815
  "description": "The background of selected items.\n",
37818
38816
  "commentRange": {
37819
- "start": 317,
37820
- "end": 317
38817
+ "start": 337,
38818
+ "end": 337
37821
38819
  },
37822
38820
  "context": {
37823
38821
  "type": "variable",
@@ -37825,8 +38823,8 @@
37825
38823
  "value": "$kendo-color-primary",
37826
38824
  "scope": "default",
37827
38825
  "line": {
37828
- "start": 318,
37829
- "end": 318
38826
+ "start": 338,
38827
+ "end": 338
37830
38828
  }
37831
38829
  },
37832
38830
  "access": "public",
@@ -37834,15 +38832,15 @@
37834
38832
  "undefined"
37835
38833
  ],
37836
38834
  "file": {
37837
- "path": "_variables.scss",
37838
- "name": "_variables.scss"
38835
+ "path": "core/color-system/_swatch.scss",
38836
+ "name": "_swatch.scss"
37839
38837
  }
37840
38838
  },
37841
38839
  {
37842
38840
  "description": "The text color of selected items.\n",
37843
38841
  "commentRange": {
37844
- "start": 319,
37845
- "end": 319
38842
+ "start": 339,
38843
+ "end": 339
37846
38844
  },
37847
38845
  "context": {
37848
38846
  "type": "variable",
@@ -37850,8 +38848,8 @@
37850
38848
  "value": "k-contrast-legacy( $kendo-selected-bg )",
37851
38849
  "scope": "default",
37852
38850
  "line": {
37853
- "start": 320,
37854
- "end": 320
38851
+ "start": 340,
38852
+ "end": 340
37855
38853
  }
37856
38854
  },
37857
38855
  "access": "public",
@@ -37859,15 +38857,15 @@
37859
38857
  "undefined"
37860
38858
  ],
37861
38859
  "file": {
37862
- "path": "_variables.scss",
37863
- "name": "_variables.scss"
38860
+ "path": "core/color-system/_swatch.scss",
38861
+ "name": "_swatch.scss"
37864
38862
  }
37865
38863
  },
37866
38864
  {
37867
38865
  "description": "The border color of selected items.\n",
37868
38866
  "commentRange": {
37869
- "start": 321,
37870
- "end": 321
38867
+ "start": 341,
38868
+ "end": 341
37871
38869
  },
37872
38870
  "context": {
37873
38871
  "type": "variable",
@@ -37875,8 +38873,8 @@
37875
38873
  "value": "k-try-shade( $kendo-selected-bg, 2 )",
37876
38874
  "scope": "default",
37877
38875
  "line": {
37878
- "start": 322,
37879
- "end": 322
38876
+ "start": 342,
38877
+ "end": 342
37880
38878
  }
37881
38879
  },
37882
38880
  "access": "public",
@@ -37884,15 +38882,15 @@
37884
38882
  "undefined"
37885
38883
  ],
37886
38884
  "file": {
37887
- "path": "_variables.scss",
37888
- "name": "_variables.scss"
38885
+ "path": "core/color-system/_swatch.scss",
38886
+ "name": "_swatch.scss"
37889
38887
  }
37890
38888
  },
37891
38889
  {
37892
38890
  "description": "The gradient background of selected items.\n",
37893
38891
  "commentRange": {
37894
- "start": 323,
37895
- "end": 323
38892
+ "start": 343,
38893
+ "end": 343
37896
38894
  },
37897
38895
  "context": {
37898
38896
  "type": "variable",
@@ -37900,8 +38898,8 @@
37900
38898
  "value": "$kendo-base-gradient",
37901
38899
  "scope": "default",
37902
38900
  "line": {
37903
- "start": 324,
37904
- "end": 324
38901
+ "start": 344,
38902
+ "end": 344
37905
38903
  }
37906
38904
  },
37907
38905
  "access": "public",
@@ -37909,8 +38907,133 @@
37909
38907
  "undefined"
37910
38908
  ],
37911
38909
  "file": {
37912
- "path": "_variables.scss",
37913
- "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"
37914
39037
  }
37915
39038
  },
37916
39039
  {