@sandlada/material-design-css 1.0.1 → 1.0.2
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/package.json +6 -3
- package/prebuild-color-green.css +59 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sandlada/material-design-css",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "A ready-made npm package for a collection of css styles in the material design style.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Sandlada & Kai-Orion",
|
|
@@ -27,7 +27,9 @@
|
|
|
27
27
|
"./shape.css": "./shape.css",
|
|
28
28
|
"./shape": "./shape.css",
|
|
29
29
|
"./typography.css": "./typography.css",
|
|
30
|
-
"./typography": "./typography.css"
|
|
30
|
+
"./typography": "./typography.css",
|
|
31
|
+
"./prebuild-color-green.css": "./prebuild-color-green.css",
|
|
32
|
+
"./prebuild-color-green": "./prebuild-color-green.css"
|
|
31
33
|
},
|
|
32
34
|
"style": "index.css",
|
|
33
35
|
"files": [
|
|
@@ -35,6 +37,7 @@
|
|
|
35
37
|
"color.css",
|
|
36
38
|
"motion.css",
|
|
37
39
|
"shape.css",
|
|
38
|
-
"typography.css"
|
|
40
|
+
"typography.css",
|
|
41
|
+
"prebuild-color-green.css"
|
|
39
42
|
]
|
|
40
43
|
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
@layer material-design-system.color.variable {
|
|
2
|
+
:root {
|
|
3
|
+
--md-sys-color-primary-palette-key-color: light-dark(#00a43c, #00a43c);
|
|
4
|
+
--md-sys-color-secondary-palette-key-color: light-dark(#4d8350, #4d835);
|
|
5
|
+
--md-sys-color-tertiary-palette-key-color: light-dark(#ee5983, #ee598);
|
|
6
|
+
--md-sys-color-neutral-palette-key-color: light-dark(#71796e, #71796e);
|
|
7
|
+
--md-sys-color-neutral-variant-palette-key-color: light-dark(#6e7b6b, #6e7b6);
|
|
8
|
+
--md-sys-color-background: light-dark(#f4fcee, #0e150e);
|
|
9
|
+
--md-sys-color-on-background: light-dark(#161d16, #dde5d8);
|
|
10
|
+
--md-sys-color-surface: light-dark(#f4fcee, #0e150e);
|
|
11
|
+
--md-sys-color-surface-dim: light-dark(#d4dcd0, #0e150e);
|
|
12
|
+
--md-sys-color-surface-bright: light-dark(#f4fcee, #343b32);
|
|
13
|
+
--md-sys-color-surface-container-lowest: light-dark(#ffffff, #091009);
|
|
14
|
+
--md-sys-color-surface-container-low: light-dark(#eef6e9, #161d16);
|
|
15
|
+
--md-sys-color-surface-container: light-dark(#e8f0e3, #1a2119);
|
|
16
|
+
--md-sys-color-surface-container-high: light-dark(#e3ebde, #252c23);
|
|
17
|
+
--md-sys-color-surface-container-highest: light-dark(#dde5d8, #2f372e);
|
|
18
|
+
--md-sys-color-on-surface: light-dark(#161d16, #dde5d8);
|
|
19
|
+
--md-sys-color-surface-variant: light-dark(#d8e7d3, #3e4a3c);
|
|
20
|
+
--md-sys-color-on-surface-variant: light-dark(#3e4a3c, #bccab8);
|
|
21
|
+
--md-sys-color-inverse-surface: light-dark(#2b322a, #dde5d8);
|
|
22
|
+
--md-sys-color-inverse-on-surface: light-dark(#ebf3e6, #2b322a);
|
|
23
|
+
--md-sys-color-outline: light-dark(#6d7b6b, #879484);
|
|
24
|
+
--md-sys-color-outline-variant: light-dark(#bccab8, #3e4a3c);
|
|
25
|
+
--md-sys-color-shadow: light-dark(#000000, #000000);
|
|
26
|
+
--md-sys-color-scrim: light-dark(#000000, #000000);
|
|
27
|
+
--md-sys-color-surface-tint: light-dark(#006e25, #5be06f);
|
|
28
|
+
--md-sys-color-primary: light-dark(#006b24, #5be06f);
|
|
29
|
+
--md-sys-color-on-primary: light-dark(#ffffff, #003910);
|
|
30
|
+
--md-sys-color-primary-container: light-dark(#008730, #0ba73f);
|
|
31
|
+
--md-sys-color-on-primary-container: light-dark(#f7fff2, #002e0b);
|
|
32
|
+
--md-sys-color-inverse-primary: light-dark(#5be06f, #006e25);
|
|
33
|
+
--md-sys-color-secondary: light-dark(#356939, #9bd59a);
|
|
34
|
+
--md-sys-color-on-secondary: light-dark(#ffffff, #003910);
|
|
35
|
+
--md-sys-color-secondary-container: light-dark(#b3eeb1, #1e5326);
|
|
36
|
+
--md-sys-color-on-secondary-container: light-dark(#396e3d, #8dc68d);
|
|
37
|
+
--md-sys-color-tertiary: light-dark(#ac2552, #ffb1c1);
|
|
38
|
+
--md-sys-color-on-tertiary: light-dark(#ffffff, #660029);
|
|
39
|
+
--md-sys-color-tertiary-container: light-dark(#cd3f6a, #f25c86);
|
|
40
|
+
--md-sys-color-on-tertiary-container: light-dark(#fffbff, #550021);
|
|
41
|
+
--md-sys-color-error: light-dark(#ba1a1a, #ffb4ab);
|
|
42
|
+
--md-sys-color-on-error: light-dark(#ffffff, #690005);
|
|
43
|
+
--md-sys-color-error-container: light-dark(#ffdad6, #93000a);
|
|
44
|
+
--md-sys-color-on-error-container: light-dark(#93000a, #ffdad6);
|
|
45
|
+
--md-sys-color-primary-fixed: light-dark(#79fd88, #79fd88);
|
|
46
|
+
--md-sys-color-primary-fixed-dim: light-dark(#5be06f, #5be06f);
|
|
47
|
+
--md-sys-color-on-primary-fixed: light-dark(#002106, #002106);
|
|
48
|
+
--md-sys-color-on-primary-fixed-variant: light-dark(#00531a, #00531a);
|
|
49
|
+
--md-sys-color-secondary-fixed: light-dark(#b6f1b4, #b6f1b4);
|
|
50
|
+
--md-sys-color-secondary-fixed-dim: light-dark(#9bd59a, #9bd59a);
|
|
51
|
+
--md-sys-color-on-secondary-fixed: light-dark(#002106, #002106);
|
|
52
|
+
--md-sys-color-on-secondary-fixed-variant: light-dark(#1c5124, #1c512);
|
|
53
|
+
--md-sys-color-tertiary-fixed: light-dark(#ffd9df, #ffd9df);
|
|
54
|
+
--md-sys-color-tertiary-fixed-dim: light-dark(#ffb1c1, #ffb1c1);
|
|
55
|
+
--md-sys-color-on-tertiary-fixed: light-dark(#3f0017, #3f0017);
|
|
56
|
+
--md-sys-color-on-tertiary-fixed-variant: light-dark(#8e063e, #8e063e);
|
|
57
|
+
|
|
58
|
+
}
|
|
59
|
+
}
|