braid-ui 1.0.16 → 1.0.18
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/braid-ui-variables.css +88 -0
- package/dist/css/braid-ui.css +3969 -0
- package/dist/css/braid-ui.min.css +1 -0
- package/package.json +23 -4
- package/src/styles-only.css +121 -0
- package/tailwind.config.standalone.cjs +137 -0
- package/tailwind.config.standalone.js +138 -0
- package/tailwind.preset.cjs +97 -0
- package/tailwind.preset.js +98 -0
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
|
|
2
|
+
/* Braid UI CSS Variables */
|
|
3
|
+
:root {
|
|
4
|
+
--background: 240 10% 98%;
|
|
5
|
+
--foreground: 240 10% 8%;
|
|
6
|
+
--card: 0 0% 100%;
|
|
7
|
+
--card-foreground: 240 10% 8%;
|
|
8
|
+
--popover: 0 0% 100%;
|
|
9
|
+
--popover-foreground: 240 10% 8%;
|
|
10
|
+
--primary: 204 100% 54%;
|
|
11
|
+
--primary-foreground: 0 0% 100%;
|
|
12
|
+
--primary-glow: 204 100% 64%;
|
|
13
|
+
--secondary: 240 5% 96%;
|
|
14
|
+
--secondary-foreground: 240 6% 10%;
|
|
15
|
+
--muted: 240 5% 96%;
|
|
16
|
+
--muted-foreground: 240 4% 60%;
|
|
17
|
+
--accent: 240 5% 96%;
|
|
18
|
+
--accent-foreground: 240 6% 10%;
|
|
19
|
+
--destructive: 0 84% 60%;
|
|
20
|
+
--destructive-foreground: 0 0% 98%;
|
|
21
|
+
--border: 240 6% 90%;
|
|
22
|
+
--input: 240 6% 90%;
|
|
23
|
+
--ring: 204 100% 54%;
|
|
24
|
+
--success: 142 76% 36%;
|
|
25
|
+
--success-foreground: 0 0% 98%;
|
|
26
|
+
--warning: 38 92% 50%;
|
|
27
|
+
--warning-foreground: 0 0% 98%;
|
|
28
|
+
--form-background: 0 0% 100%;
|
|
29
|
+
--form-border: 240 6% 88%;
|
|
30
|
+
--form-border-focus: 204 100% 54%;
|
|
31
|
+
--form-border-error: 0 84% 60%;
|
|
32
|
+
--form-border-success: 142 76% 36%;
|
|
33
|
+
--gradient-primary: linear-gradient(135deg, hsl(204 100% 54%), hsl(204 100% 64%));
|
|
34
|
+
--gradient-subtle: linear-gradient(180deg, hsl(240 10% 98%), hsl(240 5% 96%));
|
|
35
|
+
--shadow-form: 0 1px 3px 0 hsl(240 5% 84% / 0.12), 0 1px 2px 0 hsl(240 5% 84% / 0.24);
|
|
36
|
+
--shadow-form-focus: 0 0 0 3px hsl(204 100% 54% / 0.12);
|
|
37
|
+
--shadow-form-error: 0 0 0 3px hsl(0 84% 60% / 0.12);
|
|
38
|
+
--transition-form: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
39
|
+
--radius: 0.5rem;
|
|
40
|
+
--sidebar-background: 0 0% 98%;
|
|
41
|
+
--sidebar-foreground: 240 5.3% 26.1%;
|
|
42
|
+
--sidebar-primary: 240 5.9% 10%;
|
|
43
|
+
--sidebar-primary-foreground: 0 0% 98%;
|
|
44
|
+
--sidebar-accent: 240 4.8% 95.9%;
|
|
45
|
+
--sidebar-accent-foreground: 240 5.9% 10%;
|
|
46
|
+
--sidebar-border: 220 13% 91%;
|
|
47
|
+
--sidebar-ring: 217.2 91.2% 59.8%;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.dark {
|
|
51
|
+
--background: 222.2 84% 4.9%;
|
|
52
|
+
--foreground: 210 40% 98%;
|
|
53
|
+
--card: 222.2 84% 4.9%;
|
|
54
|
+
--card-foreground: 210 40% 98%;
|
|
55
|
+
--popover: 222.2 84% 4.9%;
|
|
56
|
+
--popover-foreground: 210 40% 98%;
|
|
57
|
+
--primary: 210 40% 98%;
|
|
58
|
+
--primary-foreground: 222.2 47.4% 11.2%;
|
|
59
|
+
--secondary: 217.2 32.6% 17.5%;
|
|
60
|
+
--secondary-foreground: 210 40% 98%;
|
|
61
|
+
--muted: 217.2 32.6% 17.5%;
|
|
62
|
+
--muted-foreground: 215 20.2% 65.1%;
|
|
63
|
+
--accent: 217.2 32.6% 17.5%;
|
|
64
|
+
--accent-foreground: 210 40% 98%;
|
|
65
|
+
--destructive: 0 62.8% 30.6%;
|
|
66
|
+
--destructive-foreground: 210 40% 98%;
|
|
67
|
+
--border: 217.2 32.6% 17.5%;
|
|
68
|
+
--input: 217.2 32.6% 17.5%;
|
|
69
|
+
--ring: 212.7 26.8% 83.9%;
|
|
70
|
+
--sidebar-background: 240 5.9% 10%;
|
|
71
|
+
--sidebar-foreground: 240 4.8% 95.9%;
|
|
72
|
+
--sidebar-primary: 224.3 76.3% 48%;
|
|
73
|
+
--sidebar-primary-foreground: 0 0% 100%;
|
|
74
|
+
--sidebar-accent: 240 3.7% 15.9%;
|
|
75
|
+
--sidebar-accent-foreground: 240 4.8% 95.9%;
|
|
76
|
+
--sidebar-border: 240 3.7% 15.9%;
|
|
77
|
+
--sidebar-ring: 217.2 91.2% 59.8%;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
@layer base {
|
|
81
|
+
* {
|
|
82
|
+
border-color: hsl(var(--border));
|
|
83
|
+
}
|
|
84
|
+
body {
|
|
85
|
+
background-color: hsl(var(--background));
|
|
86
|
+
color: hsl(var(--foreground));
|
|
87
|
+
}
|
|
88
|
+
}
|