@almadar/ui 1.0.0

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.
@@ -0,0 +1,188 @@
1
+ /**
2
+ * Wireframe Theme
3
+ *
4
+ * Sharp corners, thick borders, offset shadows.
5
+ * Classic blueprint/wireframe aesthetic with bold, tactile interactions.
6
+ */
7
+
8
+ /* ==========================================================================
9
+ * LIGHT MODE
10
+ * ========================================================================== */
11
+ [data-theme="wireframe-light"] {
12
+ /* Shadows - Hard offset shadows (brutalist) */
13
+ --shadow-main: 4px 4px 0px 0px rgba(0, 0, 0, 1);
14
+ --shadow-sm: 2px 2px 0px 0px rgba(0, 0, 0, 1);
15
+ --shadow-lg: 6px 6px 0px 0px rgba(0, 0, 0, 1);
16
+ --shadow-inner: inset 2px 2px 0px 0px rgba(0, 0, 0, 0.1);
17
+ --shadow-none: none;
18
+ --shadow-hover: 6px 6px 0px 0px rgba(0, 0, 0, 1);
19
+ --shadow-active: 1px 1px 0px 0px rgba(0, 0, 0, 1);
20
+
21
+ /* Border radius - Sharp corners (brutalist) */
22
+ --radius-none: 0px;
23
+ --radius-sm: 0px;
24
+ --radius-md: 0px;
25
+ --radius-lg: 0px;
26
+ --radius-xl: 0px;
27
+ --radius-full: 9999px;
28
+
29
+ /* Border width - Thick, bold */
30
+ --border-width: 2px;
31
+ --border-width-thin: 1px;
32
+ --border-width-thick: 3px;
33
+
34
+ /* Colors - High contrast black/white */
35
+ --color-primary: #000000;
36
+ --color-primary-hover: #333333;
37
+ --color-primary-foreground: #ffffff;
38
+
39
+ --color-secondary: #ffffff;
40
+ --color-secondary-hover: #f0f0f0;
41
+ --color-secondary-foreground: #000000;
42
+
43
+ --color-accent: #000000;
44
+ --color-accent-foreground: #ffffff;
45
+
46
+ --color-muted: #f5f5f5;
47
+ --color-muted-foreground: #737373;
48
+
49
+ --color-background: #ffffff;
50
+ --color-foreground: #000000;
51
+ --color-card: #ffffff;
52
+ --color-card-foreground: #000000;
53
+ --color-surface: #f5f5f5;
54
+ --color-border: #000000;
55
+ --color-input: #000000;
56
+ --color-ring: #000000;
57
+
58
+ /* Semantic colors */
59
+ --color-error: #dc2626;
60
+ --color-error-foreground: #ffffff;
61
+ --color-success: #16a34a;
62
+ --color-success-foreground: #ffffff;
63
+ --color-warning: #ca8a04;
64
+ --color-warning-foreground: #000000;
65
+ --color-info: #2563eb;
66
+ --color-info-foreground: #ffffff;
67
+
68
+ /* Typography - Bold, monospace-inspired */
69
+ --font-family: "Inter", "SF Mono", "Monaco", system-ui, sans-serif;
70
+ --font-weight-normal: 500;
71
+ --font-weight-medium: 600;
72
+ --font-weight-bold: 800;
73
+ --letter-spacing: 0;
74
+ --line-height: 1.5;
75
+
76
+ /* Icon styling - Thick strokes */
77
+ --icon-stroke-width: 2.5;
78
+ --icon-color: currentColor;
79
+
80
+ /* Transitions - Snappy, mechanical */
81
+ --transition-fast: 50ms;
82
+ --transition-normal: 100ms;
83
+ --transition-slow: 200ms;
84
+ --transition-timing: linear;
85
+
86
+ /* Hover/Active transforms */
87
+ --hover-scale: 1;
88
+ --hover-translate-y: -2px;
89
+ --hover-translate-x: 2px;
90
+ --active-scale: 0.98;
91
+ --active-translate-y: 2px;
92
+
93
+ /* Focus ring */
94
+ --focus-ring-width: 2px;
95
+ --focus-ring-offset: 2px;
96
+ --focus-ring-color: #000000;
97
+ }
98
+
99
+ /* ==========================================================================
100
+ * DARK MODE
101
+ * ========================================================================== */
102
+ [data-theme="wireframe-dark"] {
103
+ /* Shadows - Inverted for dark */
104
+ --shadow-main: 4px 4px 0px 0px rgba(255, 255, 255, 0.8);
105
+ --shadow-sm: 2px 2px 0px 0px rgba(255, 255, 255, 0.8);
106
+ --shadow-lg: 6px 6px 0px 0px rgba(255, 255, 255, 0.8);
107
+ --shadow-inner: inset 2px 2px 0px 0px rgba(255, 255, 255, 0.1);
108
+ --shadow-none: none;
109
+ --shadow-hover: 6px 6px 0px 0px rgba(255, 255, 255, 0.8);
110
+ --shadow-active: 1px 1px 0px 0px rgba(255, 255, 255, 0.8);
111
+
112
+ /* Border radius - Sharp corners (brutalist) */
113
+ --radius-none: 0px;
114
+ --radius-sm: 0px;
115
+ --radius-md: 0px;
116
+ --radius-lg: 0px;
117
+ --radius-xl: 0px;
118
+ --radius-full: 9999px;
119
+
120
+ /* Border width - Thick, bold */
121
+ --border-width: 2px;
122
+ --border-width-thin: 1px;
123
+ --border-width-thick: 3px;
124
+
125
+ /* Colors - Inverted high contrast */
126
+ --color-primary: #ffffff;
127
+ --color-primary-hover: #e5e5e5;
128
+ --color-primary-foreground: #000000;
129
+
130
+ --color-secondary: #1a1a1a;
131
+ --color-secondary-hover: #262626;
132
+ --color-secondary-foreground: #ffffff;
133
+
134
+ --color-accent: #ffffff;
135
+ --color-accent-foreground: #000000;
136
+
137
+ --color-muted: #262626;
138
+ --color-muted-foreground: #a3a3a3;
139
+
140
+ --color-background: #0a0a0a;
141
+ --color-foreground: #ffffff;
142
+ --color-card: #1a1a1a;
143
+ --color-card-foreground: #ffffff;
144
+ --color-surface: #262626;
145
+ --color-border: #ffffff;
146
+ --color-input: #ffffff;
147
+ --color-ring: #ffffff;
148
+
149
+ /* Semantic colors - Brighter for dark mode */
150
+ --color-error: #f87171;
151
+ --color-error-foreground: #000000;
152
+ --color-success: #4ade80;
153
+ --color-success-foreground: #000000;
154
+ --color-warning: #fbbf24;
155
+ --color-warning-foreground: #000000;
156
+ --color-info: #60a5fa;
157
+ --color-info-foreground: #000000;
158
+
159
+ /* Typography */
160
+ --font-family: "Inter", "SF Mono", "Monaco", system-ui, sans-serif;
161
+ --font-weight-normal: 500;
162
+ --font-weight-medium: 600;
163
+ --font-weight-bold: 800;
164
+ --letter-spacing: 0;
165
+ --line-height: 1.5;
166
+
167
+ /* Icon styling */
168
+ --icon-stroke-width: 2.5;
169
+ --icon-color: currentColor;
170
+
171
+ /* Transitions */
172
+ --transition-fast: 50ms;
173
+ --transition-normal: 100ms;
174
+ --transition-slow: 200ms;
175
+ --transition-timing: linear;
176
+
177
+ /* Hover/Active transforms */
178
+ --hover-scale: 1;
179
+ --hover-translate-y: -2px;
180
+ --hover-translate-x: 2px;
181
+ --active-scale: 0.98;
182
+ --active-translate-y: 2px;
183
+
184
+ /* Focus ring */
185
+ --focus-ring-width: 2px;
186
+ --focus-ring-offset: 2px;
187
+ --focus-ring-color: #ffffff;
188
+ }