@oneplatformdev/tokens 0.1.1-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/README.md +0 -0
- package/default.css +44 -0
- package/package.json +18 -0
package/README.md
ADDED
|
File without changes
|
package/default.css
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--pt-background: hsl(0 0% 100%);
|
|
3
|
+
--pt-foreground: hsl(222 47% 11%);
|
|
4
|
+
--pt-card: hsl(0 0% 100%);
|
|
5
|
+
--pt-card-foreground: hsl(222 47% 11%);
|
|
6
|
+
--pt-popover: hsl(0 0% 100%);
|
|
7
|
+
--pt-popover-foreground: hsl(222 47% 11%);
|
|
8
|
+
--pt-primary: hsl(222 47% 11%);
|
|
9
|
+
--pt-primary-foreground: hsl(0 0% 100%);
|
|
10
|
+
--pt-secondary: hsl(210 40% 96%);
|
|
11
|
+
--pt-secondary-foreground: hsl(222 47% 11%);
|
|
12
|
+
--pt-muted: hsl(210 40% 96%);
|
|
13
|
+
--pt-muted-foreground: hsl(215 20% 65%);
|
|
14
|
+
--pt-accent: hsl(210 40% 96%);
|
|
15
|
+
--pt-accent-foreground: hsl(222 47% 11%);
|
|
16
|
+
--pt-destructive: hsl(0 84% 60%);
|
|
17
|
+
--pt-destructive-foreground: hsl(0 0% 100%);
|
|
18
|
+
--pt-border: hsl(214 32% 91%);
|
|
19
|
+
--pt-input: hsl(214 32% 91%);
|
|
20
|
+
--pt-ring: hsl(222 84% 5%);
|
|
21
|
+
--pt-radius: 0.5rem;
|
|
22
|
+
}
|
|
23
|
+
:root.dark {
|
|
24
|
+
--pt-background: hsl(222 10% 10%);
|
|
25
|
+
--pt-foreground: hsl(210 40% 98%);
|
|
26
|
+
--pt-card: hsl(222 10% 12%);
|
|
27
|
+
--pt-card-foreground: hsl(210 40% 98%);
|
|
28
|
+
--pt-popover: hsl(222 10% 12%);
|
|
29
|
+
--pt-popover-foreground: hsl(210 40% 98%);
|
|
30
|
+
--pt-primary: hsl(210 40% 98%);
|
|
31
|
+
--pt-primary-foreground: hsl(222 47% 11%);
|
|
32
|
+
--pt-secondary: hsl(217 33% 17%);
|
|
33
|
+
--pt-secondary-foreground: hsl(210 40% 98%);
|
|
34
|
+
--pt-muted: hsl(217 33% 17%);
|
|
35
|
+
--pt-muted-foreground: hsl(215 20% 65%);
|
|
36
|
+
--pt-accent: hsl(217 33% 17%);
|
|
37
|
+
--pt-accent-foreground: hsl(210 40% 98%);
|
|
38
|
+
--pt-destructive: hsl(0 72% 51%);
|
|
39
|
+
--pt-destructive-foreground: hsl(210 40% 98%);
|
|
40
|
+
--pt-border: hsl(217 33% 17%);
|
|
41
|
+
--pt-input: hsl(217 33% 17%);
|
|
42
|
+
--pt-ring: hsl(212 27% 84%);
|
|
43
|
+
--pt-radius: 0.5rem;
|
|
44
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@oneplatformdev/tokens",
|
|
3
|
+
"version": "0.1.1-1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"exports": {
|
|
6
|
+
"./default.css": "./default.css"
|
|
7
|
+
},
|
|
8
|
+
"files": [
|
|
9
|
+
"default.css",
|
|
10
|
+
"README.md"
|
|
11
|
+
],
|
|
12
|
+
"sideEffects": [
|
|
13
|
+
"./default.css"
|
|
14
|
+
],
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public"
|
|
17
|
+
}
|
|
18
|
+
}
|