@materializecss/materialize 2.0.2-alpha → 2.0.3-alpha
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/css/materialize.css +1336 -118
- package/dist/css/materialize.min.css +2 -2
- package/dist/js/materialize.js +27 -25
- package/dist/js/materialize.min.js +2 -2
- package/dist/js/materialize.min.js.map +1 -1
- package/dist/src/autocomplete.d.ts +143 -0
- package/dist/src/autocomplete.d.ts.map +1 -0
- package/dist/src/bounding.d.ts +7 -0
- package/dist/src/bounding.d.ts.map +1 -0
- package/dist/src/buttons.d.ts +65 -0
- package/dist/src/buttons.d.ts.map +1 -0
- package/dist/src/cards.d.ts +4 -0
- package/dist/src/cards.d.ts.map +1 -0
- package/dist/src/carousel.d.ts +131 -0
- package/dist/src/carousel.d.ts.map +1 -0
- package/dist/src/characterCounter.d.ts +37 -0
- package/dist/src/characterCounter.d.ts.map +1 -0
- package/dist/src/chips.d.ts +131 -0
- package/dist/src/chips.d.ts.map +1 -0
- package/dist/src/collapsible.d.ts +74 -0
- package/dist/src/collapsible.d.ts.map +1 -0
- package/dist/src/component.d.ts +74 -0
- package/dist/src/component.d.ts.map +1 -0
- package/dist/src/datepicker.d.ts +248 -0
- package/dist/src/datepicker.d.ts.map +1 -0
- package/dist/src/dropdown.d.ts +148 -0
- package/dist/src/dropdown.d.ts.map +1 -0
- package/dist/src/edges.d.ts +7 -0
- package/dist/src/edges.d.ts.map +1 -0
- package/dist/src/forms.d.ts +12 -0
- package/dist/src/forms.d.ts.map +1 -0
- package/dist/src/global.d.ts +60 -0
- package/dist/src/global.d.ts.map +1 -0
- package/dist/src/index.d.ts +27 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/materialbox.d.ts +92 -0
- package/dist/src/materialbox.d.ts.map +1 -0
- package/dist/src/modal.d.ts +119 -0
- package/dist/src/modal.d.ts.map +1 -0
- package/dist/src/parallax.d.ts +40 -0
- package/dist/src/parallax.d.ts.map +1 -0
- package/dist/src/pushpin.d.ts +52 -0
- package/dist/src/pushpin.d.ts.map +1 -0
- package/dist/src/range.d.ts +41 -0
- package/dist/src/range.d.ts.map +1 -0
- package/dist/src/scrollspy.d.ts +62 -0
- package/dist/src/scrollspy.d.ts.map +1 -0
- package/dist/src/select.d.ts +77 -0
- package/dist/src/select.d.ts.map +1 -0
- package/dist/src/sidenav.d.ts +122 -0
- package/dist/src/sidenav.d.ts.map +1 -0
- package/dist/src/slider.d.ts +103 -0
- package/dist/src/slider.d.ts.map +1 -0
- package/dist/src/tabs.d.ts +80 -0
- package/dist/src/tabs.d.ts.map +1 -0
- package/dist/src/tapTarget.d.ts +59 -0
- package/dist/src/tapTarget.d.ts.map +1 -0
- package/dist/src/timepicker.d.ts +208 -0
- package/dist/src/timepicker.d.ts.map +1 -0
- package/dist/src/toasts.d.ts +90 -0
- package/dist/src/toasts.d.ts.map +1 -0
- package/dist/src/tooltip.d.ts +112 -0
- package/dist/src/tooltip.d.ts.map +1 -0
- package/dist/src/utils.d.ts +97 -0
- package/dist/src/utils.d.ts.map +1 -0
- package/dist/src/waves.d.ts +16 -0
- package/dist/src/waves.d.ts.map +1 -0
- package/package.json +4 -1
- package/sass/components/_cards.scss +1 -1
- package/sass/components/_global.scss +50 -0
- package/sass/components/_grid.scss +28 -47
- package/sass/components/_navbar.scss +26 -26
- package/sass/components/_pulse.scss +1 -0
- package/sass/components/_sidenav.scss +3 -14
- package/sass/components/_theme_variables.scss +27 -47
- package/sass/components/_variables.scss +2 -0
- package/sass/components/colors.module.scss +180 -0
- package/sass/components/theme.dark.module.scss +32 -0
- package/sass/components/theme.light.module.scss +32 -0
- package/sass/components/tokens.module.scss +272 -0
- package/sass/components/typography.module.scss +150 -0
- package/sass/materialize.scss +7 -1
- package/src/carousel.ts +1 -1
- package/src/chips.ts +1 -1
- package/src/datepicker.ts +1 -1
- package/src/dropdown.ts +0 -3
- package/src/forms.ts +20 -11
- package/src/global.ts +21 -23
- package/src/index.ts +26 -0
- package/src/select.ts +1 -1
- package/src/timepicker.ts +1 -1
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
.primary {
|
|
2
|
+
background-color: var(--md-sys-color-primary);
|
|
3
|
+
}
|
|
4
|
+
.primary-text {
|
|
5
|
+
color: var(--md-sys-color-primary);
|
|
6
|
+
}
|
|
7
|
+
.on-primary {
|
|
8
|
+
background-color: var(--md-sys-color-on-primary);
|
|
9
|
+
}
|
|
10
|
+
.on-primary-text {
|
|
11
|
+
color: var(--md-sys-color-on-primary);
|
|
12
|
+
}
|
|
13
|
+
.primary-container {
|
|
14
|
+
background-color: var(--md-sys-color-primary-container);
|
|
15
|
+
}
|
|
16
|
+
.primary-container-text {
|
|
17
|
+
color: var(--md-sys-color-primary-container);
|
|
18
|
+
}
|
|
19
|
+
.on-primary-container {
|
|
20
|
+
background-color: var(--md-sys-color-on-primary-container);
|
|
21
|
+
}
|
|
22
|
+
.on-primary-container-text {
|
|
23
|
+
color: var(--md-sys-color-on-primary-container);
|
|
24
|
+
}
|
|
25
|
+
.secondary {
|
|
26
|
+
background-color: var(--md-sys-color-secondary);
|
|
27
|
+
}
|
|
28
|
+
.secondary-text {
|
|
29
|
+
color: var(--md-sys-color-secondary);
|
|
30
|
+
}
|
|
31
|
+
.on-secondary {
|
|
32
|
+
background-color: var(--md-sys-color-on-secondary);
|
|
33
|
+
}
|
|
34
|
+
.on-secondary-text {
|
|
35
|
+
color: var(--md-sys-color-on-secondary);
|
|
36
|
+
}
|
|
37
|
+
.secondary-container {
|
|
38
|
+
background-color: var(--md-sys-color-secondary-container);
|
|
39
|
+
}
|
|
40
|
+
.secondary-container-text {
|
|
41
|
+
color: var(--md-sys-color-secondary-container);
|
|
42
|
+
}
|
|
43
|
+
.on-secondary-container {
|
|
44
|
+
background-color: var(--md-sys-color-on-secondary-container);
|
|
45
|
+
}
|
|
46
|
+
.on-secondary-container-text {
|
|
47
|
+
color: var(--md-sys-color-on-secondary-container);
|
|
48
|
+
}
|
|
49
|
+
.tertiary {
|
|
50
|
+
background-color: var(--md-sys-color-tertiary);
|
|
51
|
+
}
|
|
52
|
+
.tertiary-text {
|
|
53
|
+
color: var(--md-sys-color-tertiary);
|
|
54
|
+
}
|
|
55
|
+
.on-tertiary {
|
|
56
|
+
background-color: var(--md-sys-color-on-tertiary);
|
|
57
|
+
}
|
|
58
|
+
.on-tertiary-text {
|
|
59
|
+
color: var(--md-sys-color-on-tertiary);
|
|
60
|
+
}
|
|
61
|
+
.tertiary-container {
|
|
62
|
+
background-color: var(--md-sys-color-tertiary-container);
|
|
63
|
+
}
|
|
64
|
+
.tertiary-container-text {
|
|
65
|
+
color: var(--md-sys-color-tertiary-container);
|
|
66
|
+
}
|
|
67
|
+
.on-tertiary-container {
|
|
68
|
+
background-color: var(--md-sys-color-on-tertiary-container);
|
|
69
|
+
}
|
|
70
|
+
.on-tertiary-container-text {
|
|
71
|
+
color: var(--md-sys-color-on-tertiary-container);
|
|
72
|
+
}
|
|
73
|
+
.error {
|
|
74
|
+
background-color: var(--md-sys-color-error);
|
|
75
|
+
}
|
|
76
|
+
.error-text {
|
|
77
|
+
color: var(--md-sys-color-error);
|
|
78
|
+
}
|
|
79
|
+
.on-error {
|
|
80
|
+
background-color: var(--md-sys-color-on-error);
|
|
81
|
+
}
|
|
82
|
+
.on-error-text {
|
|
83
|
+
color: var(--md-sys-color-on-error);
|
|
84
|
+
}
|
|
85
|
+
.error-container {
|
|
86
|
+
background-color: var(--md-sys-color-error-container);
|
|
87
|
+
}
|
|
88
|
+
.error-container-text {
|
|
89
|
+
color: var(--md-sys-color-error-container);
|
|
90
|
+
}
|
|
91
|
+
.on-error-container {
|
|
92
|
+
background-color: var(--md-sys-color-on-error-container);
|
|
93
|
+
}
|
|
94
|
+
.on-error-container-text {
|
|
95
|
+
color: var(--md-sys-color-on-error-container);
|
|
96
|
+
}
|
|
97
|
+
.background {
|
|
98
|
+
background-color: var(--md-sys-color-background);
|
|
99
|
+
}
|
|
100
|
+
.background-text {
|
|
101
|
+
color: var(--md-sys-color-background);
|
|
102
|
+
}
|
|
103
|
+
.on-background {
|
|
104
|
+
background-color: var(--md-sys-color-on-background);
|
|
105
|
+
}
|
|
106
|
+
.on-background-text {
|
|
107
|
+
color: var(--md-sys-color-on-background);
|
|
108
|
+
}
|
|
109
|
+
.surface {
|
|
110
|
+
background-color: var(--md-sys-color-surface);
|
|
111
|
+
}
|
|
112
|
+
.surface-text {
|
|
113
|
+
color: var(--md-sys-color-surface);
|
|
114
|
+
}
|
|
115
|
+
.on-surface {
|
|
116
|
+
background-color: var(--md-sys-color-on-surface);
|
|
117
|
+
}
|
|
118
|
+
.on-surface-text {
|
|
119
|
+
color: var(--md-sys-color-on-surface);
|
|
120
|
+
}
|
|
121
|
+
.surface-variant {
|
|
122
|
+
background-color: var(--md-sys-color-surface-variant);
|
|
123
|
+
}
|
|
124
|
+
.surface-variant-text {
|
|
125
|
+
color: var(--md-sys-color-surface-variant);
|
|
126
|
+
}
|
|
127
|
+
.on-surface-variant {
|
|
128
|
+
background-color: var(--md-sys-color-on-surface-variant);
|
|
129
|
+
}
|
|
130
|
+
.on-surface-variant-text {
|
|
131
|
+
color: var(--md-sys-color-on-surface-variant);
|
|
132
|
+
}
|
|
133
|
+
.outline {
|
|
134
|
+
background-color: var(--md-sys-color-outline);
|
|
135
|
+
}
|
|
136
|
+
.outline-text {
|
|
137
|
+
color: var(--md-sys-color-outline);
|
|
138
|
+
}
|
|
139
|
+
.inverse-on-surface {
|
|
140
|
+
background-color: var(--md-sys-color-inverse-on-surface);
|
|
141
|
+
}
|
|
142
|
+
.inverse-on-surface-text {
|
|
143
|
+
color: var(--md-sys-color-inverse-on-surface);
|
|
144
|
+
}
|
|
145
|
+
.inverse-surface {
|
|
146
|
+
background-color: var(--md-sys-color-inverse-surface);
|
|
147
|
+
}
|
|
148
|
+
.inverse-surface-text {
|
|
149
|
+
color: var(--md-sys-color-inverse-surface);
|
|
150
|
+
}
|
|
151
|
+
.inverse-primary {
|
|
152
|
+
background-color: var(--md-sys-color-inverse-primary);
|
|
153
|
+
}
|
|
154
|
+
.inverse-primary-text {
|
|
155
|
+
color: var(--md-sys-color-inverse-primary);
|
|
156
|
+
}
|
|
157
|
+
.shadow {
|
|
158
|
+
background-color: var(--md-sys-color-shadow);
|
|
159
|
+
}
|
|
160
|
+
.shadow-text {
|
|
161
|
+
color: var(--md-sys-color-shadow);
|
|
162
|
+
}
|
|
163
|
+
.surface-tint {
|
|
164
|
+
background-color: var(--md-sys-color-surface-tint);
|
|
165
|
+
}
|
|
166
|
+
.surface-tint-text {
|
|
167
|
+
color: var(--md-sys-color-surface-tint);
|
|
168
|
+
}
|
|
169
|
+
.outline-variant {
|
|
170
|
+
background-color: var(--md-sys-color-outline-variant);
|
|
171
|
+
}
|
|
172
|
+
.outline-variant-text {
|
|
173
|
+
color: var(--md-sys-color-outline-variant);
|
|
174
|
+
}
|
|
175
|
+
.scrim {
|
|
176
|
+
background-color: var(--md-sys-color-scrim);
|
|
177
|
+
}
|
|
178
|
+
.scrim-text {
|
|
179
|
+
color: var(--md-sys-color-scrim);
|
|
180
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
:root[theme='dark'] {
|
|
2
|
+
--md-sys-color-primary: var(--md-sys-color-primary-dark);
|
|
3
|
+
--md-sys-color-on-primary: var(--md-sys-color-on-primary-dark);
|
|
4
|
+
--md-sys-color-primary-container: var(--md-sys-color-primary-container-dark);
|
|
5
|
+
--md-sys-color-on-primary-container: var(--md-sys-color-on-primary-container-dark);
|
|
6
|
+
--md-sys-color-secondary: var(--md-sys-color-secondary-dark);
|
|
7
|
+
--md-sys-color-on-secondary: var(--md-sys-color-on-secondary-dark);
|
|
8
|
+
--md-sys-color-secondary-container: var(--md-sys-color-secondary-container-dark);
|
|
9
|
+
--md-sys-color-on-secondary-container: var(--md-sys-color-on-secondary-container-dark);
|
|
10
|
+
--md-sys-color-tertiary: var(--md-sys-color-tertiary-dark);
|
|
11
|
+
--md-sys-color-on-tertiary: var(--md-sys-color-on-tertiary-dark);
|
|
12
|
+
--md-sys-color-tertiary-container: var(--md-sys-color-tertiary-container-dark);
|
|
13
|
+
--md-sys-color-on-tertiary-container: var(--md-sys-color-on-tertiary-container-dark);
|
|
14
|
+
--md-sys-color-error: var(--md-sys-color-error-dark);
|
|
15
|
+
--md-sys-color-on-error: var(--md-sys-color-on-error-dark);
|
|
16
|
+
--md-sys-color-error-container: var(--md-sys-color-error-container-dark);
|
|
17
|
+
--md-sys-color-on-error-container: var(--md-sys-color-on-error-container-dark);
|
|
18
|
+
--md-sys-color-outline: var(--md-sys-color-outline-dark);
|
|
19
|
+
--md-sys-color-background: var(--md-sys-color-background-dark);
|
|
20
|
+
--md-sys-color-on-background: var(--md-sys-color-on-background-dark);
|
|
21
|
+
--md-sys-color-surface: var(--md-sys-color-surface-dark);
|
|
22
|
+
--md-sys-color-on-surface: var(--md-sys-color-on-surface-dark);
|
|
23
|
+
--md-sys-color-surface-variant: var(--md-sys-color-surface-variant-dark);
|
|
24
|
+
--md-sys-color-on-surface-variant: var(--md-sys-color-on-surface-variant-dark);
|
|
25
|
+
--md-sys-color-inverse-surface: var(--md-sys-color-inverse-surface-dark);
|
|
26
|
+
--md-sys-color-inverse-on-surface: var(--md-sys-color-inverse-on-surface-dark);
|
|
27
|
+
--md-sys-color-inverse-primary: var(--md-sys-color-inverse-primary-dark);
|
|
28
|
+
--md-sys-color-shadow: var(--md-sys-color-shadow-dark);
|
|
29
|
+
--md-sys-color-surface-tint: var(--md-sys-color-surface-tint-dark);
|
|
30
|
+
--md-sys-color-outline-variant: var(--md-sys-color-outline-variant-dark);
|
|
31
|
+
--md-sys-color-scrim: var(--md-sys-color-scrim-dark);
|
|
32
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--md-sys-color-primary: var(--md-sys-color-primary-light);
|
|
3
|
+
--md-sys-color-on-primary: var(--md-sys-color-on-primary-light);
|
|
4
|
+
--md-sys-color-primary-container: var(--md-sys-color-primary-container-light);
|
|
5
|
+
--md-sys-color-on-primary-container: var(--md-sys-color-on-primary-container-light);
|
|
6
|
+
--md-sys-color-secondary: var(--md-sys-color-secondary-light);
|
|
7
|
+
--md-sys-color-on-secondary: var(--md-sys-color-on-secondary-light);
|
|
8
|
+
--md-sys-color-secondary-container: var(--md-sys-color-secondary-container-light);
|
|
9
|
+
--md-sys-color-on-secondary-container: var(--md-sys-color-on-secondary-container-light);
|
|
10
|
+
--md-sys-color-tertiary: var(--md-sys-color-tertiary-light);
|
|
11
|
+
--md-sys-color-on-tertiary: var(--md-sys-color-on-tertiary-light);
|
|
12
|
+
--md-sys-color-tertiary-container: var(--md-sys-color-tertiary-container-light);
|
|
13
|
+
--md-sys-color-on-tertiary-container: var(--md-sys-color-on-tertiary-container-light);
|
|
14
|
+
--md-sys-color-error: var(--md-sys-color-error-light);
|
|
15
|
+
--md-sys-color-on-error: var(--md-sys-color-on-error-light);
|
|
16
|
+
--md-sys-color-error-container: var(--md-sys-color-error-container-light);
|
|
17
|
+
--md-sys-color-on-error-container: var(--md-sys-color-on-error-container-light);
|
|
18
|
+
--md-sys-color-outline: var(--md-sys-color-outline-light);
|
|
19
|
+
--md-sys-color-background: var(--md-sys-color-background-light);
|
|
20
|
+
--md-sys-color-on-background: var(--md-sys-color-on-background-light);
|
|
21
|
+
--md-sys-color-surface: var(--md-sys-color-surface-light);
|
|
22
|
+
--md-sys-color-on-surface: var(--md-sys-color-on-surface-light);
|
|
23
|
+
--md-sys-color-surface-variant: var(--md-sys-color-surface-variant-light);
|
|
24
|
+
--md-sys-color-on-surface-variant: var(--md-sys-color-on-surface-variant-light);
|
|
25
|
+
--md-sys-color-inverse-surface: var(--md-sys-color-inverse-surface-light);
|
|
26
|
+
--md-sys-color-inverse-on-surface: var(--md-sys-color-inverse-on-surface-light);
|
|
27
|
+
--md-sys-color-inverse-primary: var(--md-sys-color-inverse-primary-light);
|
|
28
|
+
--md-sys-color-shadow: var(--md-sys-color-shadow-light);
|
|
29
|
+
--md-sys-color-surface-tint: var(--md-sys-color-surface-tint-light);
|
|
30
|
+
--md-sys-color-outline-variant: var(--md-sys-color-outline-variant-light);
|
|
31
|
+
--md-sys-color-scrim: var(--md-sys-color-scrim-light);
|
|
32
|
+
}
|
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--md-source: #006495;
|
|
3
|
+
/* primary */
|
|
4
|
+
--md-ref-palette-primary0: #000000;
|
|
5
|
+
--md-ref-palette-primary10: #001e30;
|
|
6
|
+
--md-ref-palette-primary20: #003450;
|
|
7
|
+
--md-ref-palette-primary25: #003f60;
|
|
8
|
+
--md-ref-palette-primary30: #004b71;
|
|
9
|
+
--md-ref-palette-primary35: #005783;
|
|
10
|
+
--md-ref-palette-primary40: #006495;
|
|
11
|
+
--md-ref-palette-primary50: #0f7eb8;
|
|
12
|
+
--md-ref-palette-primary60: #3d98d4;
|
|
13
|
+
--md-ref-palette-primary70: #5db3f0;
|
|
14
|
+
--md-ref-palette-primary80: #8fcdff;
|
|
15
|
+
--md-ref-palette-primary90: #cbe6ff;
|
|
16
|
+
--md-ref-palette-primary95: #e6f2ff;
|
|
17
|
+
--md-ref-palette-primary98: #f7f9ff;
|
|
18
|
+
--md-ref-palette-primary99: #fcfcff;
|
|
19
|
+
--md-ref-palette-primary100: #ffffff;
|
|
20
|
+
/* secondary */
|
|
21
|
+
--md-ref-palette-secondary0: #000000;
|
|
22
|
+
--md-ref-palette-secondary10: #0d1d29;
|
|
23
|
+
--md-ref-palette-secondary20: #22323f;
|
|
24
|
+
--md-ref-palette-secondary25: #2d3d4b;
|
|
25
|
+
--md-ref-palette-secondary30: #394856;
|
|
26
|
+
--md-ref-palette-secondary35: #445462;
|
|
27
|
+
--md-ref-palette-secondary40: #50606f;
|
|
28
|
+
--md-ref-palette-secondary50: #697988;
|
|
29
|
+
--md-ref-palette-secondary60: #8293a2;
|
|
30
|
+
--md-ref-palette-secondary70: #9dadbd;
|
|
31
|
+
--md-ref-palette-secondary80: #b8c8d9;
|
|
32
|
+
--md-ref-palette-secondary90: #d4e4f6;
|
|
33
|
+
--md-ref-palette-secondary95: #e6f2ff;
|
|
34
|
+
--md-ref-palette-secondary98: #f7f9ff;
|
|
35
|
+
--md-ref-palette-secondary99: #fcfcff;
|
|
36
|
+
--md-ref-palette-secondary100: #ffffff;
|
|
37
|
+
/* tertiary */
|
|
38
|
+
--md-ref-palette-tertiary0: #000000;
|
|
39
|
+
--md-ref-palette-tertiary10: #211634;
|
|
40
|
+
--md-ref-palette-tertiary20: #362b4a;
|
|
41
|
+
--md-ref-palette-tertiary25: #423656;
|
|
42
|
+
--md-ref-palette-tertiary30: #4d4162;
|
|
43
|
+
--md-ref-palette-tertiary35: #594c6e;
|
|
44
|
+
--md-ref-palette-tertiary40: #66587b;
|
|
45
|
+
--md-ref-palette-tertiary50: #7f7195;
|
|
46
|
+
--md-ref-palette-tertiary60: #998ab0;
|
|
47
|
+
--md-ref-palette-tertiary70: #b4a4cb;
|
|
48
|
+
--md-ref-palette-tertiary80: #d0bfe7;
|
|
49
|
+
--md-ref-palette-tertiary90: #ecdcff;
|
|
50
|
+
--md-ref-palette-tertiary95: #f7edff;
|
|
51
|
+
--md-ref-palette-tertiary98: #fef7ff;
|
|
52
|
+
--md-ref-palette-tertiary99: #fffbff;
|
|
53
|
+
--md-ref-palette-tertiary100: #ffffff;
|
|
54
|
+
/* neutral */
|
|
55
|
+
--md-ref-palette-neutral0: #000000;
|
|
56
|
+
--md-ref-palette-neutral10: #1a1c1e;
|
|
57
|
+
--md-ref-palette-neutral20: #2e3133;
|
|
58
|
+
--md-ref-palette-neutral25: #3a3c3e;
|
|
59
|
+
--md-ref-palette-neutral30: #454749;
|
|
60
|
+
--md-ref-palette-neutral35: #515255;
|
|
61
|
+
--md-ref-palette-neutral40: #5d5e61;
|
|
62
|
+
--md-ref-palette-neutral50: #76777a;
|
|
63
|
+
--md-ref-palette-neutral60: #8f9194;
|
|
64
|
+
--md-ref-palette-neutral70: #aaabae;
|
|
65
|
+
--md-ref-palette-neutral80: #c6c6c9;
|
|
66
|
+
--md-ref-palette-neutral90: #e2e2e5;
|
|
67
|
+
--md-ref-palette-neutral95: #f0f0f3;
|
|
68
|
+
--md-ref-palette-neutral98: #f9f9fc;
|
|
69
|
+
--md-ref-palette-neutral99: #fcfcff;
|
|
70
|
+
--md-ref-palette-neutral100: #ffffff;
|
|
71
|
+
/* neutral-variant */
|
|
72
|
+
--md-ref-palette-neutral-variant0: #000000;
|
|
73
|
+
--md-ref-palette-neutral-variant10: #161c22;
|
|
74
|
+
--md-ref-palette-neutral-variant20: #2b3137;
|
|
75
|
+
--md-ref-palette-neutral-variant25: #363c42;
|
|
76
|
+
--md-ref-palette-neutral-variant30: #41474d;
|
|
77
|
+
--md-ref-palette-neutral-variant35: #4d5359;
|
|
78
|
+
--md-ref-palette-neutral-variant40: #595f65;
|
|
79
|
+
--md-ref-palette-neutral-variant50: #72787e;
|
|
80
|
+
--md-ref-palette-neutral-variant60: #8b9198;
|
|
81
|
+
--md-ref-palette-neutral-variant70: #a6acb3;
|
|
82
|
+
--md-ref-palette-neutral-variant80: #c1c7ce;
|
|
83
|
+
--md-ref-palette-neutral-variant90: #dee3ea;
|
|
84
|
+
--md-ref-palette-neutral-variant95: #ecf1f9;
|
|
85
|
+
--md-ref-palette-neutral-variant98: #f7f9ff;
|
|
86
|
+
--md-ref-palette-neutral-variant99: #fcfcff;
|
|
87
|
+
--md-ref-palette-neutral-variant100: #ffffff;
|
|
88
|
+
/* error */
|
|
89
|
+
--md-ref-palette-error0: #000000;
|
|
90
|
+
--md-ref-palette-error10: #410002;
|
|
91
|
+
--md-ref-palette-error20: #690005;
|
|
92
|
+
--md-ref-palette-error25: #7e0007;
|
|
93
|
+
--md-ref-palette-error30: #93000a;
|
|
94
|
+
--md-ref-palette-error35: #a80710;
|
|
95
|
+
--md-ref-palette-error40: #ba1a1a;
|
|
96
|
+
--md-ref-palette-error50: #de3730;
|
|
97
|
+
--md-ref-palette-error60: #ff5449;
|
|
98
|
+
--md-ref-palette-error70: #ff897d;
|
|
99
|
+
--md-ref-palette-error80: #ffb4ab;
|
|
100
|
+
--md-ref-palette-error90: #ffdad6;
|
|
101
|
+
--md-ref-palette-error95: #ffedea;
|
|
102
|
+
--md-ref-palette-error98: #fff8f7;
|
|
103
|
+
--md-ref-palette-error99: #fffbff;
|
|
104
|
+
--md-ref-palette-error100: #ffffff;
|
|
105
|
+
/* light */
|
|
106
|
+
--md-sys-color-primary-light: #006495;
|
|
107
|
+
--md-sys-color-on-primary-light: #ffffff;
|
|
108
|
+
--md-sys-color-primary-container-light: #cbe6ff;
|
|
109
|
+
--md-sys-color-on-primary-container-light: #001e30;
|
|
110
|
+
--md-sys-color-secondary-light: #50606f;
|
|
111
|
+
--md-sys-color-on-secondary-light: #ffffff;
|
|
112
|
+
--md-sys-color-secondary-container-light: #d4e4f6;
|
|
113
|
+
--md-sys-color-on-secondary-container-light: #0d1d29;
|
|
114
|
+
--md-sys-color-tertiary-light: #66587b;
|
|
115
|
+
--md-sys-color-on-tertiary-light: #ffffff;
|
|
116
|
+
--md-sys-color-tertiary-container-light: #ecdcff;
|
|
117
|
+
--md-sys-color-on-tertiary-container-light: #211634;
|
|
118
|
+
--md-sys-color-error-light: #ba1a1a;
|
|
119
|
+
--md-sys-color-error-container-light: #ffdad6;
|
|
120
|
+
--md-sys-color-on-error-light: #ffffff;
|
|
121
|
+
--md-sys-color-on-error-container-light: #410002;
|
|
122
|
+
--md-sys-color-background-light: #fcfcff;
|
|
123
|
+
--md-sys-color-on-background-light: #1a1c1e;
|
|
124
|
+
--md-sys-color-surface-light: #fcfcff;
|
|
125
|
+
--md-sys-color-on-surface-light: #1a1c1e;
|
|
126
|
+
--md-sys-color-surface-variant-light: #dee3ea;
|
|
127
|
+
--md-sys-color-on-surface-variant-light: #41474d;
|
|
128
|
+
--md-sys-color-outline-light: #72787e;
|
|
129
|
+
--md-sys-color-inverse-on-surface-light: #f0f0f3;
|
|
130
|
+
--md-sys-color-inverse-surface-light: #2e3133;
|
|
131
|
+
--md-sys-color-inverse-primary-light: #8fcdff;
|
|
132
|
+
--md-sys-color-shadow-light: #000000;
|
|
133
|
+
--md-sys-color-surface-tint-light: #006495;
|
|
134
|
+
--md-sys-color-outline-variant-light: #c1c7ce;
|
|
135
|
+
--md-sys-color-scrim-light: #000000;
|
|
136
|
+
/* dark */
|
|
137
|
+
--md-sys-color-primary-dark: #8fcdff;
|
|
138
|
+
--md-sys-color-on-primary-dark: #003450;
|
|
139
|
+
--md-sys-color-primary-container-dark: #004b71;
|
|
140
|
+
--md-sys-color-on-primary-container-dark: #cbe6ff;
|
|
141
|
+
--md-sys-color-secondary-dark: #b8c8d9;
|
|
142
|
+
--md-sys-color-on-secondary-dark: #22323f;
|
|
143
|
+
--md-sys-color-secondary-container-dark: #394856;
|
|
144
|
+
--md-sys-color-on-secondary-container-dark: #d4e4f6;
|
|
145
|
+
--md-sys-color-tertiary-dark: #d0bfe7;
|
|
146
|
+
--md-sys-color-on-tertiary-dark: #362b4a;
|
|
147
|
+
--md-sys-color-tertiary-container-dark: #4d4162;
|
|
148
|
+
--md-sys-color-on-tertiary-container-dark: #ecdcff;
|
|
149
|
+
--md-sys-color-error-dark: #ffb4ab;
|
|
150
|
+
--md-sys-color-error-container-dark: #93000a;
|
|
151
|
+
--md-sys-color-on-error-dark: #690005;
|
|
152
|
+
--md-sys-color-on-error-container-dark: #ffdad6;
|
|
153
|
+
--md-sys-color-background-dark: #1a1c1e;
|
|
154
|
+
--md-sys-color-on-background-dark: #e2e2e5;
|
|
155
|
+
--md-sys-color-surface-dark: #1a1c1e;
|
|
156
|
+
--md-sys-color-on-surface-dark: #e2e2e5;
|
|
157
|
+
--md-sys-color-surface-variant-dark: #41474d;
|
|
158
|
+
--md-sys-color-on-surface-variant-dark: #c1c7ce;
|
|
159
|
+
--md-sys-color-outline-dark: #8b9198;
|
|
160
|
+
--md-sys-color-inverse-on-surface-dark: #1a1c1e;
|
|
161
|
+
--md-sys-color-inverse-surface-dark: #e2e2e5;
|
|
162
|
+
--md-sys-color-inverse-primary-dark: #006495;
|
|
163
|
+
--md-sys-color-shadow-dark: #000000;
|
|
164
|
+
--md-sys-color-surface-tint-dark: #8fcdff;
|
|
165
|
+
--md-sys-color-outline-variant-dark: #41474d;
|
|
166
|
+
--md-sys-color-scrim-dark: #000000;
|
|
167
|
+
/* display - large */
|
|
168
|
+
--md-sys-typescale-display-large-font-family-name: Roboto;
|
|
169
|
+
--md-sys-typescale-display-large-font-family-style: Regular;
|
|
170
|
+
--md-sys-typescale-display-large-font-weight: 400px;
|
|
171
|
+
--md-sys-typescale-display-large-font-size: 57px;
|
|
172
|
+
--md-sys-typescale-display-large-line-height: 64px;
|
|
173
|
+
--md-sys-typescale-display-large-letter-spacing: -0.25px;
|
|
174
|
+
/* display - medium */
|
|
175
|
+
--md-sys-typescale-display-medium-font-family-name: Roboto;
|
|
176
|
+
--md-sys-typescale-display-medium-font-family-style: Regular;
|
|
177
|
+
--md-sys-typescale-display-medium-font-weight: 400px;
|
|
178
|
+
--md-sys-typescale-display-medium-font-size: 45px;
|
|
179
|
+
--md-sys-typescale-display-medium-line-height: 52px;
|
|
180
|
+
--md-sys-typescale-display-medium-letter-spacing: 0px;
|
|
181
|
+
/* display - small */
|
|
182
|
+
--md-sys-typescale-display-small-font-family-name: Roboto;
|
|
183
|
+
--md-sys-typescale-display-small-font-family-style: Regular;
|
|
184
|
+
--md-sys-typescale-display-small-font-weight: 400px;
|
|
185
|
+
--md-sys-typescale-display-small-font-size: 36px;
|
|
186
|
+
--md-sys-typescale-display-small-line-height: 44px;
|
|
187
|
+
--md-sys-typescale-display-small-letter-spacing: 0px;
|
|
188
|
+
/* headline - large */
|
|
189
|
+
--md-sys-typescale-headline-large-font-family-name: Roboto;
|
|
190
|
+
--md-sys-typescale-headline-large-font-family-style: Regular;
|
|
191
|
+
--md-sys-typescale-headline-large-font-weight: 400px;
|
|
192
|
+
--md-sys-typescale-headline-large-font-size: 32px;
|
|
193
|
+
--md-sys-typescale-headline-large-line-height: 40px;
|
|
194
|
+
--md-sys-typescale-headline-large-letter-spacing: 0px;
|
|
195
|
+
/* headline - medium */
|
|
196
|
+
--md-sys-typescale-headline-medium-font-family-name: Roboto;
|
|
197
|
+
--md-sys-typescale-headline-medium-font-family-style: Regular;
|
|
198
|
+
--md-sys-typescale-headline-medium-font-weight: 400px;
|
|
199
|
+
--md-sys-typescale-headline-medium-font-size: 28px;
|
|
200
|
+
--md-sys-typescale-headline-medium-line-height: 36px;
|
|
201
|
+
--md-sys-typescale-headline-medium-letter-spacing: 0px;
|
|
202
|
+
/* headline - small */
|
|
203
|
+
--md-sys-typescale-headline-small-font-family-name: Roboto;
|
|
204
|
+
--md-sys-typescale-headline-small-font-family-style: Regular;
|
|
205
|
+
--md-sys-typescale-headline-small-font-weight: 400px;
|
|
206
|
+
--md-sys-typescale-headline-small-font-size: 24px;
|
|
207
|
+
--md-sys-typescale-headline-small-line-height: 32px;
|
|
208
|
+
--md-sys-typescale-headline-small-letter-spacing: 0px;
|
|
209
|
+
/* body - large */
|
|
210
|
+
--md-sys-typescale-body-large-font-family-name: Roboto;
|
|
211
|
+
--md-sys-typescale-body-large-font-family-style: Regular;
|
|
212
|
+
--md-sys-typescale-body-large-font-weight: 400px;
|
|
213
|
+
--md-sys-typescale-body-large-font-size: 16px;
|
|
214
|
+
--md-sys-typescale-body-large-line-height: 24px;
|
|
215
|
+
--md-sys-typescale-body-large-letter-spacing: 0.50px;
|
|
216
|
+
/* body - medium */
|
|
217
|
+
--md-sys-typescale-body-medium-font-family-name: Roboto;
|
|
218
|
+
--md-sys-typescale-body-medium-font-family-style: Regular;
|
|
219
|
+
--md-sys-typescale-body-medium-font-weight: 400px;
|
|
220
|
+
--md-sys-typescale-body-medium-font-size: 14px;
|
|
221
|
+
--md-sys-typescale-body-medium-line-height: 20px;
|
|
222
|
+
--md-sys-typescale-body-medium-letter-spacing: 0.25px;
|
|
223
|
+
/* body - small */
|
|
224
|
+
--md-sys-typescale-body-small-font-family-name: Roboto;
|
|
225
|
+
--md-sys-typescale-body-small-font-family-style: Regular;
|
|
226
|
+
--md-sys-typescale-body-small-font-weight: 400px;
|
|
227
|
+
--md-sys-typescale-body-small-font-size: 12px;
|
|
228
|
+
--md-sys-typescale-body-small-line-height: 16px;
|
|
229
|
+
--md-sys-typescale-body-small-letter-spacing: 0.40px;
|
|
230
|
+
/* label - large */
|
|
231
|
+
--md-sys-typescale-label-large-font-family-name: Roboto;
|
|
232
|
+
--md-sys-typescale-label-large-font-family-style: Medium;
|
|
233
|
+
--md-sys-typescale-label-large-font-weight: 500px;
|
|
234
|
+
--md-sys-typescale-label-large-font-size: 14px;
|
|
235
|
+
--md-sys-typescale-label-large-line-height: 20px;
|
|
236
|
+
--md-sys-typescale-label-large-letter-spacing: 0.10px;
|
|
237
|
+
/* label - medium */
|
|
238
|
+
--md-sys-typescale-label-medium-font-family-name: Roboto;
|
|
239
|
+
--md-sys-typescale-label-medium-font-family-style: Medium;
|
|
240
|
+
--md-sys-typescale-label-medium-font-weight: 500px;
|
|
241
|
+
--md-sys-typescale-label-medium-font-size: 12px;
|
|
242
|
+
--md-sys-typescale-label-medium-line-height: 16px;
|
|
243
|
+
--md-sys-typescale-label-medium-letter-spacing: 0.50px;
|
|
244
|
+
/* label - small */
|
|
245
|
+
--md-sys-typescale-label-small-font-family-name: Roboto;
|
|
246
|
+
--md-sys-typescale-label-small-font-family-style: Medium;
|
|
247
|
+
--md-sys-typescale-label-small-font-weight: 500px;
|
|
248
|
+
--md-sys-typescale-label-small-font-size: 11px;
|
|
249
|
+
--md-sys-typescale-label-small-line-height: 16px;
|
|
250
|
+
--md-sys-typescale-label-small-letter-spacing: 0.50px;
|
|
251
|
+
/* title - large */
|
|
252
|
+
--md-sys-typescale-title-large-font-family-name: Roboto;
|
|
253
|
+
--md-sys-typescale-title-large-font-family-style: Regular;
|
|
254
|
+
--md-sys-typescale-title-large-font-weight: 400px;
|
|
255
|
+
--md-sys-typescale-title-large-font-size: 22px;
|
|
256
|
+
--md-sys-typescale-title-large-line-height: 28px;
|
|
257
|
+
--md-sys-typescale-title-large-letter-spacing: 0px;
|
|
258
|
+
/* title - medium */
|
|
259
|
+
--md-sys-typescale-title-medium-font-family-name: Roboto;
|
|
260
|
+
--md-sys-typescale-title-medium-font-family-style: Medium;
|
|
261
|
+
--md-sys-typescale-title-medium-font-weight: 500px;
|
|
262
|
+
--md-sys-typescale-title-medium-font-size: 16px;
|
|
263
|
+
--md-sys-typescale-title-medium-line-height: 24px;
|
|
264
|
+
--md-sys-typescale-title-medium-letter-spacing: 0.15px;
|
|
265
|
+
/* title - small */
|
|
266
|
+
--md-sys-typescale-title-small-font-family-name: Roboto;
|
|
267
|
+
--md-sys-typescale-title-small-font-family-style: Medium;
|
|
268
|
+
--md-sys-typescale-title-small-font-weight: 500px;
|
|
269
|
+
--md-sys-typescale-title-small-font-size: 14px;
|
|
270
|
+
--md-sys-typescale-title-small-line-height: 20px;
|
|
271
|
+
--md-sys-typescale-title-small-letter-spacing: 0.10px;
|
|
272
|
+
}
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
.display-large{
|
|
2
|
+
font-family: var(--md-sys-typescale-display-large-font-family-name);
|
|
3
|
+
font-style: var(--md-sys-typescale-display-large-font-family-style);
|
|
4
|
+
font-weight: var(--md-sys-typescale-display-large-font-weight);
|
|
5
|
+
font-size: var(--md-sys-typescale-display-large-font-size);
|
|
6
|
+
letter-spacing: var(--md-sys-typescale-display-large-tracking);
|
|
7
|
+
line-height: var(--md-sys-typescale-display-large-height);
|
|
8
|
+
text-transform: var(--md-sys-typescale-display-large-text-transform);
|
|
9
|
+
text-decoration: var(--md-sys-typescale-display-large-text-decoration);
|
|
10
|
+
}
|
|
11
|
+
.display-medium{
|
|
12
|
+
font-family: var(--md-sys-typescale-display-medium-font-family-name);
|
|
13
|
+
font-style: var(--md-sys-typescale-display-medium-font-family-style);
|
|
14
|
+
font-weight: var(--md-sys-typescale-display-medium-font-weight);
|
|
15
|
+
font-size: var(--md-sys-typescale-display-medium-font-size);
|
|
16
|
+
letter-spacing: var(--md-sys-typescale-display-medium-tracking);
|
|
17
|
+
line-height: var(--md-sys-typescale-display-medium-height);
|
|
18
|
+
text-transform: var(--md-sys-typescale-display-medium-text-transform);
|
|
19
|
+
text-decoration: var(--md-sys-typescale-display-medium-text-decoration);
|
|
20
|
+
}
|
|
21
|
+
.display-small{
|
|
22
|
+
font-family: var(--md-sys-typescale-display-small-font-family-name);
|
|
23
|
+
font-style: var(--md-sys-typescale-display-small-font-family-style);
|
|
24
|
+
font-weight: var(--md-sys-typescale-display-small-font-weight);
|
|
25
|
+
font-size: var(--md-sys-typescale-display-small-font-size);
|
|
26
|
+
letter-spacing: var(--md-sys-typescale-display-small-tracking);
|
|
27
|
+
line-height: var(--md-sys-typescale-display-small-height);
|
|
28
|
+
text-transform: var(--md-sys-typescale-display-small-text-transform);
|
|
29
|
+
text-decoration: var(--md-sys-typescale-display-small-text-decoration);
|
|
30
|
+
}
|
|
31
|
+
.headline-large{
|
|
32
|
+
font-family: var(--md-sys-typescale-headline-large-font-family-name);
|
|
33
|
+
font-style: var(--md-sys-typescale-headline-large-font-family-style);
|
|
34
|
+
font-weight: var(--md-sys-typescale-headline-large-font-weight);
|
|
35
|
+
font-size: var(--md-sys-typescale-headline-large-font-size);
|
|
36
|
+
letter-spacing: var(--md-sys-typescale-headline-large-tracking);
|
|
37
|
+
line-height: var(--md-sys-typescale-headline-large-height);
|
|
38
|
+
text-transform: var(--md-sys-typescale-headline-large-text-transform);
|
|
39
|
+
text-decoration: var(--md-sys-typescale-headline-large-text-decoration);
|
|
40
|
+
}
|
|
41
|
+
.headline-medium{
|
|
42
|
+
font-family: var(--md-sys-typescale-headline-medium-font-family-name);
|
|
43
|
+
font-style: var(--md-sys-typescale-headline-medium-font-family-style);
|
|
44
|
+
font-weight: var(--md-sys-typescale-headline-medium-font-weight);
|
|
45
|
+
font-size: var(--md-sys-typescale-headline-medium-font-size);
|
|
46
|
+
letter-spacing: var(--md-sys-typescale-headline-medium-tracking);
|
|
47
|
+
line-height: var(--md-sys-typescale-headline-medium-height);
|
|
48
|
+
text-transform: var(--md-sys-typescale-headline-medium-text-transform);
|
|
49
|
+
text-decoration: var(--md-sys-typescale-headline-medium-text-decoration);
|
|
50
|
+
}
|
|
51
|
+
.headline-small{
|
|
52
|
+
font-family: var(--md-sys-typescale-headline-small-font-family-name);
|
|
53
|
+
font-style: var(--md-sys-typescale-headline-small-font-family-style);
|
|
54
|
+
font-weight: var(--md-sys-typescale-headline-small-font-weight);
|
|
55
|
+
font-size: var(--md-sys-typescale-headline-small-font-size);
|
|
56
|
+
letter-spacing: var(--md-sys-typescale-headline-small-tracking);
|
|
57
|
+
line-height: var(--md-sys-typescale-headline-small-height);
|
|
58
|
+
text-transform: var(--md-sys-typescale-headline-small-text-transform);
|
|
59
|
+
text-decoration: var(--md-sys-typescale-headline-small-text-decoration);
|
|
60
|
+
}
|
|
61
|
+
.body-large{
|
|
62
|
+
font-family: var(--md-sys-typescale-body-large-font-family-name);
|
|
63
|
+
font-style: var(--md-sys-typescale-body-large-font-family-style);
|
|
64
|
+
font-weight: var(--md-sys-typescale-body-large-font-weight);
|
|
65
|
+
font-size: var(--md-sys-typescale-body-large-font-size);
|
|
66
|
+
letter-spacing: var(--md-sys-typescale-body-large-tracking);
|
|
67
|
+
line-height: var(--md-sys-typescale-body-large-height);
|
|
68
|
+
text-transform: var(--md-sys-typescale-body-large-text-transform);
|
|
69
|
+
text-decoration: var(--md-sys-typescale-body-large-text-decoration);
|
|
70
|
+
}
|
|
71
|
+
.body-medium{
|
|
72
|
+
font-family: var(--md-sys-typescale-body-medium-font-family-name);
|
|
73
|
+
font-style: var(--md-sys-typescale-body-medium-font-family-style);
|
|
74
|
+
font-weight: var(--md-sys-typescale-body-medium-font-weight);
|
|
75
|
+
font-size: var(--md-sys-typescale-body-medium-font-size);
|
|
76
|
+
letter-spacing: var(--md-sys-typescale-body-medium-tracking);
|
|
77
|
+
line-height: var(--md-sys-typescale-body-medium-height);
|
|
78
|
+
text-transform: var(--md-sys-typescale-body-medium-text-transform);
|
|
79
|
+
text-decoration: var(--md-sys-typescale-body-medium-text-decoration);
|
|
80
|
+
}
|
|
81
|
+
.body-small{
|
|
82
|
+
font-family: var(--md-sys-typescale-body-small-font-family-name);
|
|
83
|
+
font-style: var(--md-sys-typescale-body-small-font-family-style);
|
|
84
|
+
font-weight: var(--md-sys-typescale-body-small-font-weight);
|
|
85
|
+
font-size: var(--md-sys-typescale-body-small-font-size);
|
|
86
|
+
letter-spacing: var(--md-sys-typescale-body-small-tracking);
|
|
87
|
+
line-height: var(--md-sys-typescale-body-small-height);
|
|
88
|
+
text-transform: var(--md-sys-typescale-body-small-text-transform);
|
|
89
|
+
text-decoration: var(--md-sys-typescale-body-small-text-decoration);
|
|
90
|
+
}
|
|
91
|
+
.label-large{
|
|
92
|
+
font-family: var(--md-sys-typescale-label-large-font-family-name);
|
|
93
|
+
font-style: var(--md-sys-typescale-label-large-font-family-style);
|
|
94
|
+
font-weight: var(--md-sys-typescale-label-large-font-weight);
|
|
95
|
+
font-size: var(--md-sys-typescale-label-large-font-size);
|
|
96
|
+
letter-spacing: var(--md-sys-typescale-label-large-tracking);
|
|
97
|
+
line-height: var(--md-sys-typescale-label-large-height);
|
|
98
|
+
text-transform: var(--md-sys-typescale-label-large-text-transform);
|
|
99
|
+
text-decoration: var(--md-sys-typescale-label-large-text-decoration);
|
|
100
|
+
}
|
|
101
|
+
.label-medium{
|
|
102
|
+
font-family: var(--md-sys-typescale-label-medium-font-family-name);
|
|
103
|
+
font-style: var(--md-sys-typescale-label-medium-font-family-style);
|
|
104
|
+
font-weight: var(--md-sys-typescale-label-medium-font-weight);
|
|
105
|
+
font-size: var(--md-sys-typescale-label-medium-font-size);
|
|
106
|
+
letter-spacing: var(--md-sys-typescale-label-medium-tracking);
|
|
107
|
+
line-height: var(--md-sys-typescale-label-medium-height);
|
|
108
|
+
text-transform: var(--md-sys-typescale-label-medium-text-transform);
|
|
109
|
+
text-decoration: var(--md-sys-typescale-label-medium-text-decoration);
|
|
110
|
+
}
|
|
111
|
+
.label-small{
|
|
112
|
+
font-family: var(--md-sys-typescale-label-small-font-family-name);
|
|
113
|
+
font-style: var(--md-sys-typescale-label-small-font-family-style);
|
|
114
|
+
font-weight: var(--md-sys-typescale-label-small-font-weight);
|
|
115
|
+
font-size: var(--md-sys-typescale-label-small-font-size);
|
|
116
|
+
letter-spacing: var(--md-sys-typescale-label-small-tracking);
|
|
117
|
+
line-height: var(--md-sys-typescale-label-small-height);
|
|
118
|
+
text-transform: var(--md-sys-typescale-label-small-text-transform);
|
|
119
|
+
text-decoration: var(--md-sys-typescale-label-small-text-decoration);
|
|
120
|
+
}
|
|
121
|
+
.title-large{
|
|
122
|
+
font-family: var(--md-sys-typescale-title-large-font-family-name);
|
|
123
|
+
font-style: var(--md-sys-typescale-title-large-font-family-style);
|
|
124
|
+
font-weight: var(--md-sys-typescale-title-large-font-weight);
|
|
125
|
+
font-size: var(--md-sys-typescale-title-large-font-size);
|
|
126
|
+
letter-spacing: var(--md-sys-typescale-title-large-tracking);
|
|
127
|
+
line-height: var(--md-sys-typescale-title-large-height);
|
|
128
|
+
text-transform: var(--md-sys-typescale-title-large-text-transform);
|
|
129
|
+
text-decoration: var(--md-sys-typescale-title-large-text-decoration);
|
|
130
|
+
}
|
|
131
|
+
.title-medium{
|
|
132
|
+
font-family: var(--md-sys-typescale-title-medium-font-family-name);
|
|
133
|
+
font-style: var(--md-sys-typescale-title-medium-font-family-style);
|
|
134
|
+
font-weight: var(--md-sys-typescale-title-medium-font-weight);
|
|
135
|
+
font-size: var(--md-sys-typescale-title-medium-font-size);
|
|
136
|
+
letter-spacing: var(--md-sys-typescale-title-medium-tracking);
|
|
137
|
+
line-height: var(--md-sys-typescale-title-medium-height);
|
|
138
|
+
text-transform: var(--md-sys-typescale-title-medium-text-transform);
|
|
139
|
+
text-decoration: var(--md-sys-typescale-title-medium-text-decoration);
|
|
140
|
+
}
|
|
141
|
+
.title-small{
|
|
142
|
+
font-family: var(--md-sys-typescale-title-small-font-family-name);
|
|
143
|
+
font-style: var(--md-sys-typescale-title-small-font-family-style);
|
|
144
|
+
font-weight: var(--md-sys-typescale-title-small-font-weight);
|
|
145
|
+
font-size: var(--md-sys-typescale-title-small-font-size);
|
|
146
|
+
letter-spacing: var(--md-sys-typescale-title-small-tracking);
|
|
147
|
+
line-height: var(--md-sys-typescale-title-small-height);
|
|
148
|
+
text-transform: var(--md-sys-typescale-title-small-text-transform);
|
|
149
|
+
text-decoration: var(--md-sys-typescale-title-small-text-decoration);
|
|
150
|
+
}
|
package/sass/materialize.scss
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
|
+
@import "components/tokens.module";
|
|
3
|
+
@import "components/colors.module";
|
|
4
|
+
@import "components/typography.module";
|
|
5
|
+
@import "components/theme.light.module";
|
|
6
|
+
@import "components/theme.dark.module";
|
|
7
|
+
@import "components/_theme_variables";
|
|
8
|
+
|
|
2
9
|
// Color
|
|
3
10
|
@import "components/color-variables";
|
|
4
11
|
@import "components/color-classes";
|
|
@@ -35,4 +42,3 @@
|
|
|
35
42
|
@import "components/pulse";
|
|
36
43
|
@import "components/datepicker";
|
|
37
44
|
@import "components/timepicker";
|
|
38
|
-
@import "components/_theme_variables";
|