@operato/context 2.0.0-alpha.146 → 2.0.0-alpha.149
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/CHANGELOG.md +29 -0
- package/dist/src/layouts/ox-context-page-toolbar.js +15 -9
- package/dist/src/layouts/ox-context-page-toolbar.js.map +1 -1
- package/dist/src/layouts/ox-context-toolbar.js +20 -21
- package/dist/src/layouts/ox-context-toolbar.js.map +1 -1
- package/dist/src/tools/ox-page-action-context-bar.js +15 -13
- package/dist/src/tools/ox-page-action-context-bar.js.map +1 -1
- package/dist/src/tools/ox-page-action-overlay-template.js +1 -1
- package/dist/src/tools/ox-page-action-overlay-template.js.map +1 -1
- package/dist/src/tools/ox-page-title-bar.js +9 -8
- package/dist/src/tools/ox-page-title-bar.js.map +1 -1
- package/dist/src/tools/ox-title-bar.js +7 -8
- package/dist/src/tools/ox-title-bar.js.map +1 -1
- package/dist/stories/ox-context-page-toolbar-select-buttons.stories.d.ts +5 -0
- package/dist/stories/ox-context-page-toolbar-select-buttons.stories.js +59 -30
- package/dist/stories/ox-context-page-toolbar-select-buttons.stories.js.map +1 -1
- package/dist/stories/ox-context-page-toolbar-select.stories.d.ts +5 -0
- package/dist/stories/ox-context-page-toolbar-select.stories.js +51 -25
- package/dist/stories/ox-context-page-toolbar-select.stories.js.map +1 -1
- package/dist/stories/ox-context-page-toolbar.stories.d.ts +5 -0
- package/dist/stories/ox-context-page-toolbar.stories.js +53 -26
- package/dist/stories/ox-context-page-toolbar.stories.js.map +1 -1
- package/dist/stories/ox-context-toolbar-complex.stories.d.ts +7 -1
- package/dist/stories/ox-context-toolbar-complex.stories.js +31 -8
- package/dist/stories/ox-context-toolbar-complex.stories.js.map +1 -1
- package/dist/stories/ox-context-toolbar-empty.stories.d.ts +7 -1
- package/dist/stories/ox-context-toolbar-empty.stories.js +31 -8
- package/dist/stories/ox-context-toolbar-empty.stories.js.map +1 -1
- package/dist/stories/ox-context-toolbar-overflow.stories.d.ts +7 -1
- package/dist/stories/ox-context-toolbar-overflow.stories.js +35 -9
- package/dist/stories/ox-context-toolbar-overflow.stories.js.map +1 -1
- package/dist/stories/ox-context-toolbar.stories.d.ts +1 -0
- package/dist/stories/ox-context-toolbar.stories.js +32 -7
- package/dist/stories/ox-context-toolbar.stories.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -7
- package/src/layouts/ox-context-page-toolbar.ts +15 -9
- package/src/layouts/ox-context-toolbar.ts +20 -21
- package/src/tools/ox-page-action-context-bar.ts +15 -13
- package/src/tools/ox-page-action-overlay-template.ts +1 -1
- package/src/tools/ox-page-title-bar.ts +9 -8
- package/src/tools/ox-title-bar.ts +7 -8
- package/stories/ox-context-page-toolbar-select-buttons.stories.ts +122 -91
- package/stories/ox-context-page-toolbar-select.stories.ts +91 -64
- package/stories/ox-context-page-toolbar.stories.ts +92 -63
- package/stories/ox-context-toolbar-complex.stories.ts +34 -9
- package/stories/ox-context-toolbar-empty.stories.ts +34 -9
- package/stories/ox-context-toolbar-overflow.stories.ts +38 -10
- package/stories/ox-context-toolbar.stories.ts +35 -8
- package/themes/dark-hc.css +51 -0
- package/themes/dark-mc.css +51 -0
- package/themes/dark.css +51 -0
- package/themes/light-hc.css +51 -0
- package/themes/light-mc.css +51 -0
- package/themes/light.css +57 -0
- package/themes/md-typescale-styles.css +100 -0
- package/themes/spacing.css +13 -0
- package/themes/state-color.css +6 -0
- package/themes/app-theme.css +0 -161
- package/themes/context-theme.css +0 -74
- package/themes/material-theme.css +0 -88
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
.light-high-contrast {
|
|
2
|
+
--md-sys-color-primary: rgb(20 39 0);
|
|
3
|
+
--md-sys-color-surface-tint: rgb(76 102 43);
|
|
4
|
+
--md-sys-color-on-primary: rgb(255 255 255);
|
|
5
|
+
--md-sys-color-primary-container: rgb(49 74 18);
|
|
6
|
+
--md-sys-color-on-primary-container: rgb(255 255 255);
|
|
7
|
+
--md-sys-color-secondary: rgb(28 37 17);
|
|
8
|
+
--md-sys-color-on-secondary: rgb(255 255 255);
|
|
9
|
+
--md-sys-color-secondary-container: rgb(60 70 47);
|
|
10
|
+
--md-sys-color-on-secondary-container: rgb(255 255 255);
|
|
11
|
+
--md-sys-color-tertiary: rgb(0 39 37);
|
|
12
|
+
--md-sys-color-on-tertiary: rgb(255 255 255);
|
|
13
|
+
--md-sys-color-tertiary-container: rgb(26 74 71);
|
|
14
|
+
--md-sys-color-on-tertiary-container: rgb(255 255 255);
|
|
15
|
+
--md-sys-color-error: rgb(78 0 2);
|
|
16
|
+
--md-sys-color-on-error: rgb(255 255 255);
|
|
17
|
+
--md-sys-color-error-container: rgb(140 0 9);
|
|
18
|
+
--md-sys-color-on-error-container: rgb(255 255 255);
|
|
19
|
+
--md-sys-color-background: rgb(249 250 239);
|
|
20
|
+
--md-sys-color-on-background: rgb(26 28 22);
|
|
21
|
+
--md-sys-color-surface: rgb(249 250 239);
|
|
22
|
+
--md-sys-color-on-surface: rgb(0 0 0);
|
|
23
|
+
--md-sys-color-surface-variant: rgb(225 228 213);
|
|
24
|
+
--md-sys-color-on-surface-variant: rgb(33 37 28);
|
|
25
|
+
--md-sys-color-outline: rgb(64 68 57);
|
|
26
|
+
--md-sys-color-outline-variant: rgb(64 68 57);
|
|
27
|
+
--md-sys-color-shadow: rgb(0 0 0);
|
|
28
|
+
--md-sys-color-scrim: rgb(0 0 0);
|
|
29
|
+
--md-sys-color-inverse-surface: rgb(47 49 42);
|
|
30
|
+
--md-sys-color-inverse-on-surface: rgb(255 255 255);
|
|
31
|
+
--md-sys-color-inverse-primary: rgb(214 247 172);
|
|
32
|
+
--md-sys-color-primary-fixed: rgb(49 74 18);
|
|
33
|
+
--md-sys-color-on-primary-fixed: rgb(255 255 255);
|
|
34
|
+
--md-sys-color-primary-fixed-dim: rgb(28 51 0);
|
|
35
|
+
--md-sys-color-on-primary-fixed-variant: rgb(255 255 255);
|
|
36
|
+
--md-sys-color-secondary-fixed: rgb(60 70 47);
|
|
37
|
+
--md-sys-color-on-secondary-fixed: rgb(255 255 255);
|
|
38
|
+
--md-sys-color-secondary-fixed-dim: rgb(38 48 27);
|
|
39
|
+
--md-sys-color-on-secondary-fixed-variant: rgb(255 255 255);
|
|
40
|
+
--md-sys-color-tertiary-fixed: rgb(26 74 71);
|
|
41
|
+
--md-sys-color-on-tertiary-fixed: rgb(255 255 255);
|
|
42
|
+
--md-sys-color-tertiary-fixed-dim: rgb(0 51 49);
|
|
43
|
+
--md-sys-color-on-tertiary-fixed-variant: rgb(255 255 255);
|
|
44
|
+
--md-sys-color-surface-dim: rgb(218 219 208);
|
|
45
|
+
--md-sys-color-surface-bright: rgb(249 250 239);
|
|
46
|
+
--md-sys-color-surface-container-lowest: rgb(255 255 255);
|
|
47
|
+
--md-sys-color-surface-container-low: rgb(243 244 233);
|
|
48
|
+
--md-sys-color-surface-container: rgb(238 239 227);
|
|
49
|
+
--md-sys-color-surface-container-high: rgb(232 233 222);
|
|
50
|
+
--md-sys-color-surface-container-highest: rgb(226 227 216);
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
.light-medium-contrast {
|
|
2
|
+
--md-sys-color-primary: rgb(49 74 18);
|
|
3
|
+
--md-sys-color-surface-tint: rgb(76 102 43);
|
|
4
|
+
--md-sys-color-on-primary: rgb(255 255 255);
|
|
5
|
+
--md-sys-color-primary-container: rgb(97 125 63);
|
|
6
|
+
--md-sys-color-on-primary-container: rgb(255 255 255);
|
|
7
|
+
--md-sys-color-secondary: rgb(60 70 47);
|
|
8
|
+
--md-sys-color-on-secondary: rgb(255 255 255);
|
|
9
|
+
--md-sys-color-secondary-container: rgb(110 120 94);
|
|
10
|
+
--md-sys-color-on-secondary-container: rgb(255 255 255);
|
|
11
|
+
--md-sys-color-tertiary: rgb(26 74 71);
|
|
12
|
+
--md-sys-color-on-tertiary: rgb(255 255 255);
|
|
13
|
+
--md-sys-color-tertiary-container: rgb(79 125 121);
|
|
14
|
+
--md-sys-color-on-tertiary-container: rgb(255 255 255);
|
|
15
|
+
--md-sys-color-error: rgb(140 0 9);
|
|
16
|
+
--md-sys-color-on-error: rgb(255 255 255);
|
|
17
|
+
--md-sys-color-error-container: rgb(218 52 46);
|
|
18
|
+
--md-sys-color-on-error-container: rgb(255 255 255);
|
|
19
|
+
--md-sys-color-background: rgb(249 250 239);
|
|
20
|
+
--md-sys-color-on-background: rgb(26 28 22);
|
|
21
|
+
--md-sys-color-surface: rgb(249 250 239);
|
|
22
|
+
--md-sys-color-on-surface: rgb(26 28 22);
|
|
23
|
+
--md-sys-color-surface-variant: rgb(225 228 213);
|
|
24
|
+
--md-sys-color-on-surface-variant: rgb(64 68 57);
|
|
25
|
+
--md-sys-color-outline: rgb(93 97 85);
|
|
26
|
+
--md-sys-color-outline-variant: rgb(120 124 112);
|
|
27
|
+
--md-sys-color-shadow: rgb(0 0 0);
|
|
28
|
+
--md-sys-color-scrim: rgb(0 0 0);
|
|
29
|
+
--md-sys-color-inverse-surface: rgb(47 49 42);
|
|
30
|
+
--md-sys-color-inverse-on-surface: rgb(241 242 230);
|
|
31
|
+
--md-sys-color-inverse-primary: rgb(177 209 138);
|
|
32
|
+
--md-sys-color-primary-fixed: rgb(97 125 63);
|
|
33
|
+
--md-sys-color-on-primary-fixed: rgb(255 255 255);
|
|
34
|
+
--md-sys-color-primary-fixed-dim: rgb(73 100 41);
|
|
35
|
+
--md-sys-color-on-primary-fixed-variant: rgb(255 255 255);
|
|
36
|
+
--md-sys-color-secondary-fixed: rgb(110 120 94);
|
|
37
|
+
--md-sys-color-on-secondary-fixed: rgb(255 255 255);
|
|
38
|
+
--md-sys-color-secondary-fixed-dim: rgb(85 95 71);
|
|
39
|
+
--md-sys-color-on-secondary-fixed-variant: rgb(255 255 255);
|
|
40
|
+
--md-sys-color-tertiary-fixed: rgb(79 125 121);
|
|
41
|
+
--md-sys-color-on-tertiary-fixed: rgb(255 255 255);
|
|
42
|
+
--md-sys-color-tertiary-fixed-dim: rgb(54 100 96);
|
|
43
|
+
--md-sys-color-on-tertiary-fixed-variant: rgb(255 255 255);
|
|
44
|
+
--md-sys-color-surface-dim: rgb(218 219 208);
|
|
45
|
+
--md-sys-color-surface-bright: rgb(249 250 239);
|
|
46
|
+
--md-sys-color-surface-container-lowest: rgb(255 255 255);
|
|
47
|
+
--md-sys-color-surface-container-low: rgb(243 244 233);
|
|
48
|
+
--md-sys-color-surface-container: rgb(238 239 227);
|
|
49
|
+
--md-sys-color-surface-container-high: rgb(232 233 222);
|
|
50
|
+
--md-sys-color-surface-container-highest: rgb(226 227 216);
|
|
51
|
+
}
|
package/themes/light.css
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
body {
|
|
2
|
+
--md-sys-shape-corner-small: 4px;
|
|
3
|
+
--md-sys-shape-corner-medium: 6px;
|
|
4
|
+
--md-sys-shape-corner-large: 8px;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.light {
|
|
8
|
+
--md-sys-color-primary: rgb(76 102 43);
|
|
9
|
+
--md-sys-color-surface-tint: rgb(76 102 43);
|
|
10
|
+
--md-sys-color-on-primary: rgb(255 255 255);
|
|
11
|
+
--md-sys-color-primary-container: rgb(205 237 163);
|
|
12
|
+
--md-sys-color-on-primary-container: rgb(16 32 0);
|
|
13
|
+
--md-sys-color-secondary: rgb(88 98 73);
|
|
14
|
+
--md-sys-color-on-secondary: rgb(255 255 255);
|
|
15
|
+
--md-sys-color-secondary-container: rgb(220 231 200);
|
|
16
|
+
--md-sys-color-on-secondary-container: rgb(21 30 11);
|
|
17
|
+
--md-sys-color-tertiary: rgb(56 102 99);
|
|
18
|
+
--md-sys-color-on-tertiary: rgb(255 255 255);
|
|
19
|
+
--md-sys-color-tertiary-container: rgb(188 236 231);
|
|
20
|
+
--md-sys-color-on-tertiary-container: rgb(0 32 30);
|
|
21
|
+
--md-sys-color-error: rgb(186 26 26);
|
|
22
|
+
--md-sys-color-on-error: rgb(255 255 255);
|
|
23
|
+
--md-sys-color-error-container: rgb(255 218 214);
|
|
24
|
+
--md-sys-color-on-error-container: rgb(65 0 2);
|
|
25
|
+
--md-sys-color-background: rgb(249 250 239);
|
|
26
|
+
--md-sys-color-on-background: rgb(26 28 22);
|
|
27
|
+
--md-sys-color-surface: rgb(249 250 239);
|
|
28
|
+
--md-sys-color-on-surface: rgb(26 28 22);
|
|
29
|
+
--md-sys-color-surface-variant: rgb(225 228 213);
|
|
30
|
+
--md-sys-color-on-surface-variant: rgb(68 72 61);
|
|
31
|
+
--md-sys-color-outline: rgb(117 121 108);
|
|
32
|
+
--md-sys-color-outline-variant: rgb(197 200 186);
|
|
33
|
+
--md-sys-color-shadow: rgb(0 0 0);
|
|
34
|
+
--md-sys-color-scrim: rgb(0 0 0);
|
|
35
|
+
--md-sys-color-inverse-surface: rgb(47 49 42);
|
|
36
|
+
--md-sys-color-inverse-on-surface: rgb(241 242 230);
|
|
37
|
+
--md-sys-color-inverse-primary: rgb(177 209 138);
|
|
38
|
+
--md-sys-color-primary-fixed: rgb(205 237 163);
|
|
39
|
+
--md-sys-color-on-primary-fixed: rgb(16 32 0);
|
|
40
|
+
--md-sys-color-primary-fixed-dim: rgb(177 209 138);
|
|
41
|
+
--md-sys-color-on-primary-fixed-variant: rgb(53 78 22);
|
|
42
|
+
--md-sys-color-secondary-fixed: rgb(220 231 200);
|
|
43
|
+
--md-sys-color-on-secondary-fixed: rgb(21 30 11);
|
|
44
|
+
--md-sys-color-secondary-fixed-dim: rgb(191 203 173);
|
|
45
|
+
--md-sys-color-on-secondary-fixed-variant: rgb(64 74 51);
|
|
46
|
+
--md-sys-color-tertiary-fixed: rgb(188 236 231);
|
|
47
|
+
--md-sys-color-on-tertiary-fixed: rgb(0 32 30);
|
|
48
|
+
--md-sys-color-tertiary-fixed-dim: rgb(160 208 203);
|
|
49
|
+
--md-sys-color-on-tertiary-fixed-variant: rgb(31 78 75);
|
|
50
|
+
--md-sys-color-surface-dim: rgb(218 219 208);
|
|
51
|
+
--md-sys-color-surface-bright: rgb(249 250 239);
|
|
52
|
+
--md-sys-color-surface-container-lowest: rgb(255 255 255);
|
|
53
|
+
--md-sys-color-surface-container-low: rgb(243 244 233);
|
|
54
|
+
--md-sys-color-surface-container: rgb(238 239 227);
|
|
55
|
+
--md-sys-color-surface-container-high: rgb(232 233 222);
|
|
56
|
+
--md-sys-color-surface-container-highest: rgb(226 227 216);
|
|
57
|
+
}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
@layer {
|
|
2
|
+
.md-typescale-display-small,
|
|
3
|
+
.md-typescale-display-small-prominent {
|
|
4
|
+
font: var(--md-sys-typescale-display-small-weight, var(--md-ref-typeface-weight-regular, 400))
|
|
5
|
+
var(--md-sys-typescale-display-small-size, 2.25rem) / var(--md-sys-typescale-display-small-line-height, 2.75rem)
|
|
6
|
+
var(--md-sys-typescale-display-small-font, var(--md-ref-typeface-brand, Roboto));
|
|
7
|
+
}
|
|
8
|
+
.md-typescale-display-medium,
|
|
9
|
+
.md-typescale-display-medium-prominent {
|
|
10
|
+
font: var(--md-sys-typescale-display-medium-weight, var(--md-ref-typeface-weight-regular, 400))
|
|
11
|
+
var(--md-sys-typescale-display-medium-size, 2.8125rem) /
|
|
12
|
+
var(--md-sys-typescale-display-medium-line-height, 3.25rem)
|
|
13
|
+
var(--md-sys-typescale-display-medium-font, var(--md-ref-typeface-brand, Roboto));
|
|
14
|
+
}
|
|
15
|
+
.md-typescale-display-large,
|
|
16
|
+
.md-typescale-display-large-prominent {
|
|
17
|
+
font: var(--md-sys-typescale-display-large-weight, var(--md-ref-typeface-weight-regular, 400))
|
|
18
|
+
var(--md-sys-typescale-display-large-size, 3.5625rem) / var(--md-sys-typescale-display-large-line-height, 4rem)
|
|
19
|
+
var(--md-sys-typescale-display-large-font, var(--md-ref-typeface-brand, Roboto));
|
|
20
|
+
}
|
|
21
|
+
.md-typescale-headline-small,
|
|
22
|
+
.md-typescale-headline-small-prominent {
|
|
23
|
+
font: var(--md-sys-typescale-headline-small-weight, var(--md-ref-typeface-weight-regular, 400))
|
|
24
|
+
var(--md-sys-typescale-headline-small-size, 1.5rem) / var(--md-sys-typescale-headline-small-line-height, 2rem)
|
|
25
|
+
var(--md-sys-typescale-headline-small-font, var(--md-ref-typeface-brand, Roboto));
|
|
26
|
+
}
|
|
27
|
+
.md-typescale-headline-medium,
|
|
28
|
+
.md-typescale-headline-medium-prominent {
|
|
29
|
+
font: var(--md-sys-typescale-headline-medium-weight, var(--md-ref-typeface-weight-regular, 400))
|
|
30
|
+
var(--md-sys-typescale-headline-medium-size, 1.75rem) /
|
|
31
|
+
var(--md-sys-typescale-headline-medium-line-height, 2.25rem)
|
|
32
|
+
var(--md-sys-typescale-headline-medium-font, var(--md-ref-typeface-brand, Roboto));
|
|
33
|
+
}
|
|
34
|
+
.md-typescale-headline-large,
|
|
35
|
+
.md-typescale-headline-large-prominent {
|
|
36
|
+
font: var(--md-sys-typescale-headline-large-weight, var(--md-ref-typeface-weight-regular, 400))
|
|
37
|
+
var(--md-sys-typescale-headline-large-size, 2rem) / var(--md-sys-typescale-headline-large-line-height, 2.5rem)
|
|
38
|
+
var(--md-sys-typescale-headline-large-font, var(--md-ref-typeface-brand, Roboto));
|
|
39
|
+
}
|
|
40
|
+
.md-typescale-title-small,
|
|
41
|
+
.md-typescale-title-small-prominent {
|
|
42
|
+
font: var(--md-sys-typescale-title-small-weight, var(--md-ref-typeface-weight-medium, 500))
|
|
43
|
+
var(--md-sys-typescale-title-small-size, 0.875rem) / var(--md-sys-typescale-title-small-line-height, 1.25rem)
|
|
44
|
+
var(--md-sys-typescale-title-small-font, var(--md-ref-typeface-plain, Roboto));
|
|
45
|
+
}
|
|
46
|
+
.md-typescale-title-medium,
|
|
47
|
+
.md-typescale-title-medium-prominent {
|
|
48
|
+
font: var(--md-sys-typescale-title-medium-weight, var(--md-ref-typeface-weight-medium, 500))
|
|
49
|
+
var(--md-sys-typescale-title-medium-size, 1rem) / var(--md-sys-typescale-title-medium-line-height, 1.5rem)
|
|
50
|
+
var(--md-sys-typescale-title-medium-font, var(--md-ref-typeface-plain, Roboto));
|
|
51
|
+
}
|
|
52
|
+
.md-typescale-title-large,
|
|
53
|
+
.md-typescale-title-large-prominent {
|
|
54
|
+
font: var(--md-sys-typescale-title-large-weight, var(--md-ref-typeface-weight-regular, 400))
|
|
55
|
+
var(--md-sys-typescale-title-large-size, 1.375rem) / var(--md-sys-typescale-title-large-line-height, 1.75rem)
|
|
56
|
+
var(--md-sys-typescale-title-large-font, var(--md-ref-typeface-brand, Roboto));
|
|
57
|
+
}
|
|
58
|
+
.md-typescale-body-small,
|
|
59
|
+
.md-typescale-body-small-prominent {
|
|
60
|
+
font: var(--md-sys-typescale-body-small-weight, var(--md-ref-typeface-weight-regular, 400))
|
|
61
|
+
var(--md-sys-typescale-body-small-size, 0.75rem) / var(--md-sys-typescale-body-small-line-height, 1rem)
|
|
62
|
+
var(--md-sys-typescale-body-small-font, var(--md-ref-typeface-plain, Roboto));
|
|
63
|
+
}
|
|
64
|
+
.md-typescale-body-medium,
|
|
65
|
+
.md-typescale-body-medium-prominent {
|
|
66
|
+
font: var(--md-sys-typescale-body-medium-weight, var(--md-ref-typeface-weight-regular, 400))
|
|
67
|
+
var(--md-sys-typescale-body-medium-size, 0.875rem) / var(--md-sys-typescale-body-medium-line-height, 1.25rem)
|
|
68
|
+
var(--md-sys-typescale-body-medium-font, var(--md-ref-typeface-plain, Roboto));
|
|
69
|
+
}
|
|
70
|
+
.md-typescale-body-large,
|
|
71
|
+
.md-typescale-body-large-prominent {
|
|
72
|
+
font: var(--md-sys-typescale-body-large-weight, var(--md-ref-typeface-weight-regular, 400))
|
|
73
|
+
var(--md-sys-typescale-body-large-size, 1rem) / var(--md-sys-typescale-body-large-line-height, 1.5rem)
|
|
74
|
+
var(--md-sys-typescale-body-large-font, var(--md-ref-typeface-plain, Roboto));
|
|
75
|
+
}
|
|
76
|
+
.md-typescale-label-small,
|
|
77
|
+
.md-typescale-label-small-prominent {
|
|
78
|
+
font: var(--md-sys-typescale-label-small-weight, var(--md-ref-typeface-weight-medium, 500))
|
|
79
|
+
var(--md-sys-typescale-label-small-size, 0.6875rem) / var(--md-sys-typescale-label-small-line-height, 1rem)
|
|
80
|
+
var(--md-sys-typescale-label-small-font, var(--md-ref-typeface-plain, Roboto));
|
|
81
|
+
}
|
|
82
|
+
.md-typescale-label-medium,
|
|
83
|
+
.md-typescale-label-medium-prominent {
|
|
84
|
+
font: var(--md-sys-typescale-label-medium-weight, var(--md-ref-typeface-weight-medium, 500))
|
|
85
|
+
var(--md-sys-typescale-label-medium-size, 0.75rem) / var(--md-sys-typescale-label-medium-line-height, 1rem)
|
|
86
|
+
var(--md-sys-typescale-label-medium-font, var(--md-ref-typeface-plain, Roboto));
|
|
87
|
+
}
|
|
88
|
+
.md-typescale-label-medium-prominent {
|
|
89
|
+
font-weight: var(--md-sys-typescale-label-medium-weight-prominent, var(--md-ref-typeface-weight-bold, 700));
|
|
90
|
+
}
|
|
91
|
+
.md-typescale-label-large,
|
|
92
|
+
.md-typescale-label-large-prominent {
|
|
93
|
+
font: var(--md-sys-typescale-label-large-weight, var(--md-ref-typeface-weight-medium, 500))
|
|
94
|
+
var(--md-sys-typescale-label-large-size, 0.875rem) / var(--md-sys-typescale-label-large-line-height, 1.25rem)
|
|
95
|
+
var(--md-sys-typescale-label-large-font, var(--md-ref-typeface-plain, Roboto));
|
|
96
|
+
}
|
|
97
|
+
.md-typescale-label-large-prominent {
|
|
98
|
+
font-weight: var(--md-sys-typescale-label-large-weight-prominent, var(--md-ref-typeface-weight-bold, 700));
|
|
99
|
+
}
|
|
100
|
+
} /*# sourceMappingURL=md-typescale-styles.css.map */
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--spacing-tiny: 2px;
|
|
3
|
+
--spacing-small: 4px;
|
|
4
|
+
--spacing-medium: 8px;
|
|
5
|
+
--spacing-large: 12px;
|
|
6
|
+
--spacing-huge: 24px;
|
|
7
|
+
|
|
8
|
+
--icon-size-tiny: 14px;
|
|
9
|
+
--icon-size-small: 18px;
|
|
10
|
+
--icon-size-medium: 24px;
|
|
11
|
+
--icon-size-large: 32px;
|
|
12
|
+
--icon-size-huge: 48px;
|
|
13
|
+
}
|
package/themes/app-theme.css
DELETED
|
@@ -1,161 +0,0 @@
|
|
|
1
|
-
body {
|
|
2
|
-
/***********************************************
|
|
3
|
-
* 버전: 2.2024-1
|
|
4
|
-
* 작성일: 2024-04-14
|
|
5
|
-
* 작성자: Hoppaang
|
|
6
|
-
* color속성은 앱별 차별성이 크므로 가능하면 62라인 'app layout style'이후부터 수정/복사 등을 권장합니다
|
|
7
|
-
*
|
|
8
|
-
* 주요 변경 사항:
|
|
9
|
-
* - icon style 변수 추가
|
|
10
|
-
* - material design component themes의 변수명 mdc..에서 md로 교정
|
|
11
|
-
* - button style에 변수 추가 및 기 속성값 변경
|
|
12
|
-
|
|
13
|
-
***********************************************/
|
|
14
|
-
|
|
15
|
-
/* theme color */
|
|
16
|
-
--primary-color-rgb: 130, 105, 96;
|
|
17
|
-
--primary-color: rgb(var(--primary-color-rgb));
|
|
18
|
-
--secondary-color-rgb: 78, 78, 90;
|
|
19
|
-
--secondary-color: rgb(var(--secondary-color-rgb));
|
|
20
|
-
--focus-color: var(--theme-white-color);
|
|
21
|
-
--primary-background-color: var(--secondary-color);
|
|
22
|
-
--secondary-background-color: #283644;
|
|
23
|
-
--main-section-background-color: #f5f2ee;
|
|
24
|
-
--theme-white-color: #fff;
|
|
25
|
-
--theme-black-color: rgba(0, 0, 0, 0.9);
|
|
26
|
-
|
|
27
|
-
--focus-background-color: var(--primary-color);
|
|
28
|
-
--primary-text-color: #3c3938;
|
|
29
|
-
--secondary-text-color: var(--primary-color);
|
|
30
|
-
|
|
31
|
-
--opacity-dark-color: rgba(0, 0, 0, 0.4);
|
|
32
|
-
--opacity-light-color: rgba(255, 255, 255, 0.8);
|
|
33
|
-
|
|
34
|
-
/* status color */
|
|
35
|
-
--status-success-color: #35a24a;
|
|
36
|
-
--status-warning-color: #ee8d03;
|
|
37
|
-
--status-danger-color: #d14946;
|
|
38
|
-
--status-info-color: #398ace;
|
|
39
|
-
|
|
40
|
-
/* common style */
|
|
41
|
-
--border-radius: 4px;
|
|
42
|
-
--border-dark-color: 1px solid rgba(0, 0, 0, 0.15);
|
|
43
|
-
--border-light-color: 1px solid rgba(255, 255, 255, 0.3);
|
|
44
|
-
|
|
45
|
-
--box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.1);
|
|
46
|
-
|
|
47
|
-
--theme-font: 'Noto', Helvetica;
|
|
48
|
-
|
|
49
|
-
--margin-default: 9px;
|
|
50
|
-
--margin-narrow: 4px;
|
|
51
|
-
--margin-wide: 15px;
|
|
52
|
-
--padding-default: var(--margin-default);
|
|
53
|
-
--padding-narrow: var(--margin-narrow);
|
|
54
|
-
--padding-wide: var(--margin-wide);
|
|
55
|
-
|
|
56
|
-
--scrollbar-thumb-color: rgba(57, 78, 100, 0.5);
|
|
57
|
-
--scrollbar-thumb-hover-color: var(--primary-color);
|
|
58
|
-
|
|
59
|
-
--fontsize-default: 14px;
|
|
60
|
-
--fontsize-small: 13px;
|
|
61
|
-
--fontsize-large: 16px;
|
|
62
|
-
|
|
63
|
-
/* app layout style */
|
|
64
|
-
--app-grid-template-area: 'header header header' 'nav main aside' 'nav footer aside';
|
|
65
|
-
|
|
66
|
-
/* title & description style */
|
|
67
|
-
--title-margin: var(--margin-narrow) 0;
|
|
68
|
-
--title-font: bold 24px var(--theme-font);
|
|
69
|
-
--title-text-color: var(--secondary-color);
|
|
70
|
-
--title-font-mobile: bold 20px var(--theme-font);
|
|
71
|
-
|
|
72
|
-
--page-description-margin: var(--margin-narrow) 0 var(--margin-wide) 0;
|
|
73
|
-
--page-description-font: normal var(--fontsize-default) / 1.2rem var(--theme-font);
|
|
74
|
-
--page-description-color: var(--secondary-text-color);
|
|
75
|
-
|
|
76
|
-
--subtitle-padding: 12px 5px 3px 5px;
|
|
77
|
-
--subtitle-font: bold 18px var(--theme-font);
|
|
78
|
-
--subtitle-text-color: var(--primary-color);
|
|
79
|
-
--subtitle-border-bottom: 1px solid var(--primary-color);
|
|
80
|
-
|
|
81
|
-
/* icon style */
|
|
82
|
-
--icon-tiny-size: 24px;
|
|
83
|
-
--icon-default-size: 36px;
|
|
84
|
-
--icon-big-size: 48px;
|
|
85
|
-
--icon-default-color: var(--theme-white-color);
|
|
86
|
-
--iconbtn-size: 18px; /* added by Hoppaang for new style ver */
|
|
87
|
-
|
|
88
|
-
/* material design component themes */
|
|
89
|
-
--md-theme-on-primary: var(--theme-white-color);
|
|
90
|
-
--md-theme-primary: var(--secondary-text-color);
|
|
91
|
-
--md-theme-on-secondary: var(--theme-white-color);
|
|
92
|
-
--md-theme-secondary: var(--primary-color);
|
|
93
|
-
--md-button-outline-color: var(--primary-color);
|
|
94
|
-
--md-danger-button-primary-color: var(--status-danger-color);
|
|
95
|
-
--md-danger-button-outline-color: var(--status-danger-color);
|
|
96
|
-
--md-button-outline-width: 1px;
|
|
97
|
-
|
|
98
|
-
/* button style */
|
|
99
|
-
--button-background-color: #fafbfc;
|
|
100
|
-
--button-background-focus-color: var(--primary-color);
|
|
101
|
-
--button-border: var(--border-dark-color);
|
|
102
|
-
--button-border-radius: var(--border-radius);
|
|
103
|
-
--button-margin: var(--margin-default) var(--margin-default) var(--margin-default) 0;
|
|
104
|
-
--button-padding: calc(var(--padding-narrow) * 1.5) var(--padding-wide); /* Modified by Hoppaang for new style ver */
|
|
105
|
-
--button-color: var(--secondary-color);
|
|
106
|
-
--button-font: 600 var(--fontsize-default) var(--theme-font); /* Modified by Hoppaang for new style ver */
|
|
107
|
-
--button-text-transform: capitalize;
|
|
108
|
-
--button-active-box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.2);
|
|
109
|
-
--button-activ-border: 1px solid var(--primary-color); /* added by Hoppaang for new style ver */
|
|
110
|
-
--button-activ-background-color: var(--primary-color); /* added by Hoppaang for new style ver */
|
|
111
|
-
--button-activ-color: var(--theme-white-color); /* added by Hoppaang for new style ver */
|
|
112
|
-
--iconbtn-padding: var(--padding-narrow); /* added by Hoppaang for new style ver */
|
|
113
|
-
|
|
114
|
-
--button-primary-background-color: var(--primary-color);
|
|
115
|
-
--button-primary-active-background-color: var(--status-success-color);
|
|
116
|
-
--button-primary-padding: var(--margin-default) var(--margin-wide);
|
|
117
|
-
--button-primary-color: var(--theme-white-color);
|
|
118
|
-
--button-primary-font: bold 16px var(--theme-font);
|
|
119
|
-
|
|
120
|
-
/* table style */
|
|
121
|
-
--th-padding: var(--padding-default);
|
|
122
|
-
--th-border-top: 2px solid var(--secondary-color);
|
|
123
|
-
--th-text-transform: capitalize;
|
|
124
|
-
--th-font: bold var(--fontsize-small) var(--theme-font);
|
|
125
|
-
--th-color: rgba(var(--secondary-color-rgb), 0.8);
|
|
126
|
-
|
|
127
|
-
--tr-background-color: var(--theme-white-color);
|
|
128
|
-
--tr-background-odd-color: rgba(255, 255, 255, 0.4);
|
|
129
|
-
--tr-background-hover-color: #e1f5fe;
|
|
130
|
-
--td-border-line: 1px solid rgba(0, 0, 0, 0.05);
|
|
131
|
-
--td-border-bottom: 1px solid rgba(0, 0, 0, 0.09);
|
|
132
|
-
--td-padding: var(--padding-default);
|
|
133
|
-
--td-font: normal 13px var(--theme-font);
|
|
134
|
-
--td-color: var(--secondary-color);
|
|
135
|
-
|
|
136
|
-
--label-cell-background-color: #f6f6f6; /* th or td common background color */
|
|
137
|
-
|
|
138
|
-
/* form style */
|
|
139
|
-
--label-font: normal var(--fontsize-default) var(--theme-font);
|
|
140
|
-
--label-color: var(--secondary-color);
|
|
141
|
-
--label-text-transform: capitalize;
|
|
142
|
-
--input-margin: var(--margin-narrow) 0;
|
|
143
|
-
--input-padding: var(--padding-default);
|
|
144
|
-
--input-min-width: 200px;
|
|
145
|
-
--input-font: normal var(--fontsize-default) var(--theme-font);
|
|
146
|
-
--input-hint-font: normal var(--fontsize-small) var(--theme-font);
|
|
147
|
-
--input-hint-color: #666;
|
|
148
|
-
--input-container-max-width: 900px;
|
|
149
|
-
--fieldset-margin: var(--padding-wide) 0;
|
|
150
|
-
--fieldset-padding: 0 var(--padding-wide) var(--padding-wide) var(--padding-wide);
|
|
151
|
-
--legend-padding: var(--padding-default) 0;
|
|
152
|
-
--legend-color: var(--secondary-text-color);
|
|
153
|
-
--legend-font: bold 16px var(--theme-font);
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
@media only screen and (max-width: 460px) {
|
|
157
|
-
body {
|
|
158
|
-
/* subtitle style */
|
|
159
|
-
--subtitle-margin: 0;
|
|
160
|
-
}
|
|
161
|
-
}
|
package/themes/context-theme.css
DELETED
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
body {
|
|
2
|
-
--context-toolbar-background-color: var(--main-section-background-color);
|
|
3
|
-
--context-toolbar-button-background-color: #fff;
|
|
4
|
-
--context-toolbar-border: 1px solid rgba(57, 78, 100, 0.5);
|
|
5
|
-
--context-toolbar-border-hover: 1px solid var(--primary-color);
|
|
6
|
-
--context-toolbar-button-max-width: auto;
|
|
7
|
-
--context-toolbar-button-height: 36px;
|
|
8
|
-
--context-toolbar-button-margin: var(--margin-narrow) 0 var(--margin-wide) 0;
|
|
9
|
-
--context-toolbar-button-padding: 0 9px;
|
|
10
|
-
--context-toolbar-button: normal 13px var(--theme-font);
|
|
11
|
-
--context-toolbar-button-color: var(--secondary-color);
|
|
12
|
-
--context-toolbar-iconbutton-color: var(--primary-text-color);
|
|
13
|
-
--context-toolbar-iconbutton-size: 16px;
|
|
14
|
-
--context-toolbar-function-button-height: 34px;
|
|
15
|
-
--context-toolbar-function-button-radius: 5px;
|
|
16
|
-
--context-toolbar-function-button-background-color: #446281;
|
|
17
|
-
--context-toolbar-function-button-hover-background-color: var(--primary-color);
|
|
18
|
-
--context-toolbar-function-iconbutton-size: 28px;
|
|
19
|
-
--context-toolbar-function-iconbutton-color: var(--primary-background-color);
|
|
20
|
-
--context-toolbar-function-button-lineheight: 36px;
|
|
21
|
-
--context-toolbar-function-button-color: #fff;
|
|
22
|
-
--context-toolbar-function-button-padding: 0 10px;
|
|
23
|
-
--context-toolbar-function-button-border: 1px solid rgba(0, 0, 0, 0.1);
|
|
24
|
-
--context-toolbar-list-background-color: var(--primary-background-color);
|
|
25
|
-
--context-toolbar-list-text: bold 18px var(--theme-font);
|
|
26
|
-
--context-toolbar-list-icon-size: var(--icon-default-size);
|
|
27
|
-
--context-toolbar-side-padding: 15px;
|
|
28
|
-
--context-toolbar-shadow-line: none;
|
|
29
|
-
--context-toolbar-title: bold 19px var(--theme-font);
|
|
30
|
-
|
|
31
|
-
--context-ui-background-color: rgba(40, 54, 68, 0.9);
|
|
32
|
-
--context-ui-box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.2);
|
|
33
|
-
--context-ui-border-radius: 10px;
|
|
34
|
-
--context-ui-padding: 10px;
|
|
35
|
-
--context-ui-list-color: #d0fdee;
|
|
36
|
-
--context-ui-list-border-bottom: 1px solid rgba(0, 0, 0, 0.3);
|
|
37
|
-
--context-ui-list-border-hover-bottom: 1px solid var(--primary-color);
|
|
38
|
-
--context-ui-list-padding: 5px;
|
|
39
|
-
--context-ui-button-color: var(--secondary-text-color);
|
|
40
|
-
--context-ui-button-hover-color: #fff;
|
|
41
|
-
--context-ui-button-background-color: #fff;
|
|
42
|
-
--context-ui-button-background-hover-color: var(--primary-color);
|
|
43
|
-
|
|
44
|
-
--context-action-bar-button-margin: var(--margin-narrow) 0 var(--margin-wide) var(--margin-narrow);
|
|
45
|
-
--context-action-bar-more-button-background-color: var(--context-ui-background-color);
|
|
46
|
-
--context-action-bar-more-button-padding: 6px var(--padding-default);
|
|
47
|
-
--context-action-bar-more-button-color: var(--theme-white-color);
|
|
48
|
-
--context-action-bar-more-button-border-radius: 4px;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
@media only screen and (max-width: 460px) {
|
|
52
|
-
body {
|
|
53
|
-
--context-toolbar-button: normal 9px var(--theme-font);
|
|
54
|
-
--context-toolbar-button-max-width: 60px;
|
|
55
|
-
--context-toolbar-button-height: 50px;
|
|
56
|
-
--context-toolbar-iconbutton-size: 30px;
|
|
57
|
-
--context-toolbar-border: none;
|
|
58
|
-
--context-toolbar-border-hover: none;
|
|
59
|
-
--context-toolbar-iconbutton-display: block;
|
|
60
|
-
--context-toolbar-iconbutton-margin: -2px;
|
|
61
|
-
--context-toolbar-button-background-color: transparent;
|
|
62
|
-
--context-toolbar-button-margin: 0;
|
|
63
|
-
--context-toolbar-function-button-height: 34px;
|
|
64
|
-
--context-toolbar-function-button-lineheight: 34px;
|
|
65
|
-
--context-toolbar-function-button-radius: 0;
|
|
66
|
-
--context-toolbar-side-padding: 0;
|
|
67
|
-
--context-toolbar-shadow-line: inset 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
|
|
68
|
-
--context-toolbar-button-padding: 0 10px 0 0;
|
|
69
|
-
|
|
70
|
-
--context-action-bar-button-margin: 0;
|
|
71
|
-
--context-action-bar-more-button-border-radius: 0;
|
|
72
|
-
--context-action-bar-more-button-padding: 6px var(--padding-wide);
|
|
73
|
-
}
|
|
74
|
-
}
|
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
body {
|
|
2
|
-
font-variation-settings: 'FILL' 1;
|
|
3
|
-
|
|
4
|
-
/* meterial theme color */
|
|
5
|
-
--md-sys-color-primary: var(--primary-color);
|
|
6
|
-
--md-sys-color-secondary: var(--secondary-color);
|
|
7
|
-
--md-sys-color-outline: rgba(var(--primary-color-rgb), 0.5);
|
|
8
|
-
--md-sys-color-on-primary: var(--theme-white-color);
|
|
9
|
-
--md-sys-color-on-surface-variant: var(--secondary-background-color);
|
|
10
|
-
--md-sys-color-on-surface: var(--primary-background-color);
|
|
11
|
-
--md-sys-color-outline-variant:rgba(var(--primary-color-rgb), 0.3);
|
|
12
|
-
|
|
13
|
-
--md-sys-shape-corner-small: var(--border-radius);
|
|
14
|
-
--md-sys-shape-corner-medium: 6px;
|
|
15
|
-
--md-sys-shape-corner-large: 8px;
|
|
16
|
-
|
|
17
|
-
--md-sys-shape-corner-full: var(--md-sys-shape-corner-small);
|
|
18
|
-
|
|
19
|
-
--md-sys-color-surface: var(--theme-white-color);
|
|
20
|
-
--md-sys-color-surface-container: var(--md-sys-color-surface);
|
|
21
|
-
--md-sys-color-surface-container-high: var(--primary-color);
|
|
22
|
-
--md-sys-color-surface-container-low: var(--secondary-color);
|
|
23
|
-
--md-sys-color-surface-container-highest: var(--theme-white-color);
|
|
24
|
-
--md-sys-color-surface-container-lowest: var(--secondary-color);
|
|
25
|
-
--md-sys-typescale-body-large: 400 1rem var(--theme-font);
|
|
26
|
-
|
|
27
|
-
--md-filled-text-field-container-shape: 0px;
|
|
28
|
-
--md-filled-text-field-label-text-color: #3f4948;
|
|
29
|
-
--md-filled-text-field-input-text-color: #161d1d;
|
|
30
|
-
|
|
31
|
-
--md-outlined-text-field-container-shape: 0px;
|
|
32
|
-
--md-outlined-text-field-label-text-color: #3f4948;
|
|
33
|
-
--md-outlined-text-field-input-text-color: #161d1d;
|
|
34
|
-
|
|
35
|
-
--md-outlined-select-text-field-outline-color: #6e7979;
|
|
36
|
-
--md-outlined-select-text-field-container-shape: 0px;
|
|
37
|
-
--md-outlined-select-text-field-input-text-color: #005353;
|
|
38
|
-
--md-outlined-select-text-field-input-text-font: system-ui;
|
|
39
|
-
|
|
40
|
-
--md-fab-container-color: var(--primary-color);
|
|
41
|
-
--md-fab-icon-color: var(--focus-color);
|
|
42
|
-
|
|
43
|
-
/* icon button tokens */
|
|
44
|
-
--md-icon-button-icon-size: 20px;
|
|
45
|
-
|
|
46
|
-
--md-filled-icon-button-container-width : 30px;
|
|
47
|
-
--md-filled-icon-button-container-height : 30px;
|
|
48
|
-
--md-filled-icon-button-icon-size: 20px;
|
|
49
|
-
--md-filled-icon-button-icon-size : var(--md-icon-button-icon-size);
|
|
50
|
-
|
|
51
|
-
--md-filled-tonal-icon-button-selected-container-color: var(--md-sys-color-primary);
|
|
52
|
-
--md-filled-tonal-icon-button-container-width:30px;
|
|
53
|
-
--md-filled-tonal-icon-button-container-height:30px;
|
|
54
|
-
--md-filled-tonal-icon-button-icon-size:var(--md-icon-button-icon-size);
|
|
55
|
-
|
|
56
|
-
--md-outlined-icon-button-container-width:30px;
|
|
57
|
-
--md-outlined-icon-button-container-height:30px;
|
|
58
|
-
--md-outlined-icon-button-icon-size:var(--md-icon-button-icon-size);
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
/* list tokens */
|
|
62
|
-
--md-list-item-leading-icon-color:var(--md-sys-color-primary);
|
|
63
|
-
--md-list-container-color: var(--md-sys-color-surface-container);
|
|
64
|
-
--md-list-item-container-shape: var(--md-sys-shape-corner-small);
|
|
65
|
-
--md-list-item-label-text-color: var(--primary-text-color);
|
|
66
|
-
--md-list-item-supporting-text-color: var(--secondary-text-color);
|
|
67
|
-
--md-list-item-trailing-supporting-text-color: var(--secondary-text-color);
|
|
68
|
-
--md-list-item-leading-icon-size:var(--md-icon-button-icon-size);
|
|
69
|
-
--md-list-item-trailing-icon-size:var(--md-icon-button-icon-size);
|
|
70
|
-
|
|
71
|
-
/* menu tokens */
|
|
72
|
-
--md-menu-container-color: var(--md-sys-color-surface-container);
|
|
73
|
-
--md-menu-container-shape: var(--md-sys-shape-corner-small);
|
|
74
|
-
--md-menu-item-selected-container-color: rgba(var(--primary-color-rgb), 0.2);
|
|
75
|
-
|
|
76
|
-
/* progress tokens */
|
|
77
|
-
--md-linear-progress-track-color: rgba(var(--secondary-color-rgb), 0.2);
|
|
78
|
-
|
|
79
|
-
/* slider tokens */
|
|
80
|
-
--md-slider-inactive-track-color: rgba(var(--secondary-color-rgb), 0.2);
|
|
81
|
-
|
|
82
|
-
/* switch tokens */
|
|
83
|
-
--md-switch-selected-handle-color: var(--md-sys-color-primary);
|
|
84
|
-
--md-switch-track-color: rgba(var(--secondary-color-rgb), 0.2);
|
|
85
|
-
|
|
86
|
-
/* tab tokens */
|
|
87
|
-
--md-primary-tab-icon-color: var(--md-sys-color-primary);
|
|
88
|
-
}
|