@etchkit/tailwind 0.0.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.
Files changed (2) hide show
  1. package/etchkit.css +55 -0
  2. package/package.json +20 -0
package/etchkit.css ADDED
@@ -0,0 +1,55 @@
1
+ /* etchkit design tokens — Tailwind v4 CSS theme */
2
+
3
+ :root {
4
+ --background: 0 0% 100%;
5
+ --foreground: 0 0% 3.9%;
6
+ --card: 0 0% 100%;
7
+ --card-foreground: 0 0% 3.9%;
8
+ --muted: 0 0% 96%;
9
+ --muted-foreground: 0 0% 45%;
10
+ --border: 0 0% 3.9%;
11
+ --input: 0 0% 3.9%;
12
+ --ring: 0 0% 3.9%;
13
+ --accent: 0 0% 96%;
14
+ --accent-foreground: 0 0% 3.9%;
15
+ --destructive: 0 84% 60%;
16
+ --destructive-foreground: 0 0% 98%;
17
+ }
18
+
19
+ .dark {
20
+ --background: 0 0% 3.9%;
21
+ --foreground: 0 0% 98%;
22
+ --card: 0 0% 3.9%;
23
+ --card-foreground: 0 0% 98%;
24
+ --muted: 0 0% 14.9%;
25
+ --muted-foreground: 0 0% 63.9%;
26
+ --border: 0 0% 98%;
27
+ --input: 0 0% 98%;
28
+ --ring: 0 0% 98%;
29
+ --accent: 0 0% 14.9%;
30
+ --accent-foreground: 0 0% 98%;
31
+ }
32
+
33
+ @theme inline {
34
+ --font-family-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
35
+
36
+ --radius: 0px;
37
+ --radius-sm: 2px;
38
+ --radius-md: 4px;
39
+ --radius-lg: 4px;
40
+ --radius-full: 9999px;
41
+
42
+ --color-background: hsl(var(--background));
43
+ --color-foreground: hsl(var(--foreground));
44
+ --color-card: hsl(var(--card));
45
+ --color-card-foreground: hsl(var(--card-foreground));
46
+ --color-muted: hsl(var(--muted));
47
+ --color-muted-foreground: hsl(var(--muted-foreground));
48
+ --color-border: hsl(var(--border));
49
+ --color-input: hsl(var(--input));
50
+ --color-ring: hsl(var(--ring));
51
+ --color-accent: hsl(var(--accent));
52
+ --color-accent-foreground: hsl(var(--accent-foreground));
53
+ --color-destructive: hsl(var(--destructive));
54
+ --color-destructive-foreground: hsl(var(--destructive-foreground));
55
+ }
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "@etchkit/tailwind",
3
+ "version": "0.0.1",
4
+ "description": "Tailwind CSS v4 theme for etchkit",
5
+ "main": "./etchkit.css",
6
+ "exports": {
7
+ ".": "./etchkit.css"
8
+ },
9
+ "files": ["etchkit.css"],
10
+ "scripts": {
11
+ "build": "echo 'CSS package — no build needed'",
12
+ "dev": "echo 'CSS package — no build needed'"
13
+ },
14
+ "peerDependencies": {
15
+ "tailwindcss": "^4.0.0"
16
+ },
17
+ "publishConfig": {
18
+ "access": "public"
19
+ }
20
+ }