@progress/kendo-theme-classic 6.0.4-dev.0 → 6.0.4-dev.1
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.
- package/dist/all.scss +4 -4
- package/dist/classic-lavender-dark.scss +40 -0
- package/dist/classic-lavender.scss +36 -0
- package/dist/classic-metro-dark.scss +41 -0
- package/dist/classic-metro.scss +40 -0
- package/dist/classic-moonlight.scss +40 -0
- package/dist/classic-opal-dark.scss +16 -11
- package/dist/classic-uniform.scss +32 -0
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-lavender-dark.json +248 -0
- package/lib/swatches/classic-lavender.json +228 -0
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-metro-dark.json +253 -0
- package/lib/swatches/classic-metro.json +248 -0
- package/lib/swatches/classic-moonlight.json +248 -0
- package/lib/swatches/classic-opal-dark.json +54 -29
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/lib/swatches/classic-uniform.json +208 -0
- package/lib/swatches/index.js +6 -0
- package/package.json +5 -5
package/dist/all.scss
CHANGED
|
@@ -472,7 +472,7 @@ $kendo-color-level-step: 8% !default;
|
|
|
472
472
|
}
|
|
473
473
|
|
|
474
474
|
@function k-try-shade( $color, $level: 1 ) {
|
|
475
|
-
$_dark-theme: if( k-meta-variable-exists( dark-theme ), $kendo-is-dark-theme, false );
|
|
475
|
+
$_dark-theme: if( k-meta-variable-exists( kendo-is-dark-theme ), $kendo-is-dark-theme, false );
|
|
476
476
|
|
|
477
477
|
@if $_dark-theme {
|
|
478
478
|
@return k-color-tint( $color, $level );
|
|
@@ -481,7 +481,7 @@ $kendo-color-level-step: 8% !default;
|
|
|
481
481
|
@return k-color-shade( $color, $level );
|
|
482
482
|
}
|
|
483
483
|
@function k-try-tint( $color, $level: 1 ) {
|
|
484
|
-
$_dark-theme: if( k-meta-variable-exists( dark-theme ), $kendo-is-dark-theme, false );
|
|
484
|
+
$_dark-theme: if( k-meta-variable-exists( kendo-is-dark-theme ), $kendo-is-dark-theme, false );
|
|
485
485
|
|
|
486
486
|
@if $_dark-theme {
|
|
487
487
|
@return k-color-shade( $color, $level );
|
|
@@ -492,7 +492,7 @@ $kendo-color-level-step: 8% !default;
|
|
|
492
492
|
|
|
493
493
|
|
|
494
494
|
@function k-try-darken( $color, $amount ) {
|
|
495
|
-
$_dark-theme: if( k-meta-variable-exists( dark-theme ), $kendo-is-dark-theme, false );
|
|
495
|
+
$_dark-theme: if( k-meta-variable-exists( kendo-is-dark-theme ), $kendo-is-dark-theme, false );
|
|
496
496
|
|
|
497
497
|
@if $_dark-theme {
|
|
498
498
|
@return k-color-lighten( $color, $amount );
|
|
@@ -501,7 +501,7 @@ $kendo-color-level-step: 8% !default;
|
|
|
501
501
|
}
|
|
502
502
|
|
|
503
503
|
@function k-try-lighten( $color, $amount ) {
|
|
504
|
-
$_dark-theme: if( k-meta-variable-exists( dark-theme ), $kendo-is-dark-theme, false );
|
|
504
|
+
$_dark-theme: if( k-meta-variable-exists( kendo-is-dark-theme ), $kendo-is-dark-theme, false );
|
|
505
505
|
|
|
506
506
|
@if $_dark-theme {
|
|
507
507
|
@return k-color-darken( $color, $amount );
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
$kendo-is-dark-theme: true;
|
|
2
|
+
$kendo-color-primary: #a4008c;
|
|
3
|
+
$kendo-color-secondary: #2c232b;
|
|
4
|
+
$kendo-color-info: #007bc3;
|
|
5
|
+
$kendo-color-success: #3ea44e;
|
|
6
|
+
$kendo-color-warning: #ff9800;
|
|
7
|
+
$kendo-color-error: #d92800;
|
|
8
|
+
$kendo-body-bg: #000000;
|
|
9
|
+
$kendo-body-text: #ffffff;
|
|
10
|
+
$kendo-subtle-text: #e0e0e0;
|
|
11
|
+
$kendo-disabled-text: #d0d0d0;
|
|
12
|
+
$kendo-component-bg: #1b141a;
|
|
13
|
+
$kendo-component-text: #ffffff;
|
|
14
|
+
$kendo-component-border: #674c63;
|
|
15
|
+
$kendo-base-bg: #1b141a;
|
|
16
|
+
$kendo-base-text: #ffffff;
|
|
17
|
+
$kendo-base-border: #674c63;
|
|
18
|
+
$kendo-hover-bg: #520046;
|
|
19
|
+
$kendo-hover-text: #ffffff;
|
|
20
|
+
$kendo-hover-border: #674c63;
|
|
21
|
+
$kendo-selected-bg: #a4008c;
|
|
22
|
+
$kendo-selected-text: #ffffff;
|
|
23
|
+
$kendo-button-bg: #2c232b;
|
|
24
|
+
$kendo-button-text: #ffffff;
|
|
25
|
+
$kendo-button-border: #674c63;
|
|
26
|
+
$kendo-link-text: #d700b8;
|
|
27
|
+
$kendo-link-hover-text: #ff40e3;
|
|
28
|
+
$kendo-series-a: #007bc3;
|
|
29
|
+
$kendo-series-b: #3ea44e;
|
|
30
|
+
$kendo-series-c: #ffae00;
|
|
31
|
+
$kendo-series-d: #ef4c00;
|
|
32
|
+
$kendo-series-e: #a419b7;
|
|
33
|
+
$kendo-series-f: #430b62;
|
|
34
|
+
$kendo-enable-gradients: false;
|
|
35
|
+
$kendo-enable-rounded: false;
|
|
36
|
+
$kendo-focus-shadow: 0 0 0 2px rgba( 255, 255, 255, .75 );
|
|
37
|
+
$kendo-focus-inset-shadow: inset 0 0 0 2px rgba( 255, 255, 255, .75 );
|
|
38
|
+
$kendo-list-item-focus-shadow: $kendo-focus-inset-shadow;
|
|
39
|
+
$kendo-treeview-item-focus-shadow: $kendo-focus-inset-shadow;
|
|
40
|
+
@import "all.scss";
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
$kendo-is-dark-theme: false;
|
|
2
|
+
$kendo-color-primary: #9e5da9;
|
|
3
|
+
$kendo-color-secondary: #f6f6f6;
|
|
4
|
+
$kendo-color-info: #3e80ed;
|
|
5
|
+
$kendo-color-success: #5ec232;
|
|
6
|
+
$kendo-color-warning: #fdce3e;
|
|
7
|
+
$kendo-color-error: #d51923;
|
|
8
|
+
$kendo-body-text: #121212;
|
|
9
|
+
$kendo-body-bg: #ffffff;
|
|
10
|
+
$kendo-subtle-text: #666666;
|
|
11
|
+
$kendo-disabled-text: #8f8f8f;
|
|
12
|
+
$kendo-component-text: #121212;
|
|
13
|
+
$kendo-component-bg: #ffffff;
|
|
14
|
+
$kendo-base-text: #121212;
|
|
15
|
+
$kendo-base-bg: #fafafa;
|
|
16
|
+
$kendo-hover-text: #121212;
|
|
17
|
+
$kendo-hover-bg: #ececec;
|
|
18
|
+
$kendo-selected-text: #ffffff;
|
|
19
|
+
$kendo-selected-bg: #9e5da9;
|
|
20
|
+
$kendo-button-text: #121212;
|
|
21
|
+
$kendo-button-bg: #f5f5f5;
|
|
22
|
+
$kendo-link-text: #9e5da9;
|
|
23
|
+
$kendo-link-hover-text: #77467f;
|
|
24
|
+
$kendo-series-a: #bf70cc;
|
|
25
|
+
$kendo-series-b: #ffd246;
|
|
26
|
+
$kendo-series-c: #78d237;
|
|
27
|
+
$kendo-series-d: #28b4c8;
|
|
28
|
+
$kendo-series-e: #2d73f5;
|
|
29
|
+
$kendo-series-f: #aa46be;
|
|
30
|
+
$kendo-enable-gradients: false;
|
|
31
|
+
$kendo-enable-rounded: true;
|
|
32
|
+
$kendo-focus-shadow: 0 0 0 2px rgba( 0, 0, 0, .12 );
|
|
33
|
+
$kendo-focus-inset-shadow: inset 0 0 0 2px rgba( 0, 0, 0, .12 );
|
|
34
|
+
$kendo-list-item-focus-shadow: $kendo-focus-inset-shadow;
|
|
35
|
+
$kendo-treeview-item-focus-shadow: $kendo-focus-inset-shadow;
|
|
36
|
+
@import "all.scss";
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
$kendo-is-dark-theme: true;
|
|
2
|
+
$kendo-color-primary: #008381;
|
|
3
|
+
$kendo-color-secondary: #2c232b;
|
|
4
|
+
$kendo-color-info: #007bc3;
|
|
5
|
+
$kendo-color-success: #3ea44e;
|
|
6
|
+
$kendo-color-warning: #ff9800;
|
|
7
|
+
$kendo-color-error: #d92800;
|
|
8
|
+
$kendo-body-bg: #000000;
|
|
9
|
+
$kendo-body-text: #ffffff;
|
|
10
|
+
$kendo-subtle-text: #e0e0e0;
|
|
11
|
+
$kendo-disabled-text: #d0d0d0;
|
|
12
|
+
$kendo-component-bg: #0e0e0e;
|
|
13
|
+
$kendo-component-text: #ffffff;
|
|
14
|
+
$kendo-component-border: #323232;
|
|
15
|
+
$kendo-base-bg: #0e0e0e;
|
|
16
|
+
$kendo-base-text: #ffffff;
|
|
17
|
+
$kendo-base-border: #323232;
|
|
18
|
+
$kendo-hover-bg: #004443;
|
|
19
|
+
$kendo-hover-text: #ffffff;
|
|
20
|
+
$kendo-hover-border: #323232;
|
|
21
|
+
$kendo-selected-bg: #008381;
|
|
22
|
+
$kendo-selected-text: #ffffff;
|
|
23
|
+
$kendo-button-bg: #2c232b;
|
|
24
|
+
$kendo-button-text: #ffffff;
|
|
25
|
+
$kendo-button-border: #323232;
|
|
26
|
+
$kendo-link-text: #008381;
|
|
27
|
+
$kendo-link-hover-text: #00a7a5;
|
|
28
|
+
$kendo-series-a: #007bc3;
|
|
29
|
+
$kendo-series-b: #3ea44e;
|
|
30
|
+
$kendo-series-c: #ffae00;
|
|
31
|
+
$kendo-series-d: #ef4c00;
|
|
32
|
+
$kendo-series-e: #a419b7;
|
|
33
|
+
$kendo-series-f: #430b62;
|
|
34
|
+
$kendo-enable-gradients: false;
|
|
35
|
+
$kendo-enable-rounded: false;
|
|
36
|
+
$kendo-focus-shadow: 0 0 0 2px rgba( 255, 255, 255, .75 );
|
|
37
|
+
$kendo-focus-inset-shadow: inset 0 0 0 2px rgba( 255, 255, 255, .75 );
|
|
38
|
+
$kendo-list-item-focus-shadow: $kendo-focus-inset-shadow;
|
|
39
|
+
$kendo-treeview-item-focus-shadow: $kendo-focus-inset-shadow;
|
|
40
|
+
$kendo-grid-alt-bg: #1d1d1d;
|
|
41
|
+
@import "all.scss";
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
$kendo-is-dark-theme: false;
|
|
2
|
+
$kendo-color-primary: #618000;
|
|
3
|
+
$kendo-color-secondary: #2c232b;
|
|
4
|
+
$kendo-color-info: #007bc3;
|
|
5
|
+
$kendo-color-success: #3ea44e;
|
|
6
|
+
$kendo-color-warning: #ff9800;
|
|
7
|
+
$kendo-color-error: #d92800;
|
|
8
|
+
$kendo-body-bg: #ffffff;
|
|
9
|
+
$kendo-body-text: #000000;
|
|
10
|
+
$kendo-subtle-text: #333333;
|
|
11
|
+
$kendo-disabled-text: #555555;
|
|
12
|
+
$kendo-component-bg: #ffffff;
|
|
13
|
+
$kendo-component-text: #000000;
|
|
14
|
+
$kendo-component-border: #dbdbdb;
|
|
15
|
+
$kendo-base-bg: #f9f9f9;
|
|
16
|
+
$kendo-base-text: #000000;
|
|
17
|
+
$kendo-base-border: #dbdbdb;
|
|
18
|
+
$kendo-hover-bg: #4e6900;
|
|
19
|
+
$kendo-hover-text: #ffffff;
|
|
20
|
+
$kendo-hover-border: #4e6900;
|
|
21
|
+
$kendo-selected-bg: #618000;
|
|
22
|
+
$kendo-selected-text: #ffffff;
|
|
23
|
+
$kendo-button-bg: #f9f9f9;
|
|
24
|
+
$kendo-button-text: #000000;
|
|
25
|
+
$kendo-button-border: #dbdbdb;
|
|
26
|
+
$kendo-link-text: #618000;
|
|
27
|
+
$kendo-link-hover-text: #618000;
|
|
28
|
+
$kendo-series-a: #007bc3;
|
|
29
|
+
$kendo-series-b: #3ea44e;
|
|
30
|
+
$kendo-series-c: #ffae00;
|
|
31
|
+
$kendo-series-d: #ef4c00;
|
|
32
|
+
$kendo-series-e: #a419b7;
|
|
33
|
+
$kendo-series-f: #430b62;
|
|
34
|
+
$kendo-enable-gradients: false;
|
|
35
|
+
$kendo-enable-rounded: false;
|
|
36
|
+
$kendo-focus-shadow: 0 0 0 2px rgba( 0, 0, 0, .12 );
|
|
37
|
+
$kendo-focus-inset-shadow: inset 0 0 0 2px rgba( 0, 0, 0, .12 );
|
|
38
|
+
$kendo-list-item-focus-shadow: $kendo-focus-inset-shadow;
|
|
39
|
+
$kendo-treeview-item-focus-shadow: $kendo-focus-inset-shadow;
|
|
40
|
+
@import "all.scss";
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
$kendo-is-dark-theme: true;
|
|
2
|
+
$kendo-color-primary: #f4af03;
|
|
3
|
+
$kendo-color-secondary: #212a33;
|
|
4
|
+
$kendo-color-info: #0c779b;
|
|
5
|
+
$kendo-color-success: #2b893c;
|
|
6
|
+
$kendo-color-warning: #ea9d07;
|
|
7
|
+
$kendo-color-error: #be5138;
|
|
8
|
+
$kendo-body-bg: #1f2a35;
|
|
9
|
+
$kendo-body-text: #ffffff;
|
|
10
|
+
$kendo-subtle-text: #e0e0e0;
|
|
11
|
+
$kendo-disabled-text: #d0d0d0;
|
|
12
|
+
$kendo-component-bg: #303742;
|
|
13
|
+
$kendo-component-text: #ffffff;
|
|
14
|
+
$kendo-component-border: #394958;
|
|
15
|
+
$kendo-base-bg: #414550;
|
|
16
|
+
$kendo-base-text: #ffffff;
|
|
17
|
+
$kendo-base-border: #394958;
|
|
18
|
+
$kendo-hover-bg: #3f4450;
|
|
19
|
+
$kendo-hover-text: #ffffff;
|
|
20
|
+
$kendo-hover-border: #394958;
|
|
21
|
+
$kendo-selected-bg: #f4af03;
|
|
22
|
+
$kendo-selected-text: #000000;
|
|
23
|
+
$kendo-button-bg: #212a33;
|
|
24
|
+
$kendo-button-text: #ffffff;
|
|
25
|
+
$kendo-button-border: #394958;
|
|
26
|
+
$kendo-link-text: #f4af03;
|
|
27
|
+
$kendo-link-hover-text: #ffb700;
|
|
28
|
+
$kendo-series-a: #007bc3;
|
|
29
|
+
$kendo-series-b: #3ea44e;
|
|
30
|
+
$kendo-series-c: #ffae00;
|
|
31
|
+
$kendo-series-d: #ef4c00;
|
|
32
|
+
$kendo-series-e: #a419b7;
|
|
33
|
+
$kendo-series-f: #430b62;
|
|
34
|
+
$kendo-enable-rounded: false;
|
|
35
|
+
$kendo-focus-shadow: 0 0 0 2px rgba( 255, 255, 255, .75 );
|
|
36
|
+
$kendo-focus-inset-shadow: inset 0 0 0 2px rgba( 255, 255, 255, .75 );
|
|
37
|
+
$kendo-list-item-focus-shadow: $kendo-focus-inset-shadow;
|
|
38
|
+
$kendo-treeview-item-focus-shadow: $kendo-focus-inset-shadow;
|
|
39
|
+
$kendo-grid-alt-bg: #212a33;
|
|
40
|
+
@import "all.scss";
|
|
@@ -1,26 +1,31 @@
|
|
|
1
1
|
$kendo-is-dark-theme: true;
|
|
2
|
-
$kendo-color-primary: #
|
|
3
|
-
$kendo-color-secondary: #
|
|
2
|
+
$kendo-color-primary: #0066cc;
|
|
3
|
+
$kendo-color-secondary: #2a2a2a;
|
|
4
4
|
$kendo-color-info: #007bc3;
|
|
5
5
|
$kendo-color-success: #3ea44e;
|
|
6
6
|
$kendo-color-warning: #ff9800;
|
|
7
7
|
$kendo-color-error: #d92800;
|
|
8
|
-
$kendo-body-text: #ffffff;
|
|
9
8
|
$kendo-body-bg: #000000;
|
|
9
|
+
$kendo-body-text: #ffffff;
|
|
10
10
|
$kendo-subtle-text: #e0e0e0;
|
|
11
11
|
$kendo-disabled-text: #d0d0d0;
|
|
12
|
+
$kendo-component-bg: #000000;
|
|
12
13
|
$kendo-component-text: #ffffff;
|
|
13
|
-
$kendo-component-
|
|
14
|
+
$kendo-component-border: #4d4d4d;
|
|
15
|
+
$kendo-base-bg: #272727;
|
|
14
16
|
$kendo-base-text: #ffffff;
|
|
15
|
-
$kendo-base-
|
|
17
|
+
$kendo-base-border: #4d4d4d;
|
|
18
|
+
$kendo-hover-bg: #2a2a2a;
|
|
16
19
|
$kendo-hover-text: #ffffff;
|
|
17
|
-
$kendo-hover-
|
|
18
|
-
$kendo-selected-
|
|
19
|
-
$kendo-selected-
|
|
20
|
+
$kendo-hover-border: #4d4d4d;
|
|
21
|
+
$kendo-selected-bg: #0066cc;
|
|
22
|
+
$kendo-selected-text: #ffffff;
|
|
23
|
+
$kendo-selected-border: #0066cc;
|
|
24
|
+
$kendo-button-bg: #272727;
|
|
20
25
|
$kendo-button-text: #ffffff;
|
|
21
|
-
$kendo-button-
|
|
22
|
-
$kendo-link-text: #
|
|
23
|
-
$kendo-link-hover-text: #
|
|
26
|
+
$kendo-button-border: #4d4d4d;
|
|
27
|
+
$kendo-link-text: #0073e6;
|
|
28
|
+
$kendo-link-hover-text: #3298ff;
|
|
24
29
|
$kendo-series-a: #007bc3;
|
|
25
30
|
$kendo-series-b: #3ea44e;
|
|
26
31
|
$kendo-series-c: #ffae00;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
$kendo-is-dark-theme: false;
|
|
2
|
+
$kendo-color-primary: #818181;
|
|
3
|
+
$kendo-color-secondary: #e9e9e9;
|
|
4
|
+
$kendo-color-info: #007bc3;
|
|
5
|
+
$kendo-color-success: #3ea44e;
|
|
6
|
+
$kendo-color-warning: #ff9800;
|
|
7
|
+
$kendo-color-error: #d92800;
|
|
8
|
+
$kendo-body-text: #272727;
|
|
9
|
+
$kendo-body-bg: #ffffff;
|
|
10
|
+
$kendo-subtle-text: #666666;
|
|
11
|
+
$kendo-disabled-text: #8f8f8f;
|
|
12
|
+
$kendo-component-text: #272727;
|
|
13
|
+
$kendo-component-bg: #ffffff;
|
|
14
|
+
$kendo-base-text: #676767;
|
|
15
|
+
$kendo-base-bg: #f0f0f0;
|
|
16
|
+
$kendo-hover-text: #676767;
|
|
17
|
+
$kendo-hover-bg: #f9f9f9;
|
|
18
|
+
$kendo-selected-text: #FFFFFF;
|
|
19
|
+
$kendo-selected-bg: #818181;
|
|
20
|
+
$kendo-button-text: #FFFFFF;
|
|
21
|
+
$kendo-button-bg: #818181;
|
|
22
|
+
$kendo-link-text: #818181;
|
|
23
|
+
$kendo-link-hover-text: #cc4a00;
|
|
24
|
+
$kendo-series-a: #007bc3;
|
|
25
|
+
$kendo-series-b: #3ea44e;
|
|
26
|
+
$kendo-series-c: #ffae00;
|
|
27
|
+
$kendo-series-d: #ef4c00;
|
|
28
|
+
$kendo-series-e: #a419b7;
|
|
29
|
+
$kendo-series-f: #430b62;
|
|
30
|
+
$kendo-toolbar-bg: #f4f4f4;
|
|
31
|
+
$kendo-toolbar-text: #454545;
|
|
32
|
+
@import "all.scss";
|
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://unpkg.com/@progress/kendo-theme-tasks@1.14.0/lib/schemas/kendo-swatch.json",
|
|
3
|
+
"name": "Classic Lavender Dark",
|
|
4
|
+
"product": "kendo",
|
|
5
|
+
"base": "@progress/kendo-theme-classic",
|
|
6
|
+
"version": "6.0.4-dev.1",
|
|
7
|
+
"api": "legacy",
|
|
8
|
+
"previewColors": [
|
|
9
|
+
"#000000",
|
|
10
|
+
"#1b141a",
|
|
11
|
+
"#a4008c",
|
|
12
|
+
"#ff40e3",
|
|
13
|
+
"#ffffff"
|
|
14
|
+
],
|
|
15
|
+
"components": [],
|
|
16
|
+
"groups": [
|
|
17
|
+
{
|
|
18
|
+
"name": "Theme colors",
|
|
19
|
+
"variables": {
|
|
20
|
+
"kendo-is-dark-theme": {
|
|
21
|
+
"name": "Dark theme",
|
|
22
|
+
"type": "boolean",
|
|
23
|
+
"value": true
|
|
24
|
+
},
|
|
25
|
+
"kendo-color-primary": {
|
|
26
|
+
"name": "Primary",
|
|
27
|
+
"type": "color",
|
|
28
|
+
"value": "#a4008c"
|
|
29
|
+
},
|
|
30
|
+
"kendo-color-secondary": {
|
|
31
|
+
"name": "Secondary",
|
|
32
|
+
"type": "color",
|
|
33
|
+
"value": "#2c232b"
|
|
34
|
+
},
|
|
35
|
+
"kendo-color-info": {
|
|
36
|
+
"name": "Info",
|
|
37
|
+
"type": "color",
|
|
38
|
+
"value": "#007bc3"
|
|
39
|
+
},
|
|
40
|
+
"kendo-color-success": {
|
|
41
|
+
"name": "Success",
|
|
42
|
+
"type": "color",
|
|
43
|
+
"value": "#3ea44e"
|
|
44
|
+
},
|
|
45
|
+
"kendo-color-warning": {
|
|
46
|
+
"name": "Warning",
|
|
47
|
+
"type": "color",
|
|
48
|
+
"value": "#ff9800"
|
|
49
|
+
},
|
|
50
|
+
"kendo-color-error": {
|
|
51
|
+
"name": "Error",
|
|
52
|
+
"type": "color",
|
|
53
|
+
"value": "#d92800"
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"name": "Body",
|
|
59
|
+
"variables": {
|
|
60
|
+
"kendo-body-bg": {
|
|
61
|
+
"name": "Body background",
|
|
62
|
+
"type": "color",
|
|
63
|
+
"value": "#000000"
|
|
64
|
+
},
|
|
65
|
+
"kendo-body-text": {
|
|
66
|
+
"name": "Body text color",
|
|
67
|
+
"type": "color",
|
|
68
|
+
"value": "#ffffff"
|
|
69
|
+
},
|
|
70
|
+
"kendo-subtle-text": {
|
|
71
|
+
"name": "Subtle text color",
|
|
72
|
+
"type": "color",
|
|
73
|
+
"value": "#e0e0e0"
|
|
74
|
+
},
|
|
75
|
+
"kendo-disabled-text": {
|
|
76
|
+
"name": "Disabled text color",
|
|
77
|
+
"type": "color",
|
|
78
|
+
"value": "#d0d0d0"
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "Components",
|
|
84
|
+
"variables": {
|
|
85
|
+
"kendo-component-bg": {
|
|
86
|
+
"name": "Component background",
|
|
87
|
+
"type": "color",
|
|
88
|
+
"value": "#1b141a"
|
|
89
|
+
},
|
|
90
|
+
"kendo-component-text": {
|
|
91
|
+
"name": "Component text color",
|
|
92
|
+
"type": "color",
|
|
93
|
+
"value": "#ffffff"
|
|
94
|
+
},
|
|
95
|
+
"kendo-component-border": {
|
|
96
|
+
"name": "Component border color",
|
|
97
|
+
"type": "color",
|
|
98
|
+
"value": "#674c63"
|
|
99
|
+
},
|
|
100
|
+
"kendo-base-bg": {
|
|
101
|
+
"name": "Header background",
|
|
102
|
+
"type": "color",
|
|
103
|
+
"value": "#1b141a"
|
|
104
|
+
},
|
|
105
|
+
"kendo-base-text": {
|
|
106
|
+
"name": "Header text color",
|
|
107
|
+
"type": "color",
|
|
108
|
+
"value": "#ffffff"
|
|
109
|
+
},
|
|
110
|
+
"kendo-base-border": {
|
|
111
|
+
"name": "Header border color",
|
|
112
|
+
"type": "color",
|
|
113
|
+
"value": "#674c63"
|
|
114
|
+
},
|
|
115
|
+
"kendo-hover-bg": {
|
|
116
|
+
"name": "Hover background",
|
|
117
|
+
"type": "color",
|
|
118
|
+
"value": "#520046"
|
|
119
|
+
},
|
|
120
|
+
"kendo-hover-text": {
|
|
121
|
+
"name": "Hover text color",
|
|
122
|
+
"type": "color",
|
|
123
|
+
"value": "#ffffff"
|
|
124
|
+
},
|
|
125
|
+
"kendo-hover-border": {
|
|
126
|
+
"name": "Hover border color",
|
|
127
|
+
"type": "color",
|
|
128
|
+
"value": "#674c63"
|
|
129
|
+
},
|
|
130
|
+
"kendo-selected-bg": {
|
|
131
|
+
"name": "Selected background",
|
|
132
|
+
"type": "color",
|
|
133
|
+
"value": "#a4008c"
|
|
134
|
+
},
|
|
135
|
+
"kendo-selected-text": {
|
|
136
|
+
"name": "Selected text color",
|
|
137
|
+
"type": "color",
|
|
138
|
+
"value": "#ffffff"
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"name": "Button",
|
|
144
|
+
"variables": {
|
|
145
|
+
"kendo-button-bg": {
|
|
146
|
+
"name": "Button background",
|
|
147
|
+
"type": "color",
|
|
148
|
+
"value": "#2c232b"
|
|
149
|
+
},
|
|
150
|
+
"kendo-button-text": {
|
|
151
|
+
"name": "Button text color",
|
|
152
|
+
"type": "color",
|
|
153
|
+
"value": "#ffffff"
|
|
154
|
+
},
|
|
155
|
+
"kendo-button-border": {
|
|
156
|
+
"name": "Button border color",
|
|
157
|
+
"type": "color",
|
|
158
|
+
"value": "#674c63"
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"name": "Link",
|
|
164
|
+
"variables": {
|
|
165
|
+
"kendo-link-text": {
|
|
166
|
+
"name": "Link text color",
|
|
167
|
+
"type": "color",
|
|
168
|
+
"value": "#d700b8"
|
|
169
|
+
},
|
|
170
|
+
"kendo-link-hover-text": {
|
|
171
|
+
"name": "Link hover text color",
|
|
172
|
+
"type": "color",
|
|
173
|
+
"value": "#ff40e3"
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"name": "Dataviz",
|
|
179
|
+
"variables": {
|
|
180
|
+
"kendo-series-a": {
|
|
181
|
+
"name": "Series A",
|
|
182
|
+
"type": "color",
|
|
183
|
+
"value": "#007bc3"
|
|
184
|
+
},
|
|
185
|
+
"kendo-series-b": {
|
|
186
|
+
"name": "Series B",
|
|
187
|
+
"type": "color",
|
|
188
|
+
"value": "#3ea44e"
|
|
189
|
+
},
|
|
190
|
+
"kendo-series-c": {
|
|
191
|
+
"name": "Series C",
|
|
192
|
+
"type": "color",
|
|
193
|
+
"value": "#ffae00"
|
|
194
|
+
},
|
|
195
|
+
"kendo-series-d": {
|
|
196
|
+
"name": "Series D",
|
|
197
|
+
"type": "color",
|
|
198
|
+
"value": "#ef4c00"
|
|
199
|
+
},
|
|
200
|
+
"kendo-series-e": {
|
|
201
|
+
"name": "Series E",
|
|
202
|
+
"type": "color",
|
|
203
|
+
"value": "#a419b7"
|
|
204
|
+
},
|
|
205
|
+
"kendo-series-f": {
|
|
206
|
+
"name": "Series F",
|
|
207
|
+
"type": "color",
|
|
208
|
+
"value": "#430b62"
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"hidden": true,
|
|
214
|
+
"variables": {
|
|
215
|
+
"kendo-enable-gradients": {
|
|
216
|
+
"name": "Enable gradients",
|
|
217
|
+
"type": "boolean",
|
|
218
|
+
"value": false
|
|
219
|
+
},
|
|
220
|
+
"kendo-enable-rounded": {
|
|
221
|
+
"name": "Enable rounded corners",
|
|
222
|
+
"type": "boolean",
|
|
223
|
+
"value": false
|
|
224
|
+
},
|
|
225
|
+
"kendo-focus-shadow": {
|
|
226
|
+
"name": "Focus shadow",
|
|
227
|
+
"type": "shadow",
|
|
228
|
+
"value": "0 0 0 2px rgba( 255, 255, 255, .75 )"
|
|
229
|
+
},
|
|
230
|
+
"kendo-focus-inset-shadow": {
|
|
231
|
+
"name": "Inset focus shadow",
|
|
232
|
+
"type": "shadow",
|
|
233
|
+
"value": "inset 0 0 0 2px rgba( 255, 255, 255, .75 )"
|
|
234
|
+
},
|
|
235
|
+
"kendo-list-item-focus-shadow": {
|
|
236
|
+
"name": "List item focus shadow",
|
|
237
|
+
"type": "shadow",
|
|
238
|
+
"value": "$kendo-focus-inset-shadow"
|
|
239
|
+
},
|
|
240
|
+
"kendo-treeview-item-focus-shadow": {
|
|
241
|
+
"name": "Treeview item focus shadow",
|
|
242
|
+
"type": "shadow",
|
|
243
|
+
"value": "$kendo-focus-inset-shadow"
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
]
|
|
248
|
+
}
|