@progress/kendo-theme-material 7.3.0-dev.1 → 8.0.0-dev.0

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 (45) hide show
  1. package/dist/all.css +3111 -2144
  2. package/dist/all.scss +17 -17
  3. package/dist/material-aqua-dark.scss +140 -4
  4. package/dist/material-arctic.scss +130 -4
  5. package/dist/material-burnt-teal.scss +130 -4
  6. package/dist/material-dataviz-v4.scss +45 -6
  7. package/dist/material-eggplant.scss +130 -4
  8. package/dist/material-lime-dark.scss +140 -4
  9. package/dist/material-lime.scss +130 -4
  10. package/dist/material-main-dark.scss +140 -4
  11. package/dist/material-main.scss +9 -4
  12. package/dist/material-nova.scss +130 -4
  13. package/dist/material-pacific-dark.scss +140 -4
  14. package/dist/material-pacific.scss +130 -4
  15. package/dist/material-sky-dark.scss +140 -4
  16. package/dist/material-sky.scss +130 -4
  17. package/dist/material-smoke.scss +130 -4
  18. package/dist/meta/sassdoc-data.json +2060 -2060
  19. package/dist/meta/sassdoc-raw-data.json +7 -7
  20. package/dist/meta/variables.json +1525 -1525
  21. package/lib/swatches/material-aqua-dark.json +651 -1
  22. package/lib/swatches/material-arctic.json +601 -1
  23. package/lib/swatches/material-burnt-teal.json +601 -1
  24. package/lib/swatches/material-dataviz-v4.json +166 -1
  25. package/lib/swatches/material-eggplant.json +601 -1
  26. package/lib/swatches/material-lime-dark.json +651 -1
  27. package/lib/swatches/material-lime.json +601 -1
  28. package/lib/swatches/material-main-dark.json +651 -1
  29. package/lib/swatches/material-main.json +11 -1
  30. package/lib/swatches/material-nova.json +601 -1
  31. package/lib/swatches/material-pacific-dark.json +651 -1
  32. package/lib/swatches/material-pacific.json +601 -1
  33. package/lib/swatches/material-sky-dark.json +651 -1
  34. package/lib/swatches/material-sky.json +601 -1
  35. package/lib/swatches/material-smoke.json +601 -1
  36. package/package.json +5 -5
  37. package/scss/bottom-navigation/_theme.scss +1 -1
  38. package/scss/button/_theme.scss +2 -2
  39. package/scss/button/_variables.scss +4 -4
  40. package/scss/core/color-system/_swatch-legacy.scss +1 -1
  41. package/scss/core/color-system/_swatch.scss +1 -1
  42. package/scss/fab/_theme.scss +2 -2
  43. package/scss/input/_variables.scss +1 -1
  44. package/scss/tabstrip/_variables.scss +1 -1
  45. package/scss/timeline/_variables.scss +2 -2
package/dist/all.scss CHANGED
@@ -771,7 +771,7 @@ $kendo-color-level-step: 8% !default;
771
771
  #{$name}-active: k-color-darken( $color, 10% ),
772
772
  #{$name}-emphasis: if( $name == 'base', k-try-shade( $color, 21% ), k-try-tint( $color, 25% )),
773
773
  #{$name}-on-subtle: if( $name == 'base', k-try-shade( $color, 84% ), k-try-shade( $color, 65% )),
774
- on-#{$name}: if( $name == 'base', k-try-shade( $color, 84% ), k-contrast-color( $color )),
774
+ on-#{$name}: if( $name == 'base', k-try-shade( $color, 84% ), k-contrast-legacy( $color )),
775
775
  #{$name}-on-surface: if( $name == 'base', k-try-shade( $color, 84% ), k-try-shade( $color, 25% )),
776
776
  );
777
777
 
@@ -2982,7 +2982,7 @@ $palettes: (
2982
2982
  // #endregion
2983
2983
 
2984
2984
  // Config
2985
- $kendo-enable-color-system: false !default;
2985
+ $kendo-enable-color-system: true !default;
2986
2986
 
2987
2987
  // Colors
2988
2988
  $_default-colors: (
@@ -6766,7 +6766,7 @@ $kendo-zindex-loading: 100 !default;
6766
6766
  $kendo-app-border: k-color( border );
6767
6767
  $kendo-link-text: $kendo-color-secondary;
6768
6768
  $kendo-link-hover-text: k-color( secondary-hover );
6769
- $kendo-component-bg: $kendo-body-bg;
6769
+ $kendo-component-bg: k-color( surface-alt );
6770
6770
  $kendo-component-text: $kendo-body-text;
6771
6771
  $kendo-component-border: $kendo-app-border;
6772
6772
  $kendo-base-bg: $kendo-body-bg;
@@ -20492,10 +20492,10 @@ $kendo-button-theme-colors: k-map-merge(
20492
20492
 
20493
20493
  /// The base background of the Button.
20494
20494
  /// @group button
20495
- $kendo-button-bg: $kendo-base-bg !default;
20495
+ $kendo-button-bg: if($kendo-enable-color-system, k-color( base ), $kendo-base-bg) !default;
20496
20496
  /// The base text color of the Button.
20497
20497
  /// @group button
20498
- $kendo-button-text: $kendo-base-text !default;
20498
+ $kendo-button-text: if($kendo-enable-color-system, k-color( on-base ), $kendo-base-text) !default;
20499
20499
  /// The base border color of the Button.
20500
20500
  /// @group button
20501
20501
  $kendo-button-border: $kendo-button-bg !default;
@@ -20572,10 +20572,10 @@ $kendo-button-focus-shadow: null !default;
20572
20572
 
20573
20573
  /// The base background color of the disabled Button.
20574
20574
  /// @group button
20575
- $kendo-button-disabled-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, rgba ), .09 ), k-try-shade( $kendo-body-bg, 12% )) !default;
20575
+ $kendo-button-disabled-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 9%, transparent), k-try-shade( $kendo-body-bg, 12% )) !default;
20576
20576
  /// The base text color of the disabled Button.
20577
20577
  /// @group button
20578
- $kendo-button-disabled-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, rgba ), .32 ), $kendo-disabled-text) !default;
20578
+ $kendo-button-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 32%, transparent), $kendo-disabled-text) !default;
20579
20579
  /// The base border color of the disabled Button.
20580
20580
  /// @group button
20581
20581
  $kendo-button-disabled-border: if($kendo-enable-color-system, transparent, $kendo-button-disabled-bg) !default;
@@ -23262,8 +23262,8 @@ $_kendo-module-meta: (
23262
23262
  .k-button-solid-#{$name} {
23263
23263
  @include box-shadow( $kendo-button-shadow );
23264
23264
  color: if( $name == "base", $kendo-button-text, if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-color( $color )) );
23265
- background-color: if( $name == "base", $kendo-button-bg, $color );
23266
- border-color: if( $name == "base", $kendo-button-bg, $color );
23265
+ background-color: if( $name == "base", $kendo-button-bg, if($kendo-enable-color-system, k-color( $name ), $color) );
23266
+ border-color: if( $name == "base", $kendo-button-bg, if($kendo-enable-color-system, k-color( $name ), $color) );
23267
23267
 
23268
23268
  // Hover state
23269
23269
  &:hover,
@@ -25261,7 +25261,7 @@ $kendo-input-spinner-icon-offset: null !default;
25261
25261
 
25262
25262
  /// The color of the Input separator.
25263
25263
  /// @group input
25264
- $kendo-input-separator-text: rgba( $kendo-component-border, .12 ) !default;
25264
+ $kendo-input-separator-text: $kendo-component-border !default;
25265
25265
  /// The opacity of the Input separator.
25266
25266
  /// @group input
25267
25267
  $kendo-input-separator-opacity: .5 !default;
@@ -38833,8 +38833,8 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
38833
38833
  .k-fab-solid-#{$name}:disabled {
38834
38834
  @include box-shadow($kendo-fab-disabled-shadow);
38835
38835
  border-color: if($kendo-enable-color-system, transparent, k-try-tint( k-try-shade( $kendo-body-bg, 12% ), 5));
38836
- background-color: if($kendo-enable-color-system, rgba( k-color( on-app-surface, rgba ), .09 ), k-try-tint( k-try-shade( $kendo-body-bg, 12% ), 5));
38837
- color: if($kendo-enable-color-system, rgba( k-color( on-app-surface, rgba ), .32 ), k-color-tint( $kendo-disabled-text, 4));
38836
+ background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 9%, transparent), k-try-tint( k-try-shade( $kendo-body-bg, 12% ), 5));
38837
+ color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 32%, transparent), k-color-tint( $kendo-disabled-text, 4));
38838
38838
  opacity: 1;
38839
38839
  }
38840
38840
  }
@@ -42293,7 +42293,7 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
42293
42293
  .k-bottom-nav-flat-#{$name} {
42294
42294
  .k-bottom-nav-item.k-focus,
42295
42295
  .k-bottom-nav-item:focus {
42296
- @include fill( $bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, rgba ), .06 ), rgba($kendo-bottom-nav-flat-text, .05)) );
42296
+ @include fill( $bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 6%, transparent), rgba($kendo-bottom-nav-flat-text, .05)) );
42297
42297
  }
42298
42298
  }
42299
42299
  }
@@ -44322,7 +44322,7 @@ $kendo-tabstrip-item-focus-shadow: $kendo-list-item-focus-shadow !default;
44322
44322
  $kendo-tabstrip-item-dragging-shadow: $box-shadow-depth-3 !default;
44323
44323
 
44324
44324
  $kendo-tabstrip-item-disabled-bg: null !default;
44325
- $kendo-tabstrip-item-disabled-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, rgba ), .32 ), k-map-get( $theme, disabled-text )) !default;
44325
+ $kendo-tabstrip-item-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 32%, transparent), k-map-get( $theme, disabled-text )) !default;
44326
44326
  $kendo-tabstrip-item-disabled-border: null !default;
44327
44327
  $kendo-tabstrip-item-disabled-gradient: null !default;
44328
44328
  $kendo-tabstrip-item-disabled-opacity: 1 !default;
@@ -59701,7 +59701,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
59701
59701
  }
59702
59702
 
59703
59703
  &.k-event-inverse {
59704
- color: if($kendo-enable-color-system, k-color( on-app-surface ), k-contrast-legacy( $kendo-scheduler-event-text ));
59704
+ color: if($kendo-enable-color-system, if($kendo-enable-focus-contrast, black, k-color( on-app-surface )), k-contrast-legacy( $kendo-scheduler-event-text ));
59705
59705
  }
59706
59706
 
59707
59707
  &.k-event-ongoing {
@@ -61043,10 +61043,10 @@ $kendo-timeline-track-arrow-height: 36px !default;
61043
61043
 
61044
61044
  /// The background color of the disabled Timeline track arrow.
61045
61045
  /// @group timeline
61046
- $kendo-timeline-track-arrow-disabled-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, rgba ), .09 ), k-true-mix(#000000, $kendo-body-bg, 8%)) !default;
61046
+ $kendo-timeline-track-arrow-disabled-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 9%, transparent), k-true-mix(#000000, $kendo-body-bg, 8%)) !default;
61047
61047
  /// The text color of the disabled Timeline track arrow.
61048
61048
  /// @group timeline
61049
- $kendo-timeline-track-arrow-disabled-text: if($kendo-enable-color-system, rgba( k-color( on-app-surface, rgba ), .32 ), k-true-mix($kendo-button-text, $kendo-body-bg, 65%)) !default;
61049
+ $kendo-timeline-track-arrow-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 32%, transparent), k-true-mix($kendo-button-text, $kendo-body-bg, 65%)) !default;
61050
61050
  /// The border color of the disabled Timeline track arrow.
61051
61051
  /// @group timeline
61052
61052
  $kendo-timeline-track-arrow-disabled-border: if($kendo-enable-color-system, transparent, k-true-mix($kendo-button-border, $kendo-body-bg, 65%)) !default;
@@ -1,5 +1,141 @@
1
- $primary-palette-name: cyan;
2
- $secondary-palette-name: amber;
3
- $theme-type: dark;
4
- $adjust-contrast: true;
1
+ $kendo-enable-color-system: true;
2
+
3
+ $kendo-colors: (
4
+ app-surface: #121212,
5
+ on-app-surface: #ffffff,
6
+ subtle: rgba(255, 255, 255, 0.7),
7
+ surface: #252525,
8
+ surface-alt: #121212,
9
+ border: rgba(white, 0.12),
10
+ border-alt: rgba(white, 0.15),
11
+ base-subtle: #3c3c3c,
12
+ base-subtle-hover: #454545,
13
+ base-subtle-active: #565656,
14
+ base: #212121,
15
+ base-hover: #333333,
16
+ base-active: #565656,
17
+ base-emphasis: #686868,
18
+ base-on-subtle: #ffffff,
19
+ on-base: #ffffff,
20
+ base-on-surface: #ffffff,
21
+ primary-subtle: #00262a,
22
+ primary-subtle-hover: #00424a,
23
+ primary-subtle-active: #005e6a,
24
+ primary: #00bcd4,
25
+ primary-hover: #14c1d7,
26
+ primary-active: #3dccde,
27
+ primary-emphasis: #008d9f,
28
+ primary-on-subtle: #a6e8f0,
29
+ on-primary: black,
30
+ primary-on-surface: #80deea,
31
+ secondary-subtle: #332701,
32
+ secondary-subtle-hover: #594402,
33
+ secondary-subtle-active: #806104,
34
+ secondary: #ffc107,
35
+ secondary-hover: #ffc61b,
36
+ secondary-active: #ffd043,
37
+ secondary-emphasis: #bf9105,
38
+ secondary-on-subtle: #ffe9a8,
39
+ on-secondary: black,
40
+ secondary-on-surface: #ffe083,
41
+ tertiary-subtle: #001e1b,
42
+ tertiary-subtle-hover: #003530,
43
+ tertiary-subtle-active: #004b44,
44
+ tertiary: #009688,
45
+ tertiary-hover: #149e92,
46
+ tertiary-active: #3dafa5,
47
+ tertiary-emphasis: #007166,
48
+ tertiary-on-subtle: #a6dad5,
49
+ on-tertiary: black,
50
+ tertiary-on-surface: #80cbc4,
51
+ info-subtle: #00122f,
52
+ info-subtle-hover: #001f52,
53
+ info-subtle-active: #002c75,
54
+ info: #0058e9,
55
+ info-hover: #1465eb,
56
+ info-active: #3d80ee,
57
+ info-emphasis: #0042af,
58
+ info-on-subtle: #a6c5f7,
59
+ on-info: white,
60
+ info-on-surface: #80acf4,
61
+ success-subtle: #0b2400,
62
+ success-subtle-hover: #133f00,
63
+ success-subtle-active: #1c5a00,
64
+ success: #37b400,
65
+ success-hover: #47ba14,
66
+ success-active: #67c63d,
67
+ success-emphasis: #298700,
68
+ success-on-subtle: #b9e5a6,
69
+ on-success: black,
70
+ success-on-surface: #9bda80,
71
+ warning-subtle: #332600,
72
+ warning-subtle-hover: #594300,
73
+ warning-subtle-active: #806000,
74
+ warning: #ffc000,
75
+ warning-hover: #ffc514,
76
+ warning-active: #ffcf3d,
77
+ warning-emphasis: #bf9000,
78
+ warning-on-subtle: #ffe9a6,
79
+ on-warning: black,
80
+ warning-on-surface: #ffe080,
81
+ error-subtle: #310500,
82
+ error-subtle-hover: #550800,
83
+ error-subtle-active: #7a0c00,
84
+ error: #f31700,
85
+ error-hover: #f42a14,
86
+ error-active: #f64f3d,
87
+ error-emphasis: #b61100,
88
+ error-on-subtle: #fbaea6,
89
+ on-error: black,
90
+ error-on-surface: #f98b80,
91
+ inverse-subtle: #fafafa,
92
+ inverse-subtle-hover: #f5f5f5,
93
+ inverse-subtle-active: #eeeeee,
94
+ inverse: #f5f5f5,
95
+ inverse-hover: #ebebeb,
96
+ inverse-active: #d6d6d6,
97
+ inverse-emphasis: #e0e0e0,
98
+ inverse-on-subtle: #212121,
99
+ on-inverse: black,
100
+ inverse-on-surface: #616161,
101
+ series-a: #9c27b0,
102
+ series-a-bold: #751d84,
103
+ series-a-bolder: #4e1458,
104
+ series-a-subtle: #b55dc4,
105
+ series-a-subtler: #ce93d8,
106
+ series-b: #2196f3,
107
+ series-b-bold: #1971b6,
108
+ series-b-bolder: #114b7a,
109
+ series-b-subtle: #59b0f6,
110
+ series-b-subtler: #90cbf9,
111
+ series-c: #009688,
112
+ series-c-bold: #007166,
113
+ series-c-bolder: #004b44,
114
+ series-c-subtle: #40b0a6,
115
+ series-c-subtler: #80cbc4,
116
+ series-d: #ffeb3b,
117
+ series-d-bold: #bfb02c,
118
+ series-d-bolder: #80761e,
119
+ series-d-subtle: #fff06c,
120
+ series-d-subtler: #fff59d,
121
+ series-e: #f44336,
122
+ series-e-bold: #b73229,
123
+ series-e-bolder: #7a221b,
124
+ series-e-subtle: #f77268,
125
+ series-e-subtler: #faa19b,
126
+ series-f: #4caf50,
127
+ series-f-bold: #39833c,
128
+ series-f-bolder: #265828,
129
+ series-f-subtle: #79c37c,
130
+ series-f-subtler: #a6d7a8,
131
+ );
132
+
133
+ @if not ($kendo-enable-color-system) {
134
+ $primary-palette-name: cyan !global;
135
+ $secondary-palette-name: amber !global;
136
+ $theme-type: dark !global;
137
+ $adjust-contrast: true !global;
138
+ };
139
+
140
+
5
141
  @import "all.scss";
@@ -1,5 +1,131 @@
1
- $primary-palette-name: blue;
2
- $secondary-palette-name: teal;
3
- $theme-type: light;
4
- $adjust-contrast: true;
1
+ $kendo-enable-color-system: true;
2
+
3
+ $kendo-colors: (
4
+ app-surface: #ffffff,
5
+ on-app-surface: rgba(0, 0, 0, 0.87),
6
+ subtle: rgba(0, 0, 0, 0.54),
7
+ surface: #f5f5f5,
8
+ surface-alt: #ffffff,
9
+ border: rgba(black, 0.12),
10
+ border-alt: rgba(black, 0.15),
11
+ base-subtle: #e0e0e0,
12
+ base-subtle-hover: #d6d6d6,
13
+ base-subtle-active: #c2c2c2,
14
+ base: #ffffff,
15
+ base-hover: whitesmoke,
16
+ base-active: #e0e0e0,
17
+ base-emphasis: #adadad,
18
+ base-on-subtle: rgba(0, 0, 0, 0.87),
19
+ on-base: rgba(0, 0, 0, 0.87),
20
+ base-on-surface: rgba(0, 0, 0, 0.87),
21
+ primary-subtle: #d0e0f2,
22
+ primary-subtle-hover: #adc9e9,
23
+ primary-subtle-active: #8ab2e0,
24
+ primary: #1565c0,
25
+ primary-hover: #1461b8,
26
+ primary-active: #1259a9,
27
+ primary-emphasis: #508cd0,
28
+ primary-on-subtle: #072343,
29
+ on-primary: white,
30
+ primary-on-surface: #0b3360,
31
+ secondary-subtle: #cce1de,
32
+ secondary-subtle-hover: #a6cbc6,
33
+ secondary-subtle-active: #80b4ae,
34
+ secondary: #00695c,
35
+ secondary-hover: #006558,
36
+ secondary-active: #005c51,
37
+ secondary-emphasis: #408f85,
38
+ secondary-on-subtle: #002520,
39
+ on-secondary: white,
40
+ secondary-on-surface: #00352e,
41
+ tertiary-subtle: #cce1de,
42
+ tertiary-subtle-hover: #a6cbc6,
43
+ tertiary-subtle-active: #80b4ae,
44
+ tertiary: #00695c,
45
+ tertiary-hover: #006558,
46
+ tertiary-active: #005c51,
47
+ tertiary-emphasis: #408f85,
48
+ tertiary-on-subtle: #002520,
49
+ on-tertiary: white,
50
+ tertiary-on-surface: #00352e,
51
+ info-subtle: #ccdefb,
52
+ info-subtle-hover: #a6c5f7,
53
+ info-subtle-active: #80acf4,
54
+ info: #0058e9,
55
+ info-hover: #0054e0,
56
+ info-active: #004dcd,
57
+ info-emphasis: #4082ef,
58
+ info-on-subtle: #001f52,
59
+ on-info: white,
60
+ info-on-surface: #002c75,
61
+ success-subtle: #d7f0cc,
62
+ success-subtle-hover: #b9e5a6,
63
+ success-subtle-active: #9bda80,
64
+ success: #37b400,
65
+ success-hover: #35ad00,
66
+ success-active: #309e00,
67
+ success-emphasis: #69c740,
68
+ success-on-subtle: #133f00,
69
+ on-success: black,
70
+ success-on-surface: #1c5a00,
71
+ warning-subtle: #fff2cc,
72
+ warning-subtle-hover: #ffe9a6,
73
+ warning-subtle-active: #ffe080,
74
+ warning: #ffc000,
75
+ warning-hover: #f5b800,
76
+ warning-active: #e0a900,
77
+ warning-emphasis: #ffd040,
78
+ warning-on-subtle: #594300,
79
+ on-warning: black,
80
+ warning-on-surface: #806000,
81
+ error-subtle: #fdd1cc,
82
+ error-subtle-hover: #fbaea6,
83
+ error-subtle-active: #f98b80,
84
+ error: #f31700,
85
+ error-hover: #e91600,
86
+ error-active: #d61400,
87
+ error-emphasis: #f65140,
88
+ error-on-subtle: #550800,
89
+ on-error: black,
90
+ error-on-surface: #7a0c00,
91
+ series-a: #9c27b0,
92
+ series-a-bold: #751d84,
93
+ series-a-bolder: #4e1458,
94
+ series-a-subtle: #b55dc4,
95
+ series-a-subtler: #ce93d8,
96
+ series-b: #2196f3,
97
+ series-b-bold: #1971b6,
98
+ series-b-bolder: #114b7a,
99
+ series-b-subtle: #59b0f6,
100
+ series-b-subtler: #90cbf9,
101
+ series-c: #009688,
102
+ series-c-bold: #007166,
103
+ series-c-bolder: #004b44,
104
+ series-c-subtle: #40b0a6,
105
+ series-c-subtler: #80cbc4,
106
+ series-d: #ffeb3b,
107
+ series-d-bold: #bfb02c,
108
+ series-d-bolder: #80761e,
109
+ series-d-subtle: #fff06c,
110
+ series-d-subtler: #fff59d,
111
+ series-e: #f44336,
112
+ series-e-bold: #b73229,
113
+ series-e-bolder: #7a221b,
114
+ series-e-subtle: #f77268,
115
+ series-e-subtler: #faa19b,
116
+ series-f: #4caf50,
117
+ series-f-bold: #39833c,
118
+ series-f-bolder: #265828,
119
+ series-f-subtle: #79c37c,
120
+ series-f-subtler: #a6d7a8,
121
+ );
122
+
123
+ @if not ($kendo-enable-color-system) {
124
+ $primary-palette-name: blue !global;
125
+ $secondary-palette-name: teal !global;
126
+ $theme-type: light !global;
127
+ $adjust-contrast: true !global;
128
+ };
129
+
130
+
5
131
  @import "all.scss";
@@ -1,5 +1,131 @@
1
- $primary-palette-name: teal;
2
- $secondary-palette-name: orange;
3
- $theme-type: light;
4
- $adjust-contrast: true;
1
+ $kendo-enable-color-system: true;
2
+
3
+ $kendo-colors: (
4
+ app-surface: #ffffff,
5
+ on-app-surface: rgba(0, 0, 0, 0.87),
6
+ subtle: rgba(0, 0, 0, 0.54),
7
+ surface: #f5f5f5,
8
+ surface-alt: #ffffff,
9
+ border: rgba(black, 0.12),
10
+ border-alt: rgba(black, 0.15),
11
+ base-subtle: #e0e0e0,
12
+ base-subtle-hover: #d6d6d6,
13
+ base-subtle-active: #c2c2c2,
14
+ base: #ffffff,
15
+ base-hover: whitesmoke,
16
+ base-active: #e0e0e0,
17
+ base-emphasis: #adadad,
18
+ base-on-subtle: rgba(0, 0, 0, 0.87),
19
+ on-base: rgba(0, 0, 0, 0.87),
20
+ base-on-surface: rgba(0, 0, 0, 0.87),
21
+ primary-subtle: #cce1de,
22
+ primary-subtle-hover: #a6cbc6,
23
+ primary-subtle-active: #80b4ae,
24
+ primary: #00695c,
25
+ primary-hover: #006558,
26
+ primary-active: #005c51,
27
+ primary-emphasis: #408f85,
28
+ primary-on-subtle: #002520,
29
+ on-primary: white,
30
+ primary-on-surface: #00352e,
31
+ secondary-subtle: #fce2cc,
32
+ secondary-subtle-hover: #f9cca6,
33
+ secondary-subtle-active: #f7b680,
34
+ secondary: #ef6c00,
35
+ secondary-hover: #e56800,
36
+ secondary-active: #d25f00,
37
+ secondary-emphasis: #f39140,
38
+ secondary-on-subtle: #542600,
39
+ on-secondary: black,
40
+ secondary-on-surface: #783600,
41
+ tertiary-subtle: #cce1de,
42
+ tertiary-subtle-hover: #a6cbc6,
43
+ tertiary-subtle-active: #80b4ae,
44
+ tertiary: #00695c,
45
+ tertiary-hover: #006558,
46
+ tertiary-active: #005c51,
47
+ tertiary-emphasis: #408f85,
48
+ tertiary-on-subtle: #002520,
49
+ on-tertiary: white,
50
+ tertiary-on-surface: #00352e,
51
+ info-subtle: #ccdefb,
52
+ info-subtle-hover: #a6c5f7,
53
+ info-subtle-active: #80acf4,
54
+ info: #0058e9,
55
+ info-hover: #0054e0,
56
+ info-active: #004dcd,
57
+ info-emphasis: #4082ef,
58
+ info-on-subtle: #001f52,
59
+ on-info: white,
60
+ info-on-surface: #002c75,
61
+ success-subtle: #d7f0cc,
62
+ success-subtle-hover: #b9e5a6,
63
+ success-subtle-active: #9bda80,
64
+ success: #37b400,
65
+ success-hover: #35ad00,
66
+ success-active: #309e00,
67
+ success-emphasis: #69c740,
68
+ success-on-subtle: #133f00,
69
+ on-success: black,
70
+ success-on-surface: #1c5a00,
71
+ warning-subtle: #fff2cc,
72
+ warning-subtle-hover: #ffe9a6,
73
+ warning-subtle-active: #ffe080,
74
+ warning: #ffc000,
75
+ warning-hover: #f5b800,
76
+ warning-active: #e0a900,
77
+ warning-emphasis: #ffd040,
78
+ warning-on-subtle: #594300,
79
+ on-warning: black,
80
+ warning-on-surface: #806000,
81
+ error-subtle: #fdd1cc,
82
+ error-subtle-hover: #fbaea6,
83
+ error-subtle-active: #f98b80,
84
+ error: #f31700,
85
+ error-hover: #e91600,
86
+ error-active: #d61400,
87
+ error-emphasis: #f65140,
88
+ error-on-subtle: #550800,
89
+ on-error: black,
90
+ error-on-surface: #7a0c00,
91
+ series-a: #9c27b0,
92
+ series-a-bold: #751d84,
93
+ series-a-bolder: #4e1458,
94
+ series-a-subtle: #b55dc4,
95
+ series-a-subtler: #ce93d8,
96
+ series-b: #2196f3,
97
+ series-b-bold: #1971b6,
98
+ series-b-bolder: #114b7a,
99
+ series-b-subtle: #59b0f6,
100
+ series-b-subtler: #90cbf9,
101
+ series-c: #009688,
102
+ series-c-bold: #007166,
103
+ series-c-bolder: #004b44,
104
+ series-c-subtle: #40b0a6,
105
+ series-c-subtler: #80cbc4,
106
+ series-d: #ffeb3b,
107
+ series-d-bold: #bfb02c,
108
+ series-d-bolder: #80761e,
109
+ series-d-subtle: #fff06c,
110
+ series-d-subtler: #fff59d,
111
+ series-e: #f44336,
112
+ series-e-bold: #b73229,
113
+ series-e-bolder: #7a221b,
114
+ series-e-subtle: #f77268,
115
+ series-e-subtler: #faa19b,
116
+ series-f: #4caf50,
117
+ series-f-bold: #39833c,
118
+ series-f-bolder: #265828,
119
+ series-f-subtle: #79c37c,
120
+ series-f-subtler: #a6d7a8,
121
+ );
122
+
123
+ @if not ($kendo-enable-color-system) {
124
+ $primary-palette-name: teal !global;
125
+ $secondary-palette-name: orange !global;
126
+ $theme-type: light !global;
127
+ $adjust-contrast: true !global;
128
+ };
129
+
130
+
5
131
  @import "all.scss";
@@ -1,7 +1,46 @@
1
- $kendo-series-a: #3f51b5;
2
- $kendo-series-b: #2196f3;
3
- $kendo-series-c: #43a047;
4
- $kendo-series-d: #ffc107;
5
- $kendo-series-e: #ff5722;
6
- $kendo-series-f: #e91e63;
1
+ $kendo-enable-color-system: true;
2
+
3
+ $kendo-colors: (
4
+ series-a: #3f51b5,
5
+ series-a-bold: #2f3d88,
6
+ series-a-bolder: #20295b,
7
+ series-a-subtle: #6f7dc8,
8
+ series-a-subtler: #9fa8da,
9
+ series-b: #2196f3,
10
+ series-b-bold: #1971b6,
11
+ series-b-bolder: #114b7a,
12
+ series-b-subtle: #59b0f6,
13
+ series-b-subtler: #90cbf9,
14
+ series-c: #43a047,
15
+ series-c-bold: #327835,
16
+ series-c-bolder: #225024,
17
+ series-c-subtle: #72b875,
18
+ series-c-subtler: #a1d0a3,
19
+ series-d: #ffc107,
20
+ series-d-bold: #bf9105,
21
+ series-d-bolder: #806104,
22
+ series-d-subtle: #ffd145,
23
+ series-d-subtler: #ffe083,
24
+ series-e: #ff5722,
25
+ series-e-bold: #bf411a,
26
+ series-e-bolder: #802c11,
27
+ series-e-subtle: #ff8159,
28
+ series-e-subtler: #ffab91,
29
+ series-f: #e91e63,
30
+ series-f-bold: #af174a,
31
+ series-f-bolder: #750f32,
32
+ series-f-subtle: #ef568a,
33
+ series-f-subtler: #f48fb1,
34
+ );
35
+
36
+ @if not ($kendo-enable-color-system) {
37
+ $kendo-series-a: #3f51b5 !global;
38
+ $kendo-series-b: #2196f3 !global;
39
+ $kendo-series-c: #43a047 !global;
40
+ $kendo-series-d: #ffc107 !global;
41
+ $kendo-series-e: #ff5722 !global;
42
+ $kendo-series-f: #e91e63 !global;
43
+ };
44
+
45
+
7
46
  @import "all.scss";