@progress/kendo-theme-default 7.1.0-dev.8 → 7.1.0-dev.9

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 (83) hide show
  1. package/dist/all.css +50 -18
  2. package/dist/all.scss +1463 -581
  3. package/dist/meta/sassdoc-data.json +1450 -1504
  4. package/dist/meta/sassdoc-raw-data.json +683 -708
  5. package/dist/meta/variables.json +216 -160
  6. package/lib/swatches/default-blue.json +1 -1
  7. package/lib/swatches/default-dataviz-v4.json +1 -1
  8. package/lib/swatches/default-green.json +1 -1
  9. package/lib/swatches/default-main-dark.json +1 -1
  10. package/lib/swatches/default-main.json +1 -1
  11. package/lib/swatches/default-nordic.json +1 -1
  12. package/lib/swatches/default-ocean-blue-a11y.json +1 -1
  13. package/lib/swatches/default-ocean-blue.json +1 -1
  14. package/lib/swatches/default-orange.json +1 -1
  15. package/lib/swatches/default-purple.json +1 -1
  16. package/lib/swatches/default-turquoise.json +1 -1
  17. package/lib/swatches/default-urban.json +1 -1
  18. package/package.json +4 -4
  19. package/scss/_variables.scss +1 -222
  20. package/scss/adaptive/_variables.scss +1 -1
  21. package/scss/appbar/_theme.scss +1 -1
  22. package/scss/appbar/_variables.scss +2 -2
  23. package/scss/avatar/_theme.scss +1 -1
  24. package/scss/badge/_theme.scss +1 -1
  25. package/scss/bottom-navigation/_theme.scss +5 -5
  26. package/scss/button/_theme.scss +74 -30
  27. package/scss/button/_variables.scss +10 -10
  28. package/scss/calendar/_theme.scss +1 -1
  29. package/scss/card/_layout.scss +4 -0
  30. package/scss/card/_theme.scss +3 -3
  31. package/scss/chat/_variables.scss +1 -1
  32. package/scss/checkbox/_variables.scss +2 -2
  33. package/scss/chip/_theme.scss +24 -22
  34. package/scss/chip/_variables.scss +5 -5
  35. package/scss/core/_index.scss +6 -0
  36. package/scss/core/color-system/_palettes.scss +256 -0
  37. package/scss/core/color-system/_swatch-legacy.scss +62 -0
  38. package/scss/core/color-system/_swatch.scss +397 -0
  39. package/scss/dataviz/_layout.scss +2 -2
  40. package/scss/dataviz/_variables.scss +42 -42
  41. package/scss/dialog/_theme.scss +1 -1
  42. package/scss/dock-manager/_variables.scss +1 -1
  43. package/scss/dropzone/_variables.scss +1 -1
  44. package/scss/editor/_variables.scss +1 -1
  45. package/scss/fab/_theme.scss +15 -15
  46. package/scss/filemanager/_layout.scss +5 -0
  47. package/scss/filemanager/_variables.scss +2 -2
  48. package/scss/forms/_variables.scss +1 -1
  49. package/scss/gantt/_layout.scss +5 -5
  50. package/scss/gantt/_variables.scss +10 -10
  51. package/scss/grid/_layout.scss +10 -0
  52. package/scss/grid/_theme.scss +54 -6
  53. package/scss/grid/_variables.scss +10 -7
  54. package/scss/input/_variables.scss +8 -8
  55. package/scss/list/_theme.scss +1 -1
  56. package/scss/listview/_variables.scss +1 -1
  57. package/scss/map/_variables.scss +1 -1
  58. package/scss/mediaplayer/_theme.scss +1 -1
  59. package/scss/mediaplayer/_variables.scss +1 -1
  60. package/scss/messagebox/_theme.scss +13 -5
  61. package/scss/notification/_variables.scss +1 -1
  62. package/scss/panelbar/_variables.scss +4 -4
  63. package/scss/pivotgrid/_variables.scss +5 -5
  64. package/scss/progressbar/_theme.scss +1 -1
  65. package/scss/progressbar/_variables.scss +3 -3
  66. package/scss/scheduler/_theme.scss +3 -3
  67. package/scss/scheduler/_variables.scss +4 -4
  68. package/scss/signature/_variables.scss +1 -1
  69. package/scss/skeleton/_variables.scss +2 -5
  70. package/scss/slider/_variables.scss +6 -6
  71. package/scss/splitter/_variables.scss +1 -1
  72. package/scss/spreadsheet/_variables.scss +4 -4
  73. package/scss/stepper/_layout.scss +11 -0
  74. package/scss/stepper/_theme.scss +51 -15
  75. package/scss/stepper/_variables.scss +8 -8
  76. package/scss/switch/_theme.scss +2 -2
  77. package/scss/switch/_variables.scss +4 -4
  78. package/scss/table/_variables.scss +3 -4
  79. package/scss/taskboard/_variables.scss +7 -7
  80. package/scss/timeline/_variables.scss +4 -4
  81. package/scss/tooltip/_variables.scss +4 -4
  82. package/scss/window/_theme.scss +1 -1
  83. 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-legacy( $kendo-color-light )",
286
+ "value": "if($kendo-enable-color-system, k-color( on-light ), k-contrast-legacy( $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-legacy( $kendo-color-dark )",
336
+ "value": "if($kendo-enable-color-system, k-color( on-dark ), k-contrast-legacy( $kendo-color-dark ))",
337
337
  "scope": "default",
338
338
  "line": {
339
339
  "start": 47,
@@ -3683,7 +3683,7 @@
3683
3683
  "context": {
3684
3684
  "type": "variable",
3685
3685
  "name": "kendo-button-theme-colors",
3686
- "value": "k-map-merge(\n $kendo-theme-colors,\n ( \"base\": #f5f5f5 )\n)",
3686
+ "value": "k-map-merge(\n $kendo-theme-colors,\n ( \"base\": if($kendo-enable-color-system, k-color( base ), #f5f5f5) )\n)",
3687
3687
  "scope": "default",
3688
3688
  "line": {
3689
3689
  "start": 106,
@@ -3708,7 +3708,7 @@
3708
3708
  "context": {
3709
3709
  "type": "variable",
3710
3710
  "name": "kendo-button-bg",
3711
- "value": "#f5f5f5",
3711
+ "value": "if($kendo-enable-color-system, k-color( base ), #f5f5f5)",
3712
3712
  "scope": "default",
3713
3713
  "line": {
3714
3714
  "start": 113,
@@ -3733,7 +3733,7 @@
3733
3733
  "context": {
3734
3734
  "type": "variable",
3735
3735
  "name": "kendo-button-text",
3736
- "value": "#424242",
3736
+ "value": "if($kendo-enable-color-system, k-color( on-base ), #424242)",
3737
3737
  "scope": "default",
3738
3738
  "line": {
3739
3739
  "start": 116,
@@ -3758,7 +3758,7 @@
3758
3758
  "context": {
3759
3759
  "type": "variable",
3760
3760
  "name": "kendo-button-border",
3761
- "value": "rgba( black, .08 )",
3761
+ "value": "if($kendo-enable-color-system, k-color( border ), rgba( black, .08 ))",
3762
3762
  "scope": "default",
3763
3763
  "line": {
3764
3764
  "start": 119,
@@ -3783,7 +3783,7 @@
3783
3783
  "context": {
3784
3784
  "type": "variable",
3785
3785
  "name": "kendo-button-gradient",
3786
- "value": "rgba( black, 0 ), rgba( black, .02 )",
3786
+ "value": "if($kendo-enable-color-system, null, (rgba( black, 0 ), rgba( black, .02 )))",
3787
3787
  "scope": "default",
3788
3788
  "line": {
3789
3789
  "start": 122,
@@ -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, .5 )",
3836
+ "value": "if($kendo-enable-color-system, k-color( base-hover ), k-try-shade( $kendo-button-bg, .5 ))",
3837
3837
  "scope": "default",
3838
3838
  "line": {
3839
3839
  "start": 129,
@@ -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, 1.5 )",
3961
+ "value": "if($kendo-enable-color-system, k-color( base-active ), k-try-shade( $kendo-button-bg, 1.5 ))",
3962
3962
  "scope": "default",
3963
3963
  "line": {
3964
3964
  "start": 145,
@@ -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 0 2px rgba( $kendo-button-border, .08 )",
4311
+ "value": "0 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .08), rgba( $kendo-button-border, .08 ))",
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": "#ffe162",
6361
+ "value": "if($kendo-enable-color-system, k-color( series-b ), #ffe162)",
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": "#4cd180",
6386
+ "value": "if($kendo-enable-color-system, k-color( series-c ), #4cd180)",
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": "#4b5ffa",
6411
+ "value": "if($kendo-enable-color-system, k-color( series-d ), #4b5ffa)",
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": "#ac58ff",
6436
+ "value": "if($kendo-enable-color-system, k-color( series-e ), #ac58ff)",
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": "#ff5892",
6461
+ "value": "if($kendo-enable-color-system, k-color( series-f ), #ff5892)",
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,
@@ -8233,7 +8233,7 @@
8233
8233
  "context": {
8234
8234
  "type": "variable",
8235
8235
  "name": "kendo-chip-base-bg",
8236
- "value": "$kendo-button-bg",
8236
+ "value": "if($kendo-enable-color-system, k-color( base-subtle ), $kendo-button-bg)",
8237
8237
  "scope": "default",
8238
8238
  "line": {
8239
8239
  "start": 95,
@@ -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, .08 ) )",
8361
+ "value": "0 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .08 ), if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .08 ) ))",
8362
8362
  "scope": "default",
8363
8363
  "line": {
8364
8364
  "start": 118,
@@ -8458,7 +8458,7 @@
8458
8458
  "context": {
8459
8459
  "type": "variable",
8460
8460
  "name": "kendo-chip-solid-hover-bg",
8461
- "value": "$kendo-button-hover-bg",
8461
+ "value": "if($kendo-enable-color-system, k-color( base-subtle-hover ), $kendo-button-hover-bg)",
8462
8462
  "scope": "default",
8463
8463
  "line": {
8464
8464
  "start": 132,
@@ -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, .08 ) )",
8636
+ "value": "0 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .08 ), if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .08 ) ))",
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 ), k-contrast-legacy( $kendo-chip-outline-hover-bg ))",
8687
8687
  "scope": "default",
8688
8688
  "line": {
8689
8689
  "start": 162,
@@ -9849,11 +9849,36 @@
9849
9849
  "name": "_variables.scss"
9850
9850
  }
9851
9851
  },
9852
+ {
9853
+ "description": "The global default Colors map.\n",
9854
+ "commentRange": {
9855
+ "start": 177,
9856
+ "end": 178
9857
+ },
9858
+ "context": {
9859
+ "type": "variable",
9860
+ "name": "kendo-colors",
9861
+ "value": "$_default-colors",
9862
+ "scope": "default",
9863
+ "line": {
9864
+ "start": 179,
9865
+ "end": 179
9866
+ }
9867
+ },
9868
+ "group": [
9869
+ "color-system"
9870
+ ],
9871
+ "access": "public",
9872
+ "file": {
9873
+ "path": "core/color-system/_swatch.scss",
9874
+ "name": "_swatch.scss"
9875
+ }
9876
+ },
9852
9877
  {
9853
9878
  "description": "The color that focuses the user attention.\nUsed for primary buttons and for elements of primary importance across the theme.\n",
9854
9879
  "commentRange": {
9855
- "start": 145,
9856
- "end": 148
9880
+ "start": 184,
9881
+ "end": 187
9857
9882
  },
9858
9883
  "context": {
9859
9884
  "type": "variable",
@@ -9861,8 +9886,8 @@
9861
9886
  "value": "#ff6358",
9862
9887
  "scope": "default",
9863
9888
  "line": {
9864
- "start": 149,
9865
- "end": 149
9889
+ "start": 188,
9890
+ "end": 188
9866
9891
  }
9867
9892
  },
9868
9893
  "group": [
@@ -9871,24 +9896,24 @@
9871
9896
  "type": "Color",
9872
9897
  "access": "public",
9873
9898
  "file": {
9874
- "path": "_variables.scss",
9875
- "name": "_variables.scss"
9899
+ "path": "core/color-system/_swatch.scss",
9900
+ "name": "_swatch.scss"
9876
9901
  }
9877
9902
  },
9878
9903
  {
9879
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",
9880
9905
  "commentRange": {
9881
- "start": 153,
9882
- "end": 156
9906
+ "start": 191,
9907
+ "end": 194
9883
9908
  },
9884
9909
  "context": {
9885
9910
  "type": "variable",
9886
9911
  "name": "kendo-color-primary-contrast",
9887
- "value": "k-contrast-legacy( $kendo-color-primary )",
9912
+ "value": "k-contrast-legacy($kendo-color-primary)",
9888
9913
  "scope": "default",
9889
9914
  "line": {
9890
- "start": 157,
9891
- "end": 157
9915
+ "start": 195,
9916
+ "end": 195
9892
9917
  }
9893
9918
  },
9894
9919
  "group": [
@@ -9897,15 +9922,15 @@
9897
9922
  "type": "Color",
9898
9923
  "access": "public",
9899
9924
  "file": {
9900
- "path": "_variables.scss",
9901
- "name": "_variables.scss"
9925
+ "path": "core/color-system/_swatch.scss",
9926
+ "name": "_swatch.scss"
9902
9927
  }
9903
9928
  },
9904
9929
  {
9905
9930
  "description": "The secondary color of the theme.\n",
9906
9931
  "commentRange": {
9907
- "start": 159,
9908
- "end": 161
9932
+ "start": 197,
9933
+ "end": 199
9909
9934
  },
9910
9935
  "context": {
9911
9936
  "type": "variable",
@@ -9913,8 +9938,8 @@
9913
9938
  "value": "#666666",
9914
9939
  "scope": "default",
9915
9940
  "line": {
9916
- "start": 162,
9917
- "end": 162
9941
+ "start": 200,
9942
+ "end": 200
9918
9943
  }
9919
9944
  },
9920
9945
  "group": [
@@ -9923,24 +9948,24 @@
9923
9948
  "type": "Color",
9924
9949
  "access": "public",
9925
9950
  "file": {
9926
- "path": "_variables.scss",
9927
- "name": "_variables.scss"
9951
+ "path": "core/color-system/_swatch.scss",
9952
+ "name": "_swatch.scss"
9928
9953
  }
9929
9954
  },
9930
9955
  {
9931
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",
9932
9957
  "commentRange": {
9933
- "start": 166,
9934
- "end": 169
9958
+ "start": 204,
9959
+ "end": 207
9935
9960
  },
9936
9961
  "context": {
9937
9962
  "type": "variable",
9938
9963
  "name": "kendo-color-secondary-contrast",
9939
- "value": "k-contrast-legacy( $kendo-color-secondary )",
9964
+ "value": "k-contrast-legacy($kendo-color-secondary)",
9940
9965
  "scope": "default",
9941
9966
  "line": {
9942
- "start": 170,
9943
- "end": 170
9967
+ "start": 208,
9968
+ "end": 208
9944
9969
  }
9945
9970
  },
9946
9971
  "group": [
@@ -9949,15 +9974,15 @@
9949
9974
  "type": "Color",
9950
9975
  "access": "public",
9951
9976
  "file": {
9952
- "path": "_variables.scss",
9953
- "name": "_variables.scss"
9977
+ "path": "core/color-system/_swatch.scss",
9978
+ "name": "_swatch.scss"
9954
9979
  }
9955
9980
  },
9956
9981
  {
9957
9982
  "description": "The tertiary color of the theme.\n",
9958
9983
  "commentRange": {
9959
- "start": 172,
9960
- "end": 174
9984
+ "start": 210,
9985
+ "end": 212
9961
9986
  },
9962
9987
  "context": {
9963
9988
  "type": "variable",
@@ -9965,8 +9990,8 @@
9965
9990
  "value": "#03a9f4",
9966
9991
  "scope": "default",
9967
9992
  "line": {
9968
- "start": 175,
9969
- "end": 175
9993
+ "start": 213,
9994
+ "end": 213
9970
9995
  }
9971
9996
  },
9972
9997
  "group": [
@@ -9975,24 +10000,24 @@
9975
10000
  "type": "Color",
9976
10001
  "access": "public",
9977
10002
  "file": {
9978
- "path": "_variables.scss",
9979
- "name": "_variables.scss"
10003
+ "path": "core/color-system/_swatch.scss",
10004
+ "name": "_swatch.scss"
9980
10005
  }
9981
10006
  },
9982
10007
  {
9983
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",
9984
10009
  "commentRange": {
9985
- "start": 179,
9986
- "end": 182
10010
+ "start": 217,
10011
+ "end": 220
9987
10012
  },
9988
10013
  "context": {
9989
10014
  "type": "variable",
9990
10015
  "name": "kendo-color-tertiary-contrast",
9991
- "value": "k-contrast-legacy( $kendo-color-tertiary )",
10016
+ "value": "k-contrast-legacy($kendo-color-tertiary)",
9992
10017
  "scope": "default",
9993
10018
  "line": {
9994
- "start": 183,
9995
- "end": 183
10019
+ "start": 221,
10020
+ "end": 221
9996
10021
  }
9997
10022
  },
9998
10023
  "group": [
@@ -10001,15 +10026,15 @@
10001
10026
  "type": "Color",
10002
10027
  "access": "public",
10003
10028
  "file": {
10004
- "path": "_variables.scss",
10005
- "name": "_variables.scss"
10029
+ "path": "core/color-system/_swatch.scss",
10030
+ "name": "_swatch.scss"
10006
10031
  }
10007
10032
  },
10008
10033
  {
10009
10034
  "description": "The color for informational messages and states.\n",
10010
10035
  "commentRange": {
10011
- "start": 185,
10012
- "end": 187
10036
+ "start": 223,
10037
+ "end": 225
10013
10038
  },
10014
10039
  "context": {
10015
10040
  "type": "variable",
@@ -10017,8 +10042,8 @@
10017
10042
  "value": "#0058e9",
10018
10043
  "scope": "default",
10019
10044
  "line": {
10020
- "start": 188,
10021
- "end": 188
10045
+ "start": 226,
10046
+ "end": 226
10022
10047
  }
10023
10048
  },
10024
10049
  "group": [
@@ -10027,15 +10052,15 @@
10027
10052
  "type": "Color",
10028
10053
  "access": "public",
10029
10054
  "file": {
10030
- "path": "_variables.scss",
10031
- "name": "_variables.scss"
10055
+ "path": "core/color-system/_swatch.scss",
10056
+ "name": "_swatch.scss"
10032
10057
  }
10033
10058
  },
10034
10059
  {
10035
10060
  "description": "The color for success messages and states.\n",
10036
10061
  "commentRange": {
10037
- "start": 192,
10038
- "end": 194
10062
+ "start": 230,
10063
+ "end": 232
10039
10064
  },
10040
10065
  "context": {
10041
10066
  "type": "variable",
@@ -10043,8 +10068,8 @@
10043
10068
  "value": "#37b400",
10044
10069
  "scope": "default",
10045
10070
  "line": {
10046
- "start": 195,
10047
- "end": 195
10071
+ "start": 233,
10072
+ "end": 233
10048
10073
  }
10049
10074
  },
10050
10075
  "group": [
@@ -10053,15 +10078,15 @@
10053
10078
  "type": "Color",
10054
10079
  "access": "public",
10055
10080
  "file": {
10056
- "path": "_variables.scss",
10057
- "name": "_variables.scss"
10081
+ "path": "core/color-system/_swatch.scss",
10082
+ "name": "_swatch.scss"
10058
10083
  }
10059
10084
  },
10060
10085
  {
10061
10086
  "description": "The color for warning messages and states.\n",
10062
10087
  "commentRange": {
10063
- "start": 199,
10064
- "end": 201
10088
+ "start": 237,
10089
+ "end": 239
10065
10090
  },
10066
10091
  "context": {
10067
10092
  "type": "variable",
@@ -10069,8 +10094,8 @@
10069
10094
  "value": "#ffc000",
10070
10095
  "scope": "default",
10071
10096
  "line": {
10072
- "start": 202,
10073
- "end": 202
10097
+ "start": 240,
10098
+ "end": 240
10074
10099
  }
10075
10100
  },
10076
10101
  "group": [
@@ -10079,15 +10104,15 @@
10079
10104
  "type": "Color",
10080
10105
  "access": "public",
10081
10106
  "file": {
10082
- "path": "_variables.scss",
10083
- "name": "_variables.scss"
10107
+ "path": "core/color-system/_swatch.scss",
10108
+ "name": "_swatch.scss"
10084
10109
  }
10085
10110
  },
10086
10111
  {
10087
10112
  "description": "The color for error messages and states.\n",
10088
10113
  "commentRange": {
10089
- "start": 206,
10090
- "end": 208
10114
+ "start": 244,
10115
+ "end": 246
10091
10116
  },
10092
10117
  "context": {
10093
10118
  "type": "variable",
@@ -10095,8 +10120,8 @@
10095
10120
  "value": "#f31700",
10096
10121
  "scope": "default",
10097
10122
  "line": {
10098
- "start": 209,
10099
- "end": 209
10123
+ "start": 247,
10124
+ "end": 247
10100
10125
  }
10101
10126
  },
10102
10127
  "group": [
@@ -10105,15 +10130,15 @@
10105
10130
  "type": "Color",
10106
10131
  "access": "public",
10107
10132
  "file": {
10108
- "path": "_variables.scss",
10109
- "name": "_variables.scss"
10133
+ "path": "core/color-system/_swatch.scss",
10134
+ "name": "_swatch.scss"
10110
10135
  }
10111
10136
  },
10112
10137
  {
10113
10138
  "description": "The dark color of the theme.\n",
10114
10139
  "commentRange": {
10115
- "start": 213,
10116
- "end": 215
10140
+ "start": 251,
10141
+ "end": 253
10117
10142
  },
10118
10143
  "context": {
10119
10144
  "type": "variable",
@@ -10121,8 +10146,8 @@
10121
10146
  "value": "#424242",
10122
10147
  "scope": "default",
10123
10148
  "line": {
10124
- "start": 216,
10125
- "end": 216
10149
+ "start": 254,
10150
+ "end": 254
10126
10151
  }
10127
10152
  },
10128
10153
  "group": [
@@ -10131,15 +10156,15 @@
10131
10156
  "type": "Color",
10132
10157
  "access": "public",
10133
10158
  "file": {
10134
- "path": "_variables.scss",
10135
- "name": "_variables.scss"
10159
+ "path": "core/color-system/_swatch.scss",
10160
+ "name": "_swatch.scss"
10136
10161
  }
10137
10162
  },
10138
10163
  {
10139
10164
  "description": "The light color of the theme.\n",
10140
10165
  "commentRange": {
10141
- "start": 218,
10142
- "end": 220
10166
+ "start": 256,
10167
+ "end": 258
10143
10168
  },
10144
10169
  "context": {
10145
10170
  "type": "variable",
@@ -10147,8 +10172,8 @@
10147
10172
  "value": "#ebebeb",
10148
10173
  "scope": "default",
10149
10174
  "line": {
10150
- "start": 221,
10151
- "end": 221
10175
+ "start": 259,
10176
+ "end": 259
10152
10177
  }
10153
10178
  },
10154
10179
  "group": [
@@ -10157,24 +10182,24 @@
10157
10182
  "type": "Color",
10158
10183
  "access": "public",
10159
10184
  "file": {
10160
- "path": "_variables.scss",
10161
- "name": "_variables.scss"
10185
+ "path": "core/color-system/_swatch.scss",
10186
+ "name": "_swatch.scss"
10162
10187
  }
10163
10188
  },
10164
10189
  {
10165
10190
  "description": "Inverse color of the theme. Depending on the theme luminance dark or light, it will be light or dark\n",
10166
10191
  "commentRange": {
10167
- "start": 223,
10168
- "end": 224
10192
+ "start": 261,
10193
+ "end": 262
10169
10194
  },
10170
10195
  "context": {
10171
10196
  "type": "variable",
10172
10197
  "name": "kendo-color-inverse",
10173
- "value": "if( $kendo-is-dark-theme, $kendo-color-light, $kendo-color-dark )",
10198
+ "value": "if($kendo-is-dark-theme, $kendo-color-light, $kendo-color-dark)",
10174
10199
  "scope": "default",
10175
10200
  "line": {
10176
- "start": 225,
10177
- "end": 225
10201
+ "start": 263,
10202
+ "end": 263
10178
10203
  }
10179
10204
  },
10180
10205
  "group": [
@@ -10182,8 +10207,8 @@
10182
10207
  ],
10183
10208
  "access": "public",
10184
10209
  "file": {
10185
- "path": "_variables.scss",
10186
- "name": "_variables.scss"
10210
+ "path": "core/color-system/_swatch.scss",
10211
+ "name": "_swatch.scss"
10187
10212
  }
10188
10213
  },
10189
10214
  {
@@ -10989,8 +11014,8 @@
10989
11014
  {
10990
11015
  "description": "Icon size.\n",
10991
11016
  "commentRange": {
10992
- "start": 60,
10993
- "end": 61
11017
+ "start": 57,
11018
+ "end": 58
10994
11019
  },
10995
11020
  "context": {
10996
11021
  "type": "variable",
@@ -10998,8 +11023,8 @@
10998
11023
  "value": "16px",
10999
11024
  "scope": "default",
11000
11025
  "line": {
11001
- "start": 62,
11002
- "end": 62
11026
+ "start": 59,
11027
+ "end": 59
11003
11028
  }
11004
11029
  },
11005
11030
  "group": [
@@ -11014,8 +11039,8 @@
11014
11039
  {
11015
11040
  "description": "xtra small icon size.\n",
11016
11041
  "commentRange": {
11017
- "start": 63,
11018
- "end": 64
11042
+ "start": 60,
11043
+ "end": 61
11019
11044
  },
11020
11045
  "context": {
11021
11046
  "type": "variable",
@@ -11023,8 +11048,8 @@
11023
11048
  "value": "calc( #{$kendo-icon-size} * .75 )",
11024
11049
  "scope": "default",
11025
11050
  "line": {
11026
- "start": 65,
11027
- "end": 65
11051
+ "start": 62,
11052
+ "end": 62
11028
11053
  }
11029
11054
  },
11030
11055
  "group": [
@@ -11039,8 +11064,8 @@
11039
11064
  {
11040
11065
  "description": "Small icon size.\n",
11041
11066
  "commentRange": {
11042
- "start": 66,
11043
- "end": 67
11067
+ "start": 63,
11068
+ "end": 64
11044
11069
  },
11045
11070
  "context": {
11046
11071
  "type": "variable",
@@ -11048,8 +11073,8 @@
11048
11073
  "value": "calc( #{$kendo-icon-size} * .875 )",
11049
11074
  "scope": "default",
11050
11075
  "line": {
11051
- "start": 68,
11052
- "end": 68
11076
+ "start": 65,
11077
+ "end": 65
11053
11078
  }
11054
11079
  },
11055
11080
  "group": [
@@ -11064,8 +11089,8 @@
11064
11089
  {
11065
11090
  "description": "Medium icon size.\n",
11066
11091
  "commentRange": {
11067
- "start": 69,
11068
- "end": 70
11092
+ "start": 66,
11093
+ "end": 67
11069
11094
  },
11070
11095
  "context": {
11071
11096
  "type": "variable",
@@ -11073,8 +11098,8 @@
11073
11098
  "value": "$kendo-icon-size",
11074
11099
  "scope": "default",
11075
11100
  "line": {
11076
- "start": 71,
11077
- "end": 71
11101
+ "start": 68,
11102
+ "end": 68
11078
11103
  }
11079
11104
  },
11080
11105
  "group": [
@@ -11089,8 +11114,8 @@
11089
11114
  {
11090
11115
  "description": "Large icon size.\n",
11091
11116
  "commentRange": {
11092
- "start": 72,
11093
- "end": 73
11117
+ "start": 69,
11118
+ "end": 70
11094
11119
  },
11095
11120
  "context": {
11096
11121
  "type": "variable",
@@ -11098,8 +11123,8 @@
11098
11123
  "value": "calc( #{$kendo-icon-size} * 1.25 )",
11099
11124
  "scope": "default",
11100
11125
  "line": {
11101
- "start": 74,
11102
- "end": 74
11126
+ "start": 71,
11127
+ "end": 71
11103
11128
  }
11104
11129
  },
11105
11130
  "group": [
@@ -11114,8 +11139,8 @@
11114
11139
  {
11115
11140
  "description": "Extra large icon size.\n",
11116
11141
  "commentRange": {
11117
- "start": 75,
11118
- "end": 76
11142
+ "start": 72,
11143
+ "end": 73
11119
11144
  },
11120
11145
  "context": {
11121
11146
  "type": "variable",
@@ -11123,8 +11148,8 @@
11123
11148
  "value": "calc( #{$kendo-icon-size} * 1.5 )",
11124
11149
  "scope": "default",
11125
11150
  "line": {
11126
- "start": 77,
11127
- "end": 77
11151
+ "start": 74,
11152
+ "end": 74
11128
11153
  }
11129
11154
  },
11130
11155
  "group": [
@@ -11139,8 +11164,8 @@
11139
11164
  {
11140
11165
  "description": "Double extra large icon size.\n",
11141
11166
  "commentRange": {
11142
- "start": 78,
11143
- "end": 79
11167
+ "start": 75,
11168
+ "end": 76
11144
11169
  },
11145
11170
  "context": {
11146
11171
  "type": "variable",
@@ -11148,8 +11173,8 @@
11148
11173
  "value": "calc( #{$kendo-icon-size} * 2 )",
11149
11174
  "scope": "default",
11150
11175
  "line": {
11151
- "start": 80,
11152
- "end": 80
11176
+ "start": 77,
11177
+ "end": 77
11153
11178
  }
11154
11179
  },
11155
11180
  "group": [
@@ -11164,8 +11189,8 @@
11164
11189
  {
11165
11190
  "description": "Triple extra large icon size.\n",
11166
11191
  "commentRange": {
11167
- "start": 81,
11168
- "end": 82
11192
+ "start": 78,
11193
+ "end": 79
11169
11194
  },
11170
11195
  "context": {
11171
11196
  "type": "variable",
@@ -11173,8 +11198,8 @@
11173
11198
  "value": "calc( #{$kendo-icon-size} * 3 )",
11174
11199
  "scope": "default",
11175
11200
  "line": {
11176
- "start": 83,
11177
- "end": 83
11201
+ "start": 80,
11202
+ "end": 80
11178
11203
  }
11179
11204
  },
11180
11205
  "group": [
@@ -11189,8 +11214,8 @@
11189
11214
  {
11190
11215
  "description": "Horizontal padding.\n",
11191
11216
  "commentRange": {
11192
- "start": 88,
11193
- "end": 89
11217
+ "start": 85,
11218
+ "end": 86
11194
11219
  },
11195
11220
  "context": {
11196
11221
  "type": "variable",
@@ -11198,8 +11223,8 @@
11198
11223
  "value": "8px",
11199
11224
  "scope": "default",
11200
11225
  "line": {
11201
- "start": 90,
11202
- "end": 90
11226
+ "start": 87,
11227
+ "end": 87
11203
11228
  }
11204
11229
  },
11205
11230
  "group": [
@@ -11214,8 +11239,8 @@
11214
11239
  {
11215
11240
  "description": "Vertical padding.\n",
11216
11241
  "commentRange": {
11217
- "start": 91,
11218
- "end": 92
11242
+ "start": 88,
11243
+ "end": 89
11219
11244
  },
11220
11245
  "context": {
11221
11246
  "type": "variable",
@@ -11223,8 +11248,8 @@
11223
11248
  "value": "4px",
11224
11249
  "scope": "default",
11225
11250
  "line": {
11226
- "start": 93,
11227
- "end": 93
11251
+ "start": 90,
11252
+ "end": 90
11228
11253
  }
11229
11254
  },
11230
11255
  "group": [
@@ -11239,8 +11264,8 @@
11239
11264
  {
11240
11265
  "description": "Small horizontal padding.\n",
11241
11266
  "commentRange": {
11242
- "start": 94,
11243
- "end": 95
11267
+ "start": 91,
11268
+ "end": 92
11244
11269
  },
11245
11270
  "context": {
11246
11271
  "type": "variable",
@@ -11248,8 +11273,8 @@
11248
11273
  "value": "k-map-get( $kendo-spacing, 1 )",
11249
11274
  "scope": "default",
11250
11275
  "line": {
11251
- "start": 96,
11252
- "end": 96
11276
+ "start": 93,
11277
+ "end": 93
11253
11278
  }
11254
11279
  },
11255
11280
  "group": [
@@ -11264,8 +11289,8 @@
11264
11289
  {
11265
11290
  "description": "Small vertical padding.\n",
11266
11291
  "commentRange": {
11267
- "start": 97,
11268
- "end": 98
11292
+ "start": 94,
11293
+ "end": 95
11269
11294
  },
11270
11295
  "context": {
11271
11296
  "type": "variable",
@@ -11273,8 +11298,8 @@
11273
11298
  "value": "k-map-get( $kendo-spacing, 0.5 )",
11274
11299
  "scope": "default",
11275
11300
  "line": {
11276
- "start": 99,
11277
- "end": 99
11301
+ "start": 96,
11302
+ "end": 96
11278
11303
  }
11279
11304
  },
11280
11305
  "group": [
@@ -11289,8 +11314,8 @@
11289
11314
  {
11290
11315
  "description": "Medium horizontal padding.\n",
11291
11316
  "commentRange": {
11292
- "start": 100,
11293
- "end": 101
11317
+ "start": 97,
11318
+ "end": 98
11294
11319
  },
11295
11320
  "context": {
11296
11321
  "type": "variable",
@@ -11298,8 +11323,8 @@
11298
11323
  "value": "k-map-get( $kendo-spacing, 2 )",
11299
11324
  "scope": "default",
11300
11325
  "line": {
11301
- "start": 102,
11302
- "end": 102
11326
+ "start": 99,
11327
+ "end": 99
11303
11328
  }
11304
11329
  },
11305
11330
  "group": [
@@ -11314,8 +11339,8 @@
11314
11339
  {
11315
11340
  "description": "Medium vertical padding.\n",
11316
11341
  "commentRange": {
11317
- "start": 103,
11318
- "end": 104
11342
+ "start": 100,
11343
+ "end": 101
11319
11344
  },
11320
11345
  "context": {
11321
11346
  "type": "variable",
@@ -11323,8 +11348,8 @@
11323
11348
  "value": "k-map-get( $kendo-spacing, 1 )",
11324
11349
  "scope": "default",
11325
11350
  "line": {
11326
- "start": 105,
11327
- "end": 105
11351
+ "start": 102,
11352
+ "end": 102
11328
11353
  }
11329
11354
  },
11330
11355
  "group": [
@@ -11339,8 +11364,8 @@
11339
11364
  {
11340
11365
  "description": "Large horizontal padding.\n",
11341
11366
  "commentRange": {
11342
- "start": 106,
11343
- "end": 107
11367
+ "start": 103,
11368
+ "end": 104
11344
11369
  },
11345
11370
  "context": {
11346
11371
  "type": "variable",
@@ -11348,8 +11373,8 @@
11348
11373
  "value": "k-map-get( $kendo-spacing, 3 )",
11349
11374
  "scope": "default",
11350
11375
  "line": {
11351
- "start": 108,
11352
- "end": 108
11376
+ "start": 105,
11377
+ "end": 105
11353
11378
  }
11354
11379
  },
11355
11380
  "group": [
@@ -11364,8 +11389,8 @@
11364
11389
  {
11365
11390
  "description": "Large vertical padding.\n",
11366
11391
  "commentRange": {
11367
- "start": 109,
11368
- "end": 110
11392
+ "start": 106,
11393
+ "end": 107
11369
11394
  },
11370
11395
  "context": {
11371
11396
  "type": "variable",
@@ -11373,8 +11398,8 @@
11373
11398
  "value": "k-map-get( $kendo-spacing, 1.5 )",
11374
11399
  "scope": "default",
11375
11400
  "line": {
11376
- "start": 111,
11377
- "end": 111
11401
+ "start": 108,
11402
+ "end": 108
11378
11403
  }
11379
11404
  },
11380
11405
  "group": [
@@ -11389,8 +11414,8 @@
11389
11414
  {
11390
11415
  "description": "Border radius for all components.\n",
11391
11416
  "commentRange": {
11392
- "start": 113,
11393
- "end": 114
11417
+ "start": 110,
11418
+ "end": 111
11394
11419
  },
11395
11420
  "context": {
11396
11421
  "type": "variable",
@@ -11398,8 +11423,8 @@
11398
11423
  "value": "k-map-get( $kendo-spacing, 1 )",
11399
11424
  "scope": "default",
11400
11425
  "line": {
11401
- "start": 115,
11402
- "end": 115
11426
+ "start": 112,
11427
+ "end": 112
11403
11428
  }
11404
11429
  },
11405
11430
  "group": [
@@ -11414,8 +11439,8 @@
11414
11439
  {
11415
11440
  "description": "Small border radius.\n",
11416
11441
  "commentRange": {
11417
- "start": 116,
11418
- "end": 117
11442
+ "start": 113,
11443
+ "end": 114
11419
11444
  },
11420
11445
  "context": {
11421
11446
  "type": "variable",
@@ -11423,8 +11448,8 @@
11423
11448
  "value": "$kendo-border-radius - k-map-get( $kendo-spacing, 0.5 )",
11424
11449
  "scope": "default",
11425
11450
  "line": {
11426
- "start": 118,
11427
- "end": 118
11451
+ "start": 115,
11452
+ "end": 115
11428
11453
  }
11429
11454
  },
11430
11455
  "group": [
@@ -11439,8 +11464,8 @@
11439
11464
  {
11440
11465
  "description": "Medium border radius.\n",
11441
11466
  "commentRange": {
11442
- "start": 119,
11443
- "end": 120
11467
+ "start": 116,
11468
+ "end": 117
11444
11469
  },
11445
11470
  "context": {
11446
11471
  "type": "variable",
@@ -11448,8 +11473,8 @@
11448
11473
  "value": "$kendo-border-radius",
11449
11474
  "scope": "default",
11450
11475
  "line": {
11451
- "start": 121,
11452
- "end": 121
11476
+ "start": 118,
11477
+ "end": 118
11453
11478
  }
11454
11479
  },
11455
11480
  "group": [
@@ -11464,8 +11489,8 @@
11464
11489
  {
11465
11490
  "description": "Large border radius.\n",
11466
11491
  "commentRange": {
11467
- "start": 122,
11468
- "end": 123
11492
+ "start": 119,
11493
+ "end": 120
11469
11494
  },
11470
11495
  "context": {
11471
11496
  "type": "variable",
@@ -11473,8 +11498,8 @@
11473
11498
  "value": "$kendo-border-radius + k-map-get( $kendo-spacing, 0.5 )",
11474
11499
  "scope": "default",
11475
11500
  "line": {
11476
- "start": 124,
11477
- "end": 124
11501
+ "start": 121,
11502
+ "end": 121
11478
11503
  }
11479
11504
  },
11480
11505
  "group": [
@@ -11489,8 +11514,8 @@
11489
11514
  {
11490
11515
  "description": "Background color of the body.\n",
11491
11516
  "commentRange": {
11492
- "start": 323,
11493
- "end": 324
11517
+ "start": 280,
11518
+ "end": 281
11494
11519
  },
11495
11520
  "context": {
11496
11521
  "type": "variable",
@@ -11498,8 +11523,8 @@
11498
11523
  "value": "$kendo-color-white",
11499
11524
  "scope": "default",
11500
11525
  "line": {
11501
- "start": 325,
11502
- "end": 325
11526
+ "start": 282,
11527
+ "end": 282
11503
11528
  }
11504
11529
  },
11505
11530
  "group": [
@@ -11507,15 +11532,15 @@
11507
11532
  ],
11508
11533
  "access": "public",
11509
11534
  "file": {
11510
- "path": "_variables.scss",
11511
- "name": "_variables.scss"
11535
+ "path": "core/color-system/_swatch.scss",
11536
+ "name": "_swatch.scss"
11512
11537
  }
11513
11538
  },
11514
11539
  {
11515
11540
  "description": "Text color of the body.\n",
11516
11541
  "commentRange": {
11517
- "start": 326,
11518
- "end": 327
11542
+ "start": 283,
11543
+ "end": 284
11519
11544
  },
11520
11545
  "context": {
11521
11546
  "type": "variable",
@@ -11523,8 +11548,8 @@
11523
11548
  "value": "#424242",
11524
11549
  "scope": "default",
11525
11550
  "line": {
11526
- "start": 328,
11527
- "end": 328
11551
+ "start": 285,
11552
+ "end": 285
11528
11553
  }
11529
11554
  },
11530
11555
  "group": [
@@ -11532,15 +11557,15 @@
11532
11557
  ],
11533
11558
  "access": "public",
11534
11559
  "file": {
11535
- "path": "_variables.scss",
11536
- "name": "_variables.scss"
11560
+ "path": "core/color-system/_swatch.scss",
11561
+ "name": "_swatch.scss"
11537
11562
  }
11538
11563
  },
11539
11564
  {
11540
11565
  "description": "Subtle text color.\n",
11541
11566
  "commentRange": {
11542
- "start": 330,
11543
- "end": 331
11567
+ "start": 287,
11568
+ "end": 288
11544
11569
  },
11545
11570
  "context": {
11546
11571
  "type": "variable",
@@ -11548,8 +11573,8 @@
11548
11573
  "value": "#666666",
11549
11574
  "scope": "default",
11550
11575
  "line": {
11551
- "start": 332,
11552
- "end": 332
11576
+ "start": 289,
11577
+ "end": 289
11553
11578
  }
11554
11579
  },
11555
11580
  "group": [
@@ -11557,15 +11582,15 @@
11557
11582
  ],
11558
11583
  "access": "public",
11559
11584
  "file": {
11560
- "path": "_variables.scss",
11561
- "name": "_variables.scss"
11585
+ "path": "core/color-system/_swatch.scss",
11586
+ "name": "_swatch.scss"
11562
11587
  }
11563
11588
  },
11564
11589
  {
11565
11590
  "description": "Text color of the links.\n",
11566
11591
  "commentRange": {
11567
- "start": 339,
11568
- "end": 340
11592
+ "start": 296,
11593
+ "end": 297
11569
11594
  },
11570
11595
  "context": {
11571
11596
  "type": "variable",
@@ -11573,8 +11598,8 @@
11573
11598
  "value": "$kendo-color-primary",
11574
11599
  "scope": "default",
11575
11600
  "line": {
11576
- "start": 341,
11577
- "end": 341
11601
+ "start": 298,
11602
+ "end": 298
11578
11603
  }
11579
11604
  },
11580
11605
  "group": [
@@ -11582,15 +11607,15 @@
11582
11607
  ],
11583
11608
  "access": "public",
11584
11609
  "file": {
11585
- "path": "_variables.scss",
11586
- "name": "_variables.scss"
11610
+ "path": "core/color-system/_swatch.scss",
11611
+ "name": "_swatch.scss"
11587
11612
  }
11588
11613
  },
11589
11614
  {
11590
11615
  "description": "Text color of the links on hover.\n",
11591
11616
  "commentRange": {
11592
- "start": 342,
11593
- "end": 343
11617
+ "start": 299,
11618
+ "end": 300
11594
11619
  },
11595
11620
  "context": {
11596
11621
  "type": "variable",
@@ -11598,8 +11623,8 @@
11598
11623
  "value": "$kendo-color-primary-darker",
11599
11624
  "scope": "default",
11600
11625
  "line": {
11601
- "start": 344,
11602
- "end": 344
11626
+ "start": 301,
11627
+ "end": 301
11603
11628
  }
11604
11629
  },
11605
11630
  "group": [
@@ -11607,15 +11632,15 @@
11607
11632
  ],
11608
11633
  "access": "public",
11609
11634
  "file": {
11610
- "path": "_variables.scss",
11611
- "name": "_variables.scss"
11635
+ "path": "core/color-system/_swatch.scss",
11636
+ "name": "_swatch.scss"
11612
11637
  }
11613
11638
  },
11614
11639
  {
11615
11640
  "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",
11616
11641
  "commentRange": {
11617
- "start": 350,
11618
- "end": 352
11642
+ "start": 306,
11643
+ "end": 308
11619
11644
  },
11620
11645
  "context": {
11621
11646
  "type": "variable",
@@ -11623,8 +11648,8 @@
11623
11648
  "value": "$kendo-body-bg",
11624
11649
  "scope": "default",
11625
11650
  "line": {
11626
- "start": 353,
11627
- "end": 353
11651
+ "start": 309,
11652
+ "end": 309
11628
11653
  }
11629
11654
  },
11630
11655
  "group": [
@@ -11632,15 +11657,15 @@
11632
11657
  ],
11633
11658
  "access": "public",
11634
11659
  "file": {
11635
- "path": "_variables.scss",
11636
- "name": "_variables.scss"
11660
+ "path": "core/color-system/_swatch.scss",
11661
+ "name": "_swatch.scss"
11637
11662
  }
11638
11663
  },
11639
11664
  {
11640
11665
  "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",
11641
11666
  "commentRange": {
11642
- "start": 354,
11643
- "end": 356
11667
+ "start": 310,
11668
+ "end": 312
11644
11669
  },
11645
11670
  "context": {
11646
11671
  "type": "variable",
@@ -11648,8 +11673,8 @@
11648
11673
  "value": "$kendo-body-text",
11649
11674
  "scope": "default",
11650
11675
  "line": {
11651
- "start": 357,
11652
- "end": 357
11676
+ "start": 313,
11677
+ "end": 313
11653
11678
  }
11654
11679
  },
11655
11680
  "group": [
@@ -11657,24 +11682,24 @@
11657
11682
  ],
11658
11683
  "access": "public",
11659
11684
  "file": {
11660
- "path": "_variables.scss",
11661
- "name": "_variables.scss"
11685
+ "path": "core/color-system/_swatch.scss",
11686
+ "name": "_swatch.scss"
11662
11687
  }
11663
11688
  },
11664
11689
  {
11665
11690
  "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",
11666
11691
  "commentRange": {
11667
- "start": 358,
11668
- "end": 360
11692
+ "start": 314,
11693
+ "end": 316
11669
11694
  },
11670
11695
  "context": {
11671
11696
  "type": "variable",
11672
11697
  "name": "kendo-component-border",
11673
- "value": "rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 )",
11698
+ "value": "rgba(if($kendo-is-dark-theme, $kendo-color-white, $kendo-color-black), 0.08)",
11674
11699
  "scope": "default",
11675
11700
  "line": {
11676
- "start": 361,
11677
- "end": 361
11701
+ "start": 317,
11702
+ "end": 317
11678
11703
  }
11679
11704
  },
11680
11705
  "group": [
@@ -11682,15 +11707,15 @@
11682
11707
  ],
11683
11708
  "access": "public",
11684
11709
  "file": {
11685
- "path": "_variables.scss",
11686
- "name": "_variables.scss"
11710
+ "path": "core/color-system/_swatch.scss",
11711
+ "name": "_swatch.scss"
11687
11712
  }
11688
11713
  },
11689
11714
  {
11690
11715
  "description": "Background color of the component header.\n",
11691
11716
  "commentRange": {
11692
- "start": 423,
11693
- "end": 424
11717
+ "start": 360,
11718
+ "end": 361
11694
11719
  },
11695
11720
  "context": {
11696
11721
  "type": "variable",
@@ -11698,8 +11723,8 @@
11698
11723
  "value": "$kendo-base-bg",
11699
11724
  "scope": "default",
11700
11725
  "line": {
11701
- "start": 425,
11702
- "end": 425
11726
+ "start": 362,
11727
+ "end": 362
11703
11728
  }
11704
11729
  },
11705
11730
  "group": [
@@ -11707,15 +11732,15 @@
11707
11732
  ],
11708
11733
  "access": "public",
11709
11734
  "file": {
11710
- "path": "_variables.scss",
11711
- "name": "_variables.scss"
11735
+ "path": "core/color-system/_swatch.scss",
11736
+ "name": "_swatch.scss"
11712
11737
  }
11713
11738
  },
11714
11739
  {
11715
11740
  "description": "Text color of the component header.\n",
11716
11741
  "commentRange": {
11717
- "start": 426,
11718
- "end": 427
11742
+ "start": 363,
11743
+ "end": 364
11719
11744
  },
11720
11745
  "context": {
11721
11746
  "type": "variable",
@@ -11723,8 +11748,8 @@
11723
11748
  "value": "$kendo-base-text",
11724
11749
  "scope": "default",
11725
11750
  "line": {
11726
- "start": 428,
11727
- "end": 428
11751
+ "start": 365,
11752
+ "end": 365
11728
11753
  }
11729
11754
  },
11730
11755
  "group": [
@@ -11732,15 +11757,15 @@
11732
11757
  ],
11733
11758
  "access": "public",
11734
11759
  "file": {
11735
- "path": "_variables.scss",
11736
- "name": "_variables.scss"
11760
+ "path": "core/color-system/_swatch.scss",
11761
+ "name": "_swatch.scss"
11737
11762
  }
11738
11763
  },
11739
11764
  {
11740
11765
  "description": "Border color of the component header.\n",
11741
11766
  "commentRange": {
11742
- "start": 429,
11743
- "end": 430
11767
+ "start": 366,
11768
+ "end": 367
11744
11769
  },
11745
11770
  "context": {
11746
11771
  "type": "variable",
@@ -11748,8 +11773,8 @@
11748
11773
  "value": "$kendo-base-border",
11749
11774
  "scope": "default",
11750
11775
  "line": {
11751
- "start": 431,
11752
- "end": 431
11776
+ "start": 368,
11777
+ "end": 368
11753
11778
  }
11754
11779
  },
11755
11780
  "group": [
@@ -11757,15 +11782,15 @@
11757
11782
  ],
11758
11783
  "access": "public",
11759
11784
  "file": {
11760
- "path": "_variables.scss",
11761
- "name": "_variables.scss"
11785
+ "path": "core/color-system/_swatch.scss",
11786
+ "name": "_swatch.scss"
11762
11787
  }
11763
11788
  },
11764
11789
  {
11765
11790
  "description": "Gradient of the component header.\n",
11766
11791
  "commentRange": {
11767
- "start": 432,
11768
- "end": 433
11792
+ "start": 369,
11793
+ "end": 370
11769
11794
  },
11770
11795
  "context": {
11771
11796
  "type": "variable",
@@ -11773,8 +11798,8 @@
11773
11798
  "value": "null",
11774
11799
  "scope": "default",
11775
11800
  "line": {
11776
- "start": 434,
11777
- "end": 434
11801
+ "start": 371,
11802
+ "end": 371
11778
11803
  }
11779
11804
  },
11780
11805
  "group": [
@@ -11782,15 +11807,15 @@
11782
11807
  ],
11783
11808
  "access": "public",
11784
11809
  "file": {
11785
- "path": "_variables.scss",
11786
- "name": "_variables.scss"
11810
+ "path": "core/color-system/_swatch.scss",
11811
+ "name": "_swatch.scss"
11787
11812
  }
11788
11813
  },
11789
11814
  {
11790
11815
  "description": "Background color of the invalid items.\n",
11791
11816
  "commentRange": {
11792
- "start": 437,
11793
- "end": 438
11817
+ "start": 373,
11818
+ "end": 374
11794
11819
  },
11795
11820
  "context": {
11796
11821
  "type": "variable",
@@ -11798,8 +11823,8 @@
11798
11823
  "value": "null",
11799
11824
  "scope": "default",
11800
11825
  "line": {
11801
- "start": 439,
11802
- "end": 439
11826
+ "start": 375,
11827
+ "end": 375
11803
11828
  }
11804
11829
  },
11805
11830
  "group": [
@@ -11807,15 +11832,15 @@
11807
11832
  ],
11808
11833
  "access": "public",
11809
11834
  "file": {
11810
- "path": "_variables.scss",
11811
- "name": "_variables.scss"
11835
+ "path": "core/color-system/_swatch.scss",
11836
+ "name": "_swatch.scss"
11812
11837
  }
11813
11838
  },
11814
11839
  {
11815
11840
  "description": "Text color of the invalid items.\n",
11816
11841
  "commentRange": {
11817
- "start": 440,
11818
- "end": 441
11842
+ "start": 376,
11843
+ "end": 377
11819
11844
  },
11820
11845
  "context": {
11821
11846
  "type": "variable",
@@ -11823,8 +11848,8 @@
11823
11848
  "value": "$kendo-color-error",
11824
11849
  "scope": "default",
11825
11850
  "line": {
11826
- "start": 442,
11827
- "end": 442
11851
+ "start": 378,
11852
+ "end": 378
11828
11853
  }
11829
11854
  },
11830
11855
  "group": [
@@ -11832,15 +11857,15 @@
11832
11857
  ],
11833
11858
  "access": "public",
11834
11859
  "file": {
11835
- "path": "_variables.scss",
11836
- "name": "_variables.scss"
11860
+ "path": "core/color-system/_swatch.scss",
11861
+ "name": "_swatch.scss"
11837
11862
  }
11838
11863
  },
11839
11864
  {
11840
11865
  "description": "Border color of the invalid items.\n",
11841
11866
  "commentRange": {
11842
- "start": 443,
11843
- "end": 444
11867
+ "start": 379,
11868
+ "end": 380
11844
11869
  },
11845
11870
  "context": {
11846
11871
  "type": "variable",
@@ -11848,8 +11873,8 @@
11848
11873
  "value": "$kendo-color-error",
11849
11874
  "scope": "default",
11850
11875
  "line": {
11851
- "start": 445,
11852
- "end": 445
11876
+ "start": 381,
11877
+ "end": 381
11853
11878
  }
11854
11879
  },
11855
11880
  "group": [
@@ -11857,15 +11882,15 @@
11857
11882
  ],
11858
11883
  "access": "public",
11859
11884
  "file": {
11860
- "path": "_variables.scss",
11861
- "name": "_variables.scss"
11885
+ "path": "core/color-system/_swatch.scss",
11886
+ "name": "_swatch.scss"
11862
11887
  }
11863
11888
  },
11864
11889
  {
11865
11890
  "description": "Shadow of the invalid items.\n",
11866
11891
  "commentRange": {
11867
- "start": 446,
11868
- "end": 447
11892
+ "start": 382,
11893
+ "end": 383
11869
11894
  },
11870
11895
  "context": {
11871
11896
  "type": "variable",
@@ -11873,8 +11898,8 @@
11873
11898
  "value": "null",
11874
11899
  "scope": "default",
11875
11900
  "line": {
11876
- "start": 448,
11877
- "end": 448
11901
+ "start": 384,
11902
+ "end": 384
11878
11903
  }
11879
11904
  },
11880
11905
  "group": [
@@ -11882,15 +11907,15 @@
11882
11907
  ],
11883
11908
  "access": "public",
11884
11909
  "file": {
11885
- "path": "_variables.scss",
11886
- "name": "_variables.scss"
11910
+ "path": "core/color-system/_swatch.scss",
11911
+ "name": "_swatch.scss"
11887
11912
  }
11888
11913
  },
11889
11914
  {
11890
11915
  "description": "Background color of the valid items.\n",
11891
11916
  "commentRange": {
11892
- "start": 450,
11893
- "end": 451
11917
+ "start": 386,
11918
+ "end": 387
11894
11919
  },
11895
11920
  "context": {
11896
11921
  "type": "variable",
@@ -11898,8 +11923,8 @@
11898
11923
  "value": "null",
11899
11924
  "scope": "default",
11900
11925
  "line": {
11901
- "start": 452,
11902
- "end": 452
11926
+ "start": 388,
11927
+ "end": 388
11903
11928
  }
11904
11929
  },
11905
11930
  "group": [
@@ -11907,15 +11932,15 @@
11907
11932
  ],
11908
11933
  "access": "public",
11909
11934
  "file": {
11910
- "path": "_variables.scss",
11911
- "name": "_variables.scss"
11935
+ "path": "core/color-system/_swatch.scss",
11936
+ "name": "_swatch.scss"
11912
11937
  }
11913
11938
  },
11914
11939
  {
11915
11940
  "description": "Text color of the valid items.\n",
11916
11941
  "commentRange": {
11917
- "start": 453,
11918
- "end": 454
11942
+ "start": 389,
11943
+ "end": 390
11919
11944
  },
11920
11945
  "context": {
11921
11946
  "type": "variable",
@@ -11923,8 +11948,8 @@
11923
11948
  "value": "$kendo-color-success",
11924
11949
  "scope": "default",
11925
11950
  "line": {
11926
- "start": 455,
11927
- "end": 455
11951
+ "start": 391,
11952
+ "end": 391
11928
11953
  }
11929
11954
  },
11930
11955
  "group": [
@@ -11932,15 +11957,15 @@
11932
11957
  ],
11933
11958
  "access": "public",
11934
11959
  "file": {
11935
- "path": "_variables.scss",
11936
- "name": "_variables.scss"
11960
+ "path": "core/color-system/_swatch.scss",
11961
+ "name": "_swatch.scss"
11937
11962
  }
11938
11963
  },
11939
11964
  {
11940
11965
  "description": "Border color of the valid items.\n",
11941
11966
  "commentRange": {
11942
- "start": 456,
11943
- "end": 457
11967
+ "start": 392,
11968
+ "end": 393
11944
11969
  },
11945
11970
  "context": {
11946
11971
  "type": "variable",
@@ -11948,8 +11973,8 @@
11948
11973
  "value": "$kendo-color-success",
11949
11974
  "scope": "default",
11950
11975
  "line": {
11951
- "start": 458,
11952
- "end": 458
11976
+ "start": 394,
11977
+ "end": 394
11953
11978
  }
11954
11979
  },
11955
11980
  "group": [
@@ -11957,15 +11982,15 @@
11957
11982
  ],
11958
11983
  "access": "public",
11959
11984
  "file": {
11960
- "path": "_variables.scss",
11961
- "name": "_variables.scss"
11985
+ "path": "core/color-system/_swatch.scss",
11986
+ "name": "_swatch.scss"
11962
11987
  }
11963
11988
  },
11964
11989
  {
11965
11990
  "description": "Shadow of the valid items.\n",
11966
11991
  "commentRange": {
11967
- "start": 459,
11968
- "end": 460
11992
+ "start": 395,
11993
+ "end": 396
11969
11994
  },
11970
11995
  "context": {
11971
11996
  "type": "variable",
@@ -11973,8 +11998,8 @@
11973
11998
  "value": "null",
11974
11999
  "scope": "default",
11975
12000
  "line": {
11976
- "start": 461,
11977
- "end": 461
12001
+ "start": 397,
12002
+ "end": 397
11978
12003
  }
11979
12004
  },
11980
12005
  "group": [
@@ -11982,8 +12007,8 @@
11982
12007
  ],
11983
12008
  "access": "public",
11984
12009
  "file": {
11985
- "path": "_variables.scss",
11986
- "name": "_variables.scss"
12010
+ "path": "core/color-system/_swatch.scss",
12011
+ "name": "_swatch.scss"
11987
12012
  }
11988
12013
  },
11989
12014
  {
@@ -13020,7 +13045,7 @@
13020
13045
  "context": {
13021
13046
  "type": "variable",
13022
13047
  "name": "kendo-dock-manager-dock-preview-bg",
13023
- "value": "rgba( $kendo-color-primary, .16 )",
13048
+ "value": "if($kendo-enable-color-system, rgba( k-color( primary, true ), .16 ), rgba( $kendo-color-primary, .16 ))",
13024
13049
  "scope": "default",
13025
13050
  "line": {
13026
13051
  "start": 110,
@@ -13395,7 +13420,7 @@
13395
13420
  "context": {
13396
13421
  "type": "variable",
13397
13422
  "name": "kendo-dropzone-icon-text",
13398
- "value": "k-try-tint( $kendo-dropzone-text, 4 )",
13423
+ "value": "if($kendo-enable-color-system, k-color( subtle ), k-try-tint( $kendo-dropzone-text, 4 ))",
13399
13424
  "scope": "default",
13400
13425
  "line": {
13401
13426
  "start": 41,
@@ -13795,7 +13820,7 @@
13795
13820
  "context": {
13796
13821
  "type": "variable",
13797
13822
  "name": "kendo-editor-highlighted-bg",
13798
- "value": "k-color-mix($kendo-color-primary, #ffffff, 20%)",
13823
+ "value": "if($kendo-enable-color-system, k-color( primary-subtle ), k-color-mix($kendo-color-primary, #ffffff, 20%))",
13799
13824
  "scope": "default",
13800
13825
  "line": {
13801
13826
  "start": 32,
@@ -15470,7 +15495,7 @@
15470
15495
  "context": {
15471
15496
  "type": "variable",
15472
15497
  "name": "kendo-file-manager-listview-item-icon-text",
15473
- "value": "k-try-tint($kendo-file-manager-text, 4)",
15498
+ "value": "if($kendo-enable-color-system, k-color( subtle ), k-try-tint($kendo-file-manager-text, 4))",
15474
15499
  "scope": "default",
15475
15500
  "line": {
15476
15501
  "start": 122,
@@ -15920,7 +15945,7 @@
15920
15945
  "context": {
15921
15946
  "type": "variable",
15922
15947
  "name": "kendo-file-manager-preview-icon-text",
15923
- "value": "k-try-tint($kendo-file-manager-text, 4)",
15948
+ "value": "if($kendo-enable-color-system, k-color( subtle ), k-try-tint($kendo-file-manager-text, 4))",
15924
15949
  "scope": "default",
15925
15950
  "line": {
15926
15951
  "start": 179,
@@ -18770,7 +18795,7 @@
18770
18795
  "context": {
18771
18796
  "type": "variable",
18772
18797
  "name": "kendo-fieldset-legend-text",
18773
- "value": "k-try-shade( $kendo-body-text, 2 )",
18798
+ "value": "if($kendo-enable-color-system, k-color( on-app-surface ), k-try-shade( $kendo-body-text, 2 ))",
18774
18799
  "scope": "default",
18775
18800
  "line": {
18776
18801
  "start": 154,
@@ -19789,17 +19814,17 @@
19789
19814
  {
19790
19815
  "description": "Background color of the grid row resize indicator\n",
19791
19816
  "commentRange": {
19792
- "start": 305,
19793
- "end": 306
19817
+ "start": 308,
19818
+ "end": 309
19794
19819
  },
19795
19820
  "context": {
19796
19821
  "type": "variable",
19797
19822
  "name": "kendo-grid-row-resizer-hover-bg",
19798
- "value": "rgba( k-contrast-color( $kendo-grid-bg ), .12 )",
19823
+ "value": "if($kendo-enable-color-system, rgba( k-color( on-base, true ), .2 ), rgba( k-contrast-color( $kendo-grid-bg ), .12 ))",
19799
19824
  "scope": "default",
19800
19825
  "line": {
19801
- "start": 307,
19802
- "end": 307
19826
+ "start": 310,
19827
+ "end": 310
19803
19828
  }
19804
19829
  },
19805
19830
  "group": [
@@ -19814,8 +19839,8 @@
19814
19839
  {
19815
19840
  "description": "Active background color of the grid row resize indicator\n",
19816
19841
  "commentRange": {
19817
- "start": 308,
19818
- "end": 309
19842
+ "start": 311,
19843
+ "end": 312
19819
19844
  },
19820
19845
  "context": {
19821
19846
  "type": "variable",
@@ -19823,8 +19848,8 @@
19823
19848
  "value": "$kendo-color-primary",
19824
19849
  "scope": "default",
19825
19850
  "line": {
19826
- "start": 310,
19827
- "end": 310
19851
+ "start": 313,
19852
+ "end": 313
19828
19853
  }
19829
19854
  },
19830
19855
  "group": [
@@ -19839,8 +19864,8 @@
19839
19864
  {
19840
19865
  "description": "Height of the grid row resize indicator\n",
19841
19866
  "commentRange": {
19842
- "start": 311,
19843
- "end": 312
19867
+ "start": 314,
19868
+ "end": 315
19844
19869
  },
19845
19870
  "context": {
19846
19871
  "type": "variable",
@@ -19848,8 +19873,8 @@
19848
19873
  "value": "k-map-get( $kendo-spacing, .5 )",
19849
19874
  "scope": "default",
19850
19875
  "line": {
19851
- "start": 313,
19852
- "end": 313
19876
+ "start": 316,
19877
+ "end": 316
19853
19878
  }
19854
19879
  },
19855
19880
  "group": [
@@ -20545,7 +20570,7 @@
20545
20570
  "context": {
20546
20571
  "type": "variable",
20547
20572
  "name": "kendo-input-hover-border",
20548
- "value": "rgba( $kendo-input-border, .16 )",
20573
+ "value": "if($kendo-enable-color-system, k-color( border-alt ), rgba( $kendo-input-border, .16 ))",
20549
20574
  "scope": "default",
20550
20575
  "line": {
20551
20576
  "start": 121,
@@ -20670,7 +20695,7 @@
20670
20695
  "context": {
20671
20696
  "type": "variable",
20672
20697
  "name": "kendo-input-focus-shadow",
20673
- "value": "0 0 0 2px rgba( $kendo-input-focus-border, .08 )",
20698
+ "value": "0 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .08 ), rgba( $kendo-input-focus-border, .08 ))",
20674
20699
  "scope": "default",
20675
20700
  "line": {
20676
20701
  "start": 137,
@@ -20920,7 +20945,7 @@
20920
20945
  "context": {
20921
20946
  "type": "variable",
20922
20947
  "name": "kendo-input-outline-border",
20923
- "value": "rgba( $kendo-button-text, .5)",
20948
+ "value": "if($kendo-enable-color-system, rgba( k-color( on-base, true ), .5 ), rgba( $kendo-button-text, .5))",
20924
20949
  "scope": "default",
20925
20950
  "line": {
20926
20951
  "start": 170,
@@ -20995,7 +21020,7 @@
20995
21020
  "context": {
20996
21021
  "type": "variable",
20997
21022
  "name": "kendo-input-outline-hover-border",
20998
- "value": "rgba( $kendo-button-text, .8)",
21023
+ "value": "if($kendo-enable-color-system, rgba( k-color( on-base, true ), .8 ), rgba( $kendo-button-text, .8))",
20999
21024
  "scope": "default",
21000
21025
  "line": {
21001
21026
  "start": 180,
@@ -23645,7 +23670,7 @@
23645
23670
  "context": {
23646
23671
  "type": "variable",
23647
23672
  "name": "kendo-listview-item-selected-bg",
23648
- "value": "rgba( $kendo-selected-bg, .25 )",
23673
+ "value": "if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25))",
23649
23674
  "scope": "default",
23650
23675
  "line": {
23651
23676
  "start": 44,
@@ -28295,7 +28320,7 @@
28295
28320
  "context": {
28296
28321
  "type": "variable",
28297
28322
  "name": "kendo-picker-outline-border",
28298
- "value": "rgba( $kendo-picker-outline-text, .5)",
28323
+ "value": "if($kendo-enable-color-system, rgba( k-color( on-base, true ), .5 ), rgba( $kendo-picker-outline-text, .5))",
28299
28324
  "scope": "default",
28300
28325
  "line": {
28301
28326
  "start": 375,
@@ -28345,7 +28370,7 @@
28345
28370
  "context": {
28346
28371
  "type": "variable",
28347
28372
  "name": "kendo-picker-outline-hover-text",
28348
- "value": "k-contrast-legacy( $kendo-picker-outline-hover-bg )",
28373
+ "value": "if($kendo-enable-color-system, k-color( base ), k-contrast-legacy( $kendo-picker-outline-hover-bg ))",
28349
28374
  "scope": "default",
28350
28375
  "line": {
28351
28376
  "start": 382,
@@ -28645,7 +28670,7 @@
28645
28670
  "context": {
28646
28671
  "type": "variable",
28647
28672
  "name": "kendo-picker-flat-hover-bg",
28648
- "value": "rgba( $kendo-button-text, .04 )",
28673
+ "value": "if($kendo-enable-color-system, rgba( k-color( on-base, true ), .04 ), rgba( $kendo-button-text, .04 ))",
28649
28674
  "scope": "default",
28650
28675
  "line": {
28651
28676
  "start": 422,
@@ -28695,7 +28720,7 @@
28695
28720
  "context": {
28696
28721
  "type": "variable",
28697
28722
  "name": "kendo-picker-flat-hover-border",
28698
- "value": "rgba( $kendo-button-border, .16 )",
28723
+ "value": "if($kendo-enable-color-system, k-color( border-alt ), rgba( $kendo-button-border, .16 ))",
28699
28724
  "scope": "default",
28700
28725
  "line": {
28701
28726
  "start": 428,
@@ -30020,7 +30045,7 @@
30020
30045
  "context": {
30021
30046
  "type": "variable",
30022
30047
  "name": "kendo-progressbar-bg",
30023
- "value": "k-try-shade( $kendo-component-bg, 1 )",
30048
+ "value": "if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-component-bg, 1 ))",
30024
30049
  "scope": "default",
30025
30050
  "line": {
30026
30051
  "start": 27,
@@ -30145,7 +30170,7 @@
30145
30170
  "context": {
30146
30171
  "type": "variable",
30147
30172
  "name": "kendo-progressbar-value-text",
30148
- "value": "k-contrast-legacy( $kendo-progressbar-value-bg )",
30173
+ "value": "if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-progressbar-value-bg ))",
30149
30174
  "scope": "default",
30150
30175
  "line": {
30151
30176
  "start": 43,
@@ -30170,7 +30195,7 @@
30170
30195
  "context": {
30171
30196
  "type": "variable",
30172
30197
  "name": "kendo-progressbar-value-border",
30173
- "value": "k-try-shade( $kendo-progressbar-value-bg )",
30198
+ "value": "if($kendo-enable-color-system, k-color( primary-active ), k-try-shade( $kendo-progressbar-value-bg ))",
30174
30199
  "scope": "default",
30175
30200
  "line": {
30176
30201
  "start": 46,
@@ -33211,56 +33236,6 @@
33211
33236
  "name": "_variables.scss"
33212
33237
  }
33213
33238
  },
33214
- {
33215
- "description": "The background color of the Skeleton item.\n",
33216
- "commentRange": {
33217
- "start": 18,
33218
- "end": 19
33219
- },
33220
- "context": {
33221
- "type": "variable",
33222
- "name": "kendo-skeleton-item-bg",
33223
- "value": "rgba( $kendo-color-inverse, .2 )",
33224
- "scope": "default",
33225
- "line": {
33226
- "start": 20,
33227
- "end": 20
33228
- }
33229
- },
33230
- "group": [
33231
- "skeleton"
33232
- ],
33233
- "access": "public",
33234
- "file": {
33235
- "path": "skeleton/_variables.scss",
33236
- "name": "_variables.scss"
33237
- }
33238
- },
33239
- {
33240
- "description": "The background color of the Skeleton wave animation.\n",
33241
- "commentRange": {
33242
- "start": 21,
33243
- "end": 22
33244
- },
33245
- "context": {
33246
- "type": "variable",
33247
- "name": "kendo-skeleton-wave-bg",
33248
- "value": "rgba( black, .04 )",
33249
- "scope": "default",
33250
- "line": {
33251
- "start": 23,
33252
- "end": 23
33253
- }
33254
- },
33255
- "group": [
33256
- "skeleton"
33257
- ],
33258
- "access": "public",
33259
- "file": {
33260
- "path": "skeleton/_variables.scss",
33261
- "name": "_variables.scss"
33262
- }
33263
- },
33264
33239
  {
33265
33240
  "description": "The focus shadow of the SplitButton.\n",
33266
33241
  "commentRange": {
@@ -33695,7 +33670,7 @@
33695
33670
  "context": {
33696
33671
  "type": "variable",
33697
33672
  "name": "kendo-switch-off-track-border",
33698
- "value": "k-try-shade( $kendo-switch-off-track-bg, 8% )",
33673
+ "value": "if($kendo-enable-color-system, k-color( border ), k-try-shade( $kendo-switch-off-track-bg, 8% ))",
33699
33674
  "scope": "default",
33700
33675
  "line": {
33701
33676
  "start": 39,
@@ -33945,7 +33920,7 @@
33945
33920
  "context": {
33946
33921
  "type": "variable",
33947
33922
  "name": "kendo-switch-off-track-focus-ring",
33948
- "value": "2px solid rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ) , .08 )",
33923
+ "value": "2px solid if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .08 ), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ) , .08 ))",
33949
33924
  "scope": "default",
33950
33925
  "line": {
33951
33926
  "start": 71,
@@ -34295,7 +34270,7 @@
34295
34270
  "context": {
34296
34271
  "type": "variable",
34297
34272
  "name": "kendo-switch-on-track-text",
34298
- "value": "k-contrast-legacy( $kendo-switch-on-track-bg )",
34273
+ "value": "if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-switch-on-track-bg ))",
34299
34274
  "scope": "default",
34300
34275
  "line": {
34301
34276
  "start": 118,
@@ -34570,7 +34545,7 @@
34570
34545
  "context": {
34571
34546
  "type": "variable",
34572
34547
  "name": "kendo-switch-on-track-focus-ring",
34573
- "value": "2px solid rgba( $kendo-switch-on-track-border, .25 )",
34548
+ "value": "2px solid if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-switch-on-track-border, .25 ))",
34574
34549
  "scope": "default",
34575
34550
  "line": {
34576
34551
  "start": 153,
@@ -35414,17 +35389,17 @@
35414
35389
  {
35415
35390
  "description": "Background color of alternating rows in table.\n",
35416
35391
  "commentRange": {
35417
- "start": 112,
35418
- "end": 113
35392
+ "start": 111,
35393
+ "end": 112
35419
35394
  },
35420
35395
  "context": {
35421
35396
  "type": "variable",
35422
35397
  "name": "kendo-table-alt-row-bg",
35423
- "value": "rgba( k-contrast-legacy( $kendo-table-bg ), .04 )",
35398
+ "value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .05 ), rgba( k-contrast-legacy( $kendo-table-bg ), .04 ))",
35424
35399
  "scope": "default",
35425
35400
  "line": {
35426
- "start": 114,
35427
- "end": 114
35401
+ "start": 113,
35402
+ "end": 113
35428
35403
  }
35429
35404
  },
35430
35405
  "group": [
@@ -35439,8 +35414,8 @@
35439
35414
  {
35440
35415
  "description": "Text color of alternating rows in table.\n",
35441
35416
  "commentRange": {
35442
- "start": 115,
35443
- "end": 116
35417
+ "start": 114,
35418
+ "end": 115
35444
35419
  },
35445
35420
  "context": {
35446
35421
  "type": "variable",
@@ -35448,8 +35423,8 @@
35448
35423
  "value": "null",
35449
35424
  "scope": "default",
35450
35425
  "line": {
35451
- "start": 117,
35452
- "end": 117
35426
+ "start": 116,
35427
+ "end": 116
35453
35428
  }
35454
35429
  },
35455
35430
  "group": [
@@ -35464,8 +35439,8 @@
35464
35439
  {
35465
35440
  "description": "Border color of alternating rows in table.\n",
35466
35441
  "commentRange": {
35467
- "start": 118,
35468
- "end": 119
35442
+ "start": 117,
35443
+ "end": 118
35469
35444
  },
35470
35445
  "context": {
35471
35446
  "type": "variable",
@@ -35473,8 +35448,8 @@
35473
35448
  "value": "null",
35474
35449
  "scope": "default",
35475
35450
  "line": {
35476
- "start": 120,
35477
- "end": 120
35451
+ "start": 119,
35452
+ "end": 119
35478
35453
  }
35479
35454
  },
35480
35455
  "group": [
@@ -35489,17 +35464,17 @@
35489
35464
  {
35490
35465
  "description": "Background color of hovered rows in table.\n",
35491
35466
  "commentRange": {
35492
- "start": 123,
35493
- "end": 124
35467
+ "start": 122,
35468
+ "end": 123
35494
35469
  },
35495
35470
  "context": {
35496
35471
  "type": "variable",
35497
35472
  "name": "kendo-table-hover-bg",
35498
- "value": "k-color-darken($kendo-table-bg, 7%)",
35473
+ "value": "if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .11 ), k-color-darken($kendo-table-bg, 7%))",
35499
35474
  "scope": "default",
35500
35475
  "line": {
35501
- "start": 125,
35502
- "end": 125
35476
+ "start": 124,
35477
+ "end": 124
35503
35478
  }
35504
35479
  },
35505
35480
  "group": [
@@ -35514,8 +35489,8 @@
35514
35489
  {
35515
35490
  "description": "Text color of hovered rows in table.\n",
35516
35491
  "commentRange": {
35517
- "start": 126,
35518
- "end": 127
35492
+ "start": 125,
35493
+ "end": 126
35519
35494
  },
35520
35495
  "context": {
35521
35496
  "type": "variable",
@@ -35523,8 +35498,8 @@
35523
35498
  "value": "null",
35524
35499
  "scope": "default",
35525
35500
  "line": {
35526
- "start": 128,
35527
- "end": 128
35501
+ "start": 127,
35502
+ "end": 127
35528
35503
  }
35529
35504
  },
35530
35505
  "group": [
@@ -35539,8 +35514,8 @@
35539
35514
  {
35540
35515
  "description": "Border color of hovered rows in table.\n",
35541
35516
  "commentRange": {
35542
- "start": 129,
35543
- "end": 130
35517
+ "start": 128,
35518
+ "end": 129
35544
35519
  },
35545
35520
  "context": {
35546
35521
  "type": "variable",
@@ -35548,8 +35523,8 @@
35548
35523
  "value": "null",
35549
35524
  "scope": "default",
35550
35525
  "line": {
35551
- "start": 131,
35552
- "end": 131
35526
+ "start": 130,
35527
+ "end": 130
35553
35528
  }
35554
35529
  },
35555
35530
  "group": [
@@ -35564,8 +35539,8 @@
35564
35539
  {
35565
35540
  "description": "Background color of focused rows in table.\n",
35566
35541
  "commentRange": {
35567
- "start": 134,
35568
- "end": 135
35542
+ "start": 133,
35543
+ "end": 134
35569
35544
  },
35570
35545
  "context": {
35571
35546
  "type": "variable",
@@ -35573,8 +35548,8 @@
35573
35548
  "value": "null",
35574
35549
  "scope": "default",
35575
35550
  "line": {
35576
- "start": 136,
35577
- "end": 136
35551
+ "start": 135,
35552
+ "end": 135
35578
35553
  }
35579
35554
  },
35580
35555
  "group": [
@@ -35589,8 +35564,8 @@
35589
35564
  {
35590
35565
  "description": "Text color of focused rows in table.\n",
35591
35566
  "commentRange": {
35592
- "start": 137,
35593
- "end": 138
35567
+ "start": 136,
35568
+ "end": 137
35594
35569
  },
35595
35570
  "context": {
35596
35571
  "type": "variable",
@@ -35598,8 +35573,8 @@
35598
35573
  "value": "null",
35599
35574
  "scope": "default",
35600
35575
  "line": {
35601
- "start": 139,
35602
- "end": 139
35576
+ "start": 138,
35577
+ "end": 138
35603
35578
  }
35604
35579
  },
35605
35580
  "group": [
@@ -35614,8 +35589,8 @@
35614
35589
  {
35615
35590
  "description": "Border color of focused rows in table.\n",
35616
35591
  "commentRange": {
35617
- "start": 140,
35618
- "end": 141
35592
+ "start": 139,
35593
+ "end": 140
35619
35594
  },
35620
35595
  "context": {
35621
35596
  "type": "variable",
@@ -35623,8 +35598,8 @@
35623
35598
  "value": "null",
35624
35599
  "scope": "default",
35625
35600
  "line": {
35626
- "start": 142,
35627
- "end": 142
35601
+ "start": 141,
35602
+ "end": 141
35628
35603
  }
35629
35604
  },
35630
35605
  "group": [
@@ -35639,8 +35614,8 @@
35639
35614
  {
35640
35615
  "description": "Box shadow of focused rows in table.\n",
35641
35616
  "commentRange": {
35642
- "start": 143,
35643
- "end": 144
35617
+ "start": 142,
35618
+ "end": 143
35644
35619
  },
35645
35620
  "context": {
35646
35621
  "type": "variable",
@@ -35648,8 +35623,8 @@
35648
35623
  "value": "$kendo-list-item-focus-shadow",
35649
35624
  "scope": "default",
35650
35625
  "line": {
35651
- "start": 145,
35652
- "end": 145
35626
+ "start": 144,
35627
+ "end": 144
35653
35628
  }
35654
35629
  },
35655
35630
  "group": [
@@ -35664,17 +35639,17 @@
35664
35639
  {
35665
35640
  "description": "Background color of selected rows in table.\n",
35666
35641
  "commentRange": {
35667
- "start": 148,
35668
- "end": 149
35642
+ "start": 147,
35643
+ "end": 148
35669
35644
  },
35670
35645
  "context": {
35671
35646
  "type": "variable",
35672
35647
  "name": "kendo-table-selected-bg",
35673
- "value": "rgba($kendo-selected-bg, .25)",
35648
+ "value": "if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25))",
35674
35649
  "scope": "default",
35675
35650
  "line": {
35676
- "start": 150,
35677
- "end": 150
35651
+ "start": 149,
35652
+ "end": 149
35678
35653
  }
35679
35654
  },
35680
35655
  "group": [
@@ -35689,8 +35664,8 @@
35689
35664
  {
35690
35665
  "description": "Text color of selected rows in table.\n",
35691
35666
  "commentRange": {
35692
- "start": 151,
35693
- "end": 152
35667
+ "start": 150,
35668
+ "end": 151
35694
35669
  },
35695
35670
  "context": {
35696
35671
  "type": "variable",
@@ -35698,8 +35673,8 @@
35698
35673
  "value": "null",
35699
35674
  "scope": "default",
35700
35675
  "line": {
35701
- "start": 153,
35702
- "end": 153
35676
+ "start": 152,
35677
+ "end": 152
35703
35678
  }
35704
35679
  },
35705
35680
  "group": [
@@ -35714,8 +35689,8 @@
35714
35689
  {
35715
35690
  "description": "Border color of selected rows in table.\n",
35716
35691
  "commentRange": {
35717
- "start": 154,
35718
- "end": 155
35692
+ "start": 153,
35693
+ "end": 154
35719
35694
  },
35720
35695
  "context": {
35721
35696
  "type": "variable",
@@ -35723,8 +35698,8 @@
35723
35698
  "value": "null",
35724
35699
  "scope": "default",
35725
35700
  "line": {
35726
- "start": 156,
35727
- "end": 156
35701
+ "start": 155,
35702
+ "end": 155
35728
35703
  }
35729
35704
  },
35730
35705
  "group": [
@@ -37595,7 +37570,7 @@
37595
37570
  "context": {
37596
37571
  "type": "variable",
37597
37572
  "name": "kendo-tooltip-bg",
37598
- "value": "rgba( k-contrast-legacy( $kendo-body-bg ), .75 )",
37573
+ "value": "if($kendo-enable-color-system, k-color( on-app-surface ), rgba( k-contrast-legacy( $kendo-body-bg ), .75 ))",
37599
37574
  "scope": "default",
37600
37575
  "line": {
37601
37576
  "start": 39,
@@ -37620,7 +37595,7 @@
37620
37595
  "context": {
37621
37596
  "type": "variable",
37622
37597
  "name": "kendo-tooltip-text",
37623
- "value": "k-contrast-legacy( $kendo-tooltip-bg )",
37598
+ "value": "if($kendo-enable-color-system, k-color( app-surface ), k-contrast-legacy( $kendo-tooltip-bg ))",
37624
37599
  "scope": "default",
37625
37600
  "line": {
37626
37601
  "start": 42,
@@ -38964,8 +38939,8 @@
38964
38939
  {
38965
38940
  "description": "Base font size across all components.\n",
38966
38941
  "commentRange": {
38967
- "start": 244,
38968
- "end": 245
38942
+ "start": 146,
38943
+ "end": 147
38969
38944
  },
38970
38945
  "context": {
38971
38946
  "type": "variable",
@@ -38973,8 +38948,8 @@
38973
38948
  "value": "14px",
38974
38949
  "scope": "default",
38975
38950
  "line": {
38976
- "start": 246,
38977
- "end": 246
38951
+ "start": 148,
38952
+ "end": 148
38978
38953
  }
38979
38954
  },
38980
38955
  "group": [
@@ -38989,8 +38964,8 @@
38989
38964
  {
38990
38965
  "description": "Extra small font size across all components.\n",
38991
38966
  "commentRange": {
38992
- "start": 247,
38993
- "end": 248
38967
+ "start": 149,
38968
+ "end": 150
38994
38969
  },
38995
38970
  "context": {
38996
38971
  "type": "variable",
@@ -38998,8 +38973,8 @@
38998
38973
  "value": "10px",
38999
38974
  "scope": "default",
39000
38975
  "line": {
39001
- "start": 249,
39002
- "end": 249
38976
+ "start": 151,
38977
+ "end": 151
39003
38978
  }
39004
38979
  },
39005
38980
  "group": [
@@ -39014,8 +38989,8 @@
39014
38989
  {
39015
38990
  "description": "Small font size across all components.\n",
39016
38991
  "commentRange": {
39017
- "start": 250,
39018
- "end": 251
38992
+ "start": 152,
38993
+ "end": 153
39019
38994
  },
39020
38995
  "context": {
39021
38996
  "type": "variable",
@@ -39023,8 +38998,8 @@
39023
38998
  "value": "12px",
39024
38999
  "scope": "default",
39025
39000
  "line": {
39026
- "start": 252,
39027
- "end": 252
39001
+ "start": 154,
39002
+ "end": 154
39028
39003
  }
39029
39004
  },
39030
39005
  "group": [
@@ -39039,8 +39014,8 @@
39039
39014
  {
39040
39015
  "description": "Medium font size across all components.\n",
39041
39016
  "commentRange": {
39042
- "start": 253,
39043
- "end": 254
39017
+ "start": 155,
39018
+ "end": 156
39044
39019
  },
39045
39020
  "context": {
39046
39021
  "type": "variable",
@@ -39048,8 +39023,8 @@
39048
39023
  "value": "$kendo-font-size",
39049
39024
  "scope": "default",
39050
39025
  "line": {
39051
- "start": 255,
39052
- "end": 255
39026
+ "start": 157,
39027
+ "end": 157
39053
39028
  }
39054
39029
  },
39055
39030
  "group": [
@@ -39064,8 +39039,8 @@
39064
39039
  {
39065
39040
  "description": "Large font size across all components.\n",
39066
39041
  "commentRange": {
39067
- "start": 256,
39068
- "end": 257
39042
+ "start": 158,
39043
+ "end": 159
39069
39044
  },
39070
39045
  "context": {
39071
39046
  "type": "variable",
@@ -39073,8 +39048,8 @@
39073
39048
  "value": "16px",
39074
39049
  "scope": "default",
39075
39050
  "line": {
39076
- "start": 258,
39077
- "end": 258
39051
+ "start": 160,
39052
+ "end": 160
39078
39053
  }
39079
39054
  },
39080
39055
  "group": [
@@ -39089,8 +39064,8 @@
39089
39064
  {
39090
39065
  "description": "Extra large font size across all components.\n",
39091
39066
  "commentRange": {
39092
- "start": 259,
39093
- "end": 260
39067
+ "start": 161,
39068
+ "end": 162
39094
39069
  },
39095
39070
  "context": {
39096
39071
  "type": "variable",
@@ -39098,8 +39073,8 @@
39098
39073
  "value": "20px",
39099
39074
  "scope": "default",
39100
39075
  "line": {
39101
- "start": 261,
39102
- "end": 261
39076
+ "start": 163,
39077
+ "end": 163
39103
39078
  }
39104
39079
  },
39105
39080
  "group": [
@@ -39114,8 +39089,8 @@
39114
39089
  {
39115
39090
  "description": "Font family for text.\n",
39116
39091
  "commentRange": {
39117
- "start": 271,
39118
- "end": 272
39092
+ "start": 173,
39093
+ "end": 174
39119
39094
  },
39120
39095
  "context": {
39121
39096
  "type": "variable",
@@ -39123,8 +39098,8 @@
39123
39098
  "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\"",
39124
39099
  "scope": "default",
39125
39100
  "line": {
39126
- "start": 273,
39127
- "end": 273
39101
+ "start": 175,
39102
+ "end": 175
39128
39103
  }
39129
39104
  },
39130
39105
  "group": [
@@ -39139,8 +39114,8 @@
39139
39114
  {
39140
39115
  "description": "Font family for monospaced text. Used for styling the code.\n",
39141
39116
  "commentRange": {
39142
- "start": 275,
39143
- "end": 276
39117
+ "start": 177,
39118
+ "end": 178
39144
39119
  },
39145
39120
  "context": {
39146
39121
  "type": "variable",
@@ -39148,8 +39123,8 @@
39148
39123
  "value": "SFMono-Regular, Menlo, Monaco, Consolas, \"Roboto Mono\", \"Ubuntu Mono\", \"Lucida Console\", \"Courier New\", monospace",
39149
39124
  "scope": "default",
39150
39125
  "line": {
39151
- "start": 277,
39152
- "end": 277
39126
+ "start": 179,
39127
+ "end": 179
39153
39128
  }
39154
39129
  },
39155
39130
  "group": [
@@ -39164,8 +39139,8 @@
39164
39139
  {
39165
39140
  "description": "Font family across all components.\n",
39166
39141
  "commentRange": {
39167
- "start": 279,
39168
- "end": 280
39142
+ "start": 181,
39143
+ "end": 182
39169
39144
  },
39170
39145
  "context": {
39171
39146
  "type": "variable",
@@ -39173,8 +39148,8 @@
39173
39148
  "value": "inherit",
39174
39149
  "scope": "default",
39175
39150
  "line": {
39176
- "start": 281,
39177
- "end": 281
39151
+ "start": 183,
39152
+ "end": 183
39178
39153
  }
39179
39154
  },
39180
39155
  "group": [
@@ -39189,8 +39164,8 @@
39189
39164
  {
39190
39165
  "description": "Line height used along with $kendo-font-size.\n",
39191
39166
  "commentRange": {
39192
- "start": 283,
39193
- "end": 284
39167
+ "start": 185,
39168
+ "end": 186
39194
39169
  },
39195
39170
  "context": {
39196
39171
  "type": "variable",
@@ -39198,8 +39173,8 @@
39198
39173
  "value": "k-math-div( 20, 14 )",
39199
39174
  "scope": "default",
39200
39175
  "line": {
39201
- "start": 285,
39202
- "end": 285
39176
+ "start": 187,
39177
+ "end": 187
39203
39178
  }
39204
39179
  },
39205
39180
  "group": [
@@ -39214,8 +39189,8 @@
39214
39189
  {
39215
39190
  "description": "Extra small line height used along with $kendo-font-size-xs.\n",
39216
39191
  "commentRange": {
39217
- "start": 286,
39218
- "end": 287
39192
+ "start": 188,
39193
+ "end": 189
39219
39194
  },
39220
39195
  "context": {
39221
39196
  "type": "variable",
@@ -39223,8 +39198,8 @@
39223
39198
  "value": "1",
39224
39199
  "scope": "default",
39225
39200
  "line": {
39226
- "start": 288,
39227
- "end": 288
39201
+ "start": 190,
39202
+ "end": 190
39228
39203
  }
39229
39204
  },
39230
39205
  "group": [
@@ -39239,8 +39214,8 @@
39239
39214
  {
39240
39215
  "description": "Small line height used along with $kendo-font-size-sm.\n",
39241
39216
  "commentRange": {
39242
- "start": 289,
39243
- "end": 290
39217
+ "start": 191,
39218
+ "end": 192
39244
39219
  },
39245
39220
  "context": {
39246
39221
  "type": "variable",
@@ -39248,8 +39223,8 @@
39248
39223
  "value": "1.25",
39249
39224
  "scope": "default",
39250
39225
  "line": {
39251
- "start": 291,
39252
- "end": 291
39226
+ "start": 193,
39227
+ "end": 193
39253
39228
  }
39254
39229
  },
39255
39230
  "group": [
@@ -39264,8 +39239,8 @@
39264
39239
  {
39265
39240
  "description": "Medium line height used along with $kendo-font-size-md.\n",
39266
39241
  "commentRange": {
39267
- "start": 292,
39268
- "end": 293
39242
+ "start": 194,
39243
+ "end": 195
39269
39244
  },
39270
39245
  "context": {
39271
39246
  "type": "variable",
@@ -39273,8 +39248,8 @@
39273
39248
  "value": "$kendo-line-height",
39274
39249
  "scope": "default",
39275
39250
  "line": {
39276
- "start": 294,
39277
- "end": 294
39251
+ "start": 196,
39252
+ "end": 196
39278
39253
  }
39279
39254
  },
39280
39255
  "group": [
@@ -39289,8 +39264,8 @@
39289
39264
  {
39290
39265
  "description": "Large line height used along with $kendo-font-size-lg.\n",
39291
39266
  "commentRange": {
39292
- "start": 295,
39293
- "end": 296
39267
+ "start": 197,
39268
+ "end": 198
39294
39269
  },
39295
39270
  "context": {
39296
39271
  "type": "variable",
@@ -39298,8 +39273,8 @@
39298
39273
  "value": "1.5",
39299
39274
  "scope": "default",
39300
39275
  "line": {
39301
- "start": 297,
39302
- "end": 297
39276
+ "start": 199,
39277
+ "end": 199
39303
39278
  }
39304
39279
  },
39305
39280
  "group": [
@@ -39314,8 +39289,8 @@
39314
39289
  {
39315
39290
  "description": "Light font weight.\n",
39316
39291
  "commentRange": {
39317
- "start": 300,
39318
- "end": 301
39292
+ "start": 202,
39293
+ "end": 203
39319
39294
  },
39320
39295
  "context": {
39321
39296
  "type": "variable",
@@ -39323,8 +39298,8 @@
39323
39298
  "value": "300",
39324
39299
  "scope": "default",
39325
39300
  "line": {
39326
- "start": 302,
39327
- "end": 302
39301
+ "start": 204,
39302
+ "end": 204
39328
39303
  }
39329
39304
  },
39330
39305
  "group": [
@@ -39339,8 +39314,8 @@
39339
39314
  {
39340
39315
  "description": "Normal font weight.\n",
39341
39316
  "commentRange": {
39342
- "start": 303,
39343
- "end": 304
39317
+ "start": 205,
39318
+ "end": 206
39344
39319
  },
39345
39320
  "context": {
39346
39321
  "type": "variable",
@@ -39348,8 +39323,8 @@
39348
39323
  "value": "400",
39349
39324
  "scope": "default",
39350
39325
  "line": {
39351
- "start": 305,
39352
- "end": 305
39326
+ "start": 207,
39327
+ "end": 207
39353
39328
  }
39354
39329
  },
39355
39330
  "group": [
@@ -39364,8 +39339,8 @@
39364
39339
  {
39365
39340
  "description": "Medium font weight.\n",
39366
39341
  "commentRange": {
39367
- "start": 306,
39368
- "end": 307
39342
+ "start": 208,
39343
+ "end": 209
39369
39344
  },
39370
39345
  "context": {
39371
39346
  "type": "variable",
@@ -39373,8 +39348,8 @@
39373
39348
  "value": "500",
39374
39349
  "scope": "default",
39375
39350
  "line": {
39376
- "start": 308,
39377
- "end": 308
39351
+ "start": 210,
39352
+ "end": 210
39378
39353
  }
39379
39354
  },
39380
39355
  "group": [
@@ -39389,8 +39364,8 @@
39389
39364
  {
39390
39365
  "description": "Semibold font weight.\n",
39391
39366
  "commentRange": {
39392
- "start": 309,
39393
- "end": 310
39367
+ "start": 211,
39368
+ "end": 212
39394
39369
  },
39395
39370
  "context": {
39396
39371
  "type": "variable",
@@ -39398,8 +39373,8 @@
39398
39373
  "value": "600",
39399
39374
  "scope": "default",
39400
39375
  "line": {
39401
- "start": 311,
39402
- "end": 311
39376
+ "start": 213,
39377
+ "end": 213
39403
39378
  }
39404
39379
  },
39405
39380
  "group": [
@@ -39414,8 +39389,8 @@
39414
39389
  {
39415
39390
  "description": "Bold font weight.\n",
39416
39391
  "commentRange": {
39417
- "start": 312,
39418
- "end": 313
39392
+ "start": 214,
39393
+ "end": 215
39419
39394
  },
39420
39395
  "context": {
39421
39396
  "type": "variable",
@@ -39423,8 +39398,8 @@
39423
39398
  "value": "700",
39424
39399
  "scope": "default",
39425
39400
  "line": {
39426
- "start": 314,
39427
- "end": 314
39401
+ "start": 216,
39402
+ "end": 216
39428
39403
  }
39429
39404
  },
39430
39405
  "group": [
@@ -39439,8 +39414,8 @@
39439
39414
  {
39440
39415
  "description": "Letter spacing.\n",
39441
39416
  "commentRange": {
39442
- "start": 316,
39443
- "end": 317
39417
+ "start": 218,
39418
+ "end": 219
39444
39419
  },
39445
39420
  "context": {
39446
39421
  "type": "variable",
@@ -39448,8 +39423,8 @@
39448
39423
  "value": "null",
39449
39424
  "scope": "default",
39450
39425
  "line": {
39451
- "start": 318,
39452
- "end": 318
39426
+ "start": 220,
39427
+ "end": 220
39453
39428
  }
39454
39429
  },
39455
39430
  "group": [
@@ -39462,19 +39437,19 @@
39462
39437
  }
39463
39438
  },
39464
39439
  {
39465
- "description": "The background of the components' chrome area.\n",
39440
+ "description": "Box shadow of focused items.\n",
39466
39441
  "commentRange": {
39467
- "start": 364,
39468
- "end": 364
39442
+ "start": 224,
39443
+ "end": 224
39469
39444
  },
39470
39445
  "context": {
39471
39446
  "type": "variable",
39472
- "name": "kendo-base-bg",
39473
- "value": "#fafafa",
39447
+ "name": "kendo-focus-shadow",
39448
+ "value": "inset 0 0 0 2px rgba(0, 0, 0, .13)",
39474
39449
  "scope": "default",
39475
39450
  "line": {
39476
- "start": 365,
39477
- "end": 365
39451
+ "start": 225,
39452
+ "end": 225
39478
39453
  }
39479
39454
  },
39480
39455
  "access": "public",
@@ -39487,19 +39462,19 @@
39487
39462
  }
39488
39463
  },
39489
39464
  {
39490
- "description": "The text color of the components' chrome area.\n",
39465
+ "description": "Transition used across all components.\n",
39491
39466
  "commentRange": {
39492
- "start": 366,
39493
- "end": 366
39467
+ "start": 227,
39468
+ "end": 227
39494
39469
  },
39495
39470
  "context": {
39496
39471
  "type": "variable",
39497
- "name": "kendo-base-text",
39498
- "value": "$kendo-body-text",
39472
+ "name": "kendo-transition",
39473
+ "value": "color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out, box-shadow .2s ease-in-out",
39499
39474
  "scope": "default",
39500
39475
  "line": {
39501
- "start": 367,
39502
- "end": 367
39476
+ "start": 228,
39477
+ "end": 228
39503
39478
  }
39504
39479
  },
39505
39480
  "access": "public",
@@ -39512,19 +39487,19 @@
39512
39487
  }
39513
39488
  },
39514
39489
  {
39515
- "description": "The border color of the components' chrome area.\n",
39490
+ "description": "Filter used for disabled items.\n",
39516
39491
  "commentRange": {
39517
- "start": 368,
39518
- "end": 368
39492
+ "start": 231,
39493
+ "end": 231
39519
39494
  },
39520
39495
  "context": {
39521
39496
  "type": "variable",
39522
- "name": "kendo-base-border",
39523
- "value": "rgba( black, .08 )",
39497
+ "name": "kendo-disabled-filter",
39498
+ "value": "grayscale(.1)",
39524
39499
  "scope": "default",
39525
39500
  "line": {
39526
- "start": 369,
39527
- "end": 369
39501
+ "start": 232,
39502
+ "end": 232
39528
39503
  }
39529
39504
  },
39530
39505
  "access": "public",
@@ -39537,19 +39512,19 @@
39537
39512
  }
39538
39513
  },
39539
39514
  {
39540
- "description": "The gradient background of the components' chrome area.\n",
39515
+ "description": "Opacity used for disabled items.\n",
39541
39516
  "commentRange": {
39542
- "start": 370,
39543
- "end": 370
39517
+ "start": 233,
39518
+ "end": 233
39544
39519
  },
39545
39520
  "context": {
39546
39521
  "type": "variable",
39547
- "name": "kendo-base-gradient",
39548
- "value": "rgba( black, 0 ), rgba( black, .02 )",
39522
+ "name": "kendo-disabled-opacity",
39523
+ "value": ".6",
39549
39524
  "scope": "default",
39550
39525
  "line": {
39551
- "start": 371,
39552
- "end": 371
39526
+ "start": 234,
39527
+ "end": 234
39553
39528
  }
39554
39529
  },
39555
39530
  "access": "public",
@@ -39562,19 +39537,19 @@
39562
39537
  }
39563
39538
  },
39564
39539
  {
39565
- "description": "The background of hovered items.\n",
39540
+ "description": "The background of the components' chrome area.\n",
39566
39541
  "commentRange": {
39567
- "start": 373,
39568
- "end": 373
39542
+ "start": 319,
39543
+ "end": 319
39569
39544
  },
39570
39545
  "context": {
39571
39546
  "type": "variable",
39572
- "name": "kendo-hover-bg",
39573
- "value": "k-try-shade( $kendo-base-bg, .5 )",
39547
+ "name": "kendo-base-bg",
39548
+ "value": "#fafafa",
39574
39549
  "scope": "default",
39575
39550
  "line": {
39576
- "start": 374,
39577
- "end": 374
39551
+ "start": 320,
39552
+ "end": 320
39578
39553
  }
39579
39554
  },
39580
39555
  "access": "public",
@@ -39582,24 +39557,24 @@
39582
39557
  "undefined"
39583
39558
  ],
39584
39559
  "file": {
39585
- "path": "_variables.scss",
39586
- "name": "_variables.scss"
39560
+ "path": "core/color-system/_swatch.scss",
39561
+ "name": "_swatch.scss"
39587
39562
  }
39588
39563
  },
39589
39564
  {
39590
- "description": "The text color of hovered items.\n",
39565
+ "description": "The text color of the components' chrome area.\n",
39591
39566
  "commentRange": {
39592
- "start": 375,
39593
- "end": 375
39567
+ "start": 321,
39568
+ "end": 321
39594
39569
  },
39595
39570
  "context": {
39596
39571
  "type": "variable",
39597
- "name": "kendo-hover-text",
39598
- "value": "$kendo-base-text",
39572
+ "name": "kendo-base-text",
39573
+ "value": "$kendo-body-text",
39599
39574
  "scope": "default",
39600
39575
  "line": {
39601
- "start": 376,
39602
- "end": 376
39576
+ "start": 322,
39577
+ "end": 322
39603
39578
  }
39604
39579
  },
39605
39580
  "access": "public",
@@ -39607,24 +39582,24 @@
39607
39582
  "undefined"
39608
39583
  ],
39609
39584
  "file": {
39610
- "path": "_variables.scss",
39611
- "name": "_variables.scss"
39585
+ "path": "core/color-system/_swatch.scss",
39586
+ "name": "_swatch.scss"
39612
39587
  }
39613
39588
  },
39614
39589
  {
39615
- "description": "The border color of hovered items.\n",
39590
+ "description": "The border color of the components' chrome area.\n",
39616
39591
  "commentRange": {
39617
- "start": 377,
39618
- "end": 377
39592
+ "start": 323,
39593
+ "end": 323
39619
39594
  },
39620
39595
  "context": {
39621
39596
  "type": "variable",
39622
- "name": "kendo-hover-border",
39623
- "value": "$kendo-base-border",
39597
+ "name": "kendo-base-border",
39598
+ "value": "rgba(black, 0.08)",
39624
39599
  "scope": "default",
39625
39600
  "line": {
39626
- "start": 378,
39627
- "end": 378
39601
+ "start": 324,
39602
+ "end": 324
39628
39603
  }
39629
39604
  },
39630
39605
  "access": "public",
@@ -39632,24 +39607,24 @@
39632
39607
  "undefined"
39633
39608
  ],
39634
39609
  "file": {
39635
- "path": "_variables.scss",
39636
- "name": "_variables.scss"
39610
+ "path": "core/color-system/_swatch.scss",
39611
+ "name": "_swatch.scss"
39637
39612
  }
39638
39613
  },
39639
39614
  {
39640
- "description": "The gradient background of hovered items.\n",
39615
+ "description": "The gradient background of the components' chrome area.\n",
39641
39616
  "commentRange": {
39642
- "start": 379,
39643
- "end": 379
39617
+ "start": 325,
39618
+ "end": 325
39644
39619
  },
39645
39620
  "context": {
39646
39621
  "type": "variable",
39647
- "name": "kendo-hover-gradient",
39648
- "value": "$kendo-base-gradient",
39622
+ "name": "kendo-base-gradient",
39623
+ "value": "rgba(black, 0), rgba(black, 0.02)",
39649
39624
  "scope": "default",
39650
39625
  "line": {
39651
- "start": 380,
39652
- "end": 380
39626
+ "start": 326,
39627
+ "end": 326
39653
39628
  }
39654
39629
  },
39655
39630
  "access": "public",
@@ -39657,24 +39632,24 @@
39657
39632
  "undefined"
39658
39633
  ],
39659
39634
  "file": {
39660
- "path": "_variables.scss",
39661
- "name": "_variables.scss"
39635
+ "path": "core/color-system/_swatch.scss",
39636
+ "name": "_swatch.scss"
39662
39637
  }
39663
39638
  },
39664
39639
  {
39665
- "description": "The background of selected items.\n",
39640
+ "description": "The background of hovered items.\n",
39666
39641
  "commentRange": {
39667
- "start": 382,
39668
- "end": 382
39642
+ "start": 328,
39643
+ "end": 328
39669
39644
  },
39670
39645
  "context": {
39671
39646
  "type": "variable",
39672
- "name": "kendo-selected-bg",
39673
- "value": "$kendo-color-primary",
39647
+ "name": "kendo-hover-bg",
39648
+ "value": "k-try-shade($kendo-base-bg, 0.5)",
39674
39649
  "scope": "default",
39675
39650
  "line": {
39676
- "start": 383,
39677
- "end": 383
39651
+ "start": 329,
39652
+ "end": 329
39678
39653
  }
39679
39654
  },
39680
39655
  "access": "public",
@@ -39682,24 +39657,24 @@
39682
39657
  "undefined"
39683
39658
  ],
39684
39659
  "file": {
39685
- "path": "_variables.scss",
39686
- "name": "_variables.scss"
39660
+ "path": "core/color-system/_swatch.scss",
39661
+ "name": "_swatch.scss"
39687
39662
  }
39688
39663
  },
39689
39664
  {
39690
- "description": "The text color of selected items.\n",
39665
+ "description": "The text color of hovered items.\n",
39691
39666
  "commentRange": {
39692
- "start": 384,
39693
- "end": 384
39667
+ "start": 330,
39668
+ "end": 330
39694
39669
  },
39695
39670
  "context": {
39696
39671
  "type": "variable",
39697
- "name": "kendo-selected-text",
39698
- "value": "k-contrast-legacy( $kendo-selected-bg )",
39672
+ "name": "kendo-hover-text",
39673
+ "value": "$kendo-base-text",
39699
39674
  "scope": "default",
39700
39675
  "line": {
39701
- "start": 385,
39702
- "end": 385
39676
+ "start": 331,
39677
+ "end": 331
39703
39678
  }
39704
39679
  },
39705
39680
  "access": "public",
@@ -39707,24 +39682,24 @@
39707
39682
  "undefined"
39708
39683
  ],
39709
39684
  "file": {
39710
- "path": "_variables.scss",
39711
- "name": "_variables.scss"
39685
+ "path": "core/color-system/_swatch.scss",
39686
+ "name": "_swatch.scss"
39712
39687
  }
39713
39688
  },
39714
39689
  {
39715
- "description": "The border color of selected items.\n",
39690
+ "description": "The border color of hovered items.\n",
39716
39691
  "commentRange": {
39717
- "start": 386,
39718
- "end": 386
39692
+ "start": 332,
39693
+ "end": 332
39719
39694
  },
39720
39695
  "context": {
39721
39696
  "type": "variable",
39722
- "name": "kendo-selected-border",
39697
+ "name": "kendo-hover-border",
39723
39698
  "value": "$kendo-base-border",
39724
39699
  "scope": "default",
39725
39700
  "line": {
39726
- "start": 387,
39727
- "end": 387
39701
+ "start": 333,
39702
+ "end": 333
39728
39703
  }
39729
39704
  },
39730
39705
  "access": "public",
@@ -39732,24 +39707,24 @@
39732
39707
  "undefined"
39733
39708
  ],
39734
39709
  "file": {
39735
- "path": "_variables.scss",
39736
- "name": "_variables.scss"
39710
+ "path": "core/color-system/_swatch.scss",
39711
+ "name": "_swatch.scss"
39737
39712
  }
39738
39713
  },
39739
39714
  {
39740
- "description": "The gradient background of selected items.\n",
39715
+ "description": "The gradient background of hovered items.\n",
39741
39716
  "commentRange": {
39742
- "start": 388,
39743
- "end": 388
39717
+ "start": 334,
39718
+ "end": 334
39744
39719
  },
39745
39720
  "context": {
39746
39721
  "type": "variable",
39747
- "name": "kendo-selected-gradient",
39722
+ "name": "kendo-hover-gradient",
39748
39723
  "value": "$kendo-base-gradient",
39749
39724
  "scope": "default",
39750
39725
  "line": {
39751
- "start": 389,
39752
- "end": 389
39726
+ "start": 335,
39727
+ "end": 335
39753
39728
  }
39754
39729
  },
39755
39730
  "access": "public",
@@ -39757,24 +39732,24 @@
39757
39732
  "undefined"
39758
39733
  ],
39759
39734
  "file": {
39760
- "path": "_variables.scss",
39761
- "name": "_variables.scss"
39735
+ "path": "core/color-system/_swatch.scss",
39736
+ "name": "_swatch.scss"
39762
39737
  }
39763
39738
  },
39764
39739
  {
39765
- "description": "The background of selected and hovered items.\n",
39740
+ "description": "The background of selected items.\n",
39766
39741
  "commentRange": {
39767
- "start": 391,
39768
- "end": 391
39742
+ "start": 337,
39743
+ "end": 337
39769
39744
  },
39770
39745
  "context": {
39771
39746
  "type": "variable",
39772
- "name": "kendo-selected-hover-bg",
39773
- "value": "k-try-shade( $kendo-selected-bg, .5 )",
39747
+ "name": "kendo-selected-bg",
39748
+ "value": "$kendo-color-primary",
39774
39749
  "scope": "default",
39775
39750
  "line": {
39776
- "start": 392,
39777
- "end": 392
39751
+ "start": 338,
39752
+ "end": 338
39778
39753
  }
39779
39754
  },
39780
39755
  "access": "public",
@@ -39782,24 +39757,24 @@
39782
39757
  "undefined"
39783
39758
  ],
39784
39759
  "file": {
39785
- "path": "_variables.scss",
39786
- "name": "_variables.scss"
39760
+ "path": "core/color-system/_swatch.scss",
39761
+ "name": "_swatch.scss"
39787
39762
  }
39788
39763
  },
39789
39764
  {
39790
- "description": "The text color of selected and hovered items.\n",
39765
+ "description": "The text color of selected items.\n",
39791
39766
  "commentRange": {
39792
- "start": 393,
39793
- "end": 393
39767
+ "start": 339,
39768
+ "end": 339
39794
39769
  },
39795
39770
  "context": {
39796
39771
  "type": "variable",
39797
- "name": "kendo-selected-hover-text",
39798
- "value": "$kendo-selected-text",
39772
+ "name": "kendo-selected-text",
39773
+ "value": "k-contrast-legacy($kendo-selected-bg)",
39799
39774
  "scope": "default",
39800
39775
  "line": {
39801
- "start": 394,
39802
- "end": 394
39776
+ "start": 340,
39777
+ "end": 340
39803
39778
  }
39804
39779
  },
39805
39780
  "access": "public",
@@ -39807,24 +39782,24 @@
39807
39782
  "undefined"
39808
39783
  ],
39809
39784
  "file": {
39810
- "path": "_variables.scss",
39811
- "name": "_variables.scss"
39785
+ "path": "core/color-system/_swatch.scss",
39786
+ "name": "_swatch.scss"
39812
39787
  }
39813
39788
  },
39814
39789
  {
39815
- "description": "The border of selected and hovered items.\n",
39790
+ "description": "The border color of selected items.\n",
39816
39791
  "commentRange": {
39817
- "start": 395,
39818
- "end": 395
39792
+ "start": 341,
39793
+ "end": 341
39819
39794
  },
39820
39795
  "context": {
39821
39796
  "type": "variable",
39822
- "name": "kendo-selected-hover-border",
39797
+ "name": "kendo-selected-border",
39823
39798
  "value": "$kendo-base-border",
39824
39799
  "scope": "default",
39825
39800
  "line": {
39826
- "start": 396,
39827
- "end": 396
39801
+ "start": 342,
39802
+ "end": 342
39828
39803
  }
39829
39804
  },
39830
39805
  "access": "public",
@@ -39832,24 +39807,24 @@
39832
39807
  "undefined"
39833
39808
  ],
39834
39809
  "file": {
39835
- "path": "_variables.scss",
39836
- "name": "_variables.scss"
39810
+ "path": "core/color-system/_swatch.scss",
39811
+ "name": "_swatch.scss"
39837
39812
  }
39838
39813
  },
39839
39814
  {
39840
- "description": "The gradient of selected and hovered items.\n",
39815
+ "description": "The gradient background of selected items.\n",
39841
39816
  "commentRange": {
39842
- "start": 397,
39843
- "end": 397
39817
+ "start": 343,
39818
+ "end": 343
39844
39819
  },
39845
39820
  "context": {
39846
39821
  "type": "variable",
39847
- "name": "kendo-selected-hover-gradient",
39822
+ "name": "kendo-selected-gradient",
39848
39823
  "value": "$kendo-base-gradient",
39849
39824
  "scope": "default",
39850
39825
  "line": {
39851
- "start": 398,
39852
- "end": 398
39826
+ "start": 344,
39827
+ "end": 344
39853
39828
  }
39854
39829
  },
39855
39830
  "access": "public",
@@ -39857,24 +39832,24 @@
39857
39832
  "undefined"
39858
39833
  ],
39859
39834
  "file": {
39860
- "path": "_variables.scss",
39861
- "name": "_variables.scss"
39835
+ "path": "core/color-system/_swatch.scss",
39836
+ "name": "_swatch.scss"
39862
39837
  }
39863
39838
  },
39864
39839
  {
39865
- "description": "Box shadow of focused items.\n",
39840
+ "description": "The background of selected and hovered items.\n",
39866
39841
  "commentRange": {
39867
- "start": 401,
39868
- "end": 401
39842
+ "start": 346,
39843
+ "end": 346
39869
39844
  },
39870
39845
  "context": {
39871
39846
  "type": "variable",
39872
- "name": "kendo-focus-shadow",
39873
- "value": "inset 0 0 0 2px rgba(0, 0, 0, .13)",
39847
+ "name": "kendo-selected-hover-bg",
39848
+ "value": "k-try-shade($kendo-selected-bg, 0.5)",
39874
39849
  "scope": "default",
39875
39850
  "line": {
39876
- "start": 402,
39877
- "end": 402
39851
+ "start": 347,
39852
+ "end": 347
39878
39853
  }
39879
39854
  },
39880
39855
  "access": "public",
@@ -39882,24 +39857,24 @@
39882
39857
  "undefined"
39883
39858
  ],
39884
39859
  "file": {
39885
- "path": "_variables.scss",
39886
- "name": "_variables.scss"
39860
+ "path": "core/color-system/_swatch.scss",
39861
+ "name": "_swatch.scss"
39887
39862
  }
39888
39863
  },
39889
39864
  {
39890
- "description": "Transition used across all components.\n",
39865
+ "description": "The text color of selected and hovered items.\n",
39891
39866
  "commentRange": {
39892
- "start": 404,
39893
- "end": 404
39867
+ "start": 348,
39868
+ "end": 348
39894
39869
  },
39895
39870
  "context": {
39896
39871
  "type": "variable",
39897
- "name": "kendo-transition",
39898
- "value": "color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out, box-shadow .2s ease-in-out",
39872
+ "name": "kendo-selected-hover-text",
39873
+ "value": "$kendo-selected-text",
39899
39874
  "scope": "default",
39900
39875
  "line": {
39901
- "start": 405,
39902
- "end": 405
39876
+ "start": 349,
39877
+ "end": 349
39903
39878
  }
39904
39879
  },
39905
39880
  "access": "public",
@@ -39907,24 +39882,24 @@
39907
39882
  "undefined"
39908
39883
  ],
39909
39884
  "file": {
39910
- "path": "_variables.scss",
39911
- "name": "_variables.scss"
39885
+ "path": "core/color-system/_swatch.scss",
39886
+ "name": "_swatch.scss"
39912
39887
  }
39913
39888
  },
39914
39889
  {
39915
- "description": "Text color of disabled items.\n",
39890
+ "description": "The border of selected and hovered items.\n",
39916
39891
  "commentRange": {
39917
- "start": 408,
39918
- "end": 408
39892
+ "start": 350,
39893
+ "end": 350
39919
39894
  },
39920
39895
  "context": {
39921
39896
  "type": "variable",
39922
- "name": "kendo-disabled-text",
39923
- "value": "#8f8f8f",
39897
+ "name": "kendo-selected-hover-border",
39898
+ "value": "$kendo-base-border",
39924
39899
  "scope": "default",
39925
39900
  "line": {
39926
- "start": 409,
39927
- "end": 409
39901
+ "start": 351,
39902
+ "end": 351
39928
39903
  }
39929
39904
  },
39930
39905
  "access": "public",
@@ -39932,24 +39907,24 @@
39932
39907
  "undefined"
39933
39908
  ],
39934
39909
  "file": {
39935
- "path": "_variables.scss",
39936
- "name": "_variables.scss"
39910
+ "path": "core/color-system/_swatch.scss",
39911
+ "name": "_swatch.scss"
39937
39912
  }
39938
39913
  },
39939
39914
  {
39940
- "description": "Filter used for disabled items.\n",
39915
+ "description": "The gradient of selected and hovered items.\n",
39941
39916
  "commentRange": {
39942
- "start": 410,
39943
- "end": 410
39917
+ "start": 352,
39918
+ "end": 352
39944
39919
  },
39945
39920
  "context": {
39946
39921
  "type": "variable",
39947
- "name": "kendo-disabled-filter",
39948
- "value": "grayscale(.1)",
39922
+ "name": "kendo-selected-hover-gradient",
39923
+ "value": "$kendo-base-gradient",
39949
39924
  "scope": "default",
39950
39925
  "line": {
39951
- "start": 411,
39952
- "end": 411
39926
+ "start": 353,
39927
+ "end": 353
39953
39928
  }
39954
39929
  },
39955
39930
  "access": "public",
@@ -39957,24 +39932,24 @@
39957
39932
  "undefined"
39958
39933
  ],
39959
39934
  "file": {
39960
- "path": "_variables.scss",
39961
- "name": "_variables.scss"
39935
+ "path": "core/color-system/_swatch.scss",
39936
+ "name": "_swatch.scss"
39962
39937
  }
39963
39938
  },
39964
39939
  {
39965
- "description": "Opacity used for disabled items.\n",
39940
+ "description": "Text color of disabled items.\n",
39966
39941
  "commentRange": {
39967
- "start": 412,
39968
- "end": 412
39942
+ "start": 355,
39943
+ "end": 355
39969
39944
  },
39970
39945
  "context": {
39971
39946
  "type": "variable",
39972
- "name": "kendo-disabled-opacity",
39973
- "value": ".6",
39947
+ "name": "kendo-disabled-text",
39948
+ "value": "#8f8f8f",
39974
39949
  "scope": "default",
39975
39950
  "line": {
39976
- "start": 413,
39977
- "end": 413
39951
+ "start": 356,
39952
+ "end": 356
39978
39953
  }
39979
39954
  },
39980
39955
  "access": "public",
@@ -39982,8 +39957,8 @@
39982
39957
  "undefined"
39983
39958
  ],
39984
39959
  "file": {
39985
- "path": "_variables.scss",
39986
- "name": "_variables.scss"
39960
+ "path": "core/color-system/_swatch.scss",
39961
+ "name": "_swatch.scss"
39987
39962
  }
39988
39963
  },
39989
39964
  {