mljr-css 0.1.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.
Files changed (53) hide show
  1. package/README.md +299 -0
  2. package/dist/mljr.css +12214 -0
  3. package/dist/mljr.min.css +3 -0
  4. package/dist/plugin.cjs +139 -0
  5. package/dist/plugin.d.cts +73 -0
  6. package/dist/plugin.d.ts +73 -0
  7. package/dist/plugin.js +102 -0
  8. package/package.json +60 -0
  9. package/src/base/reset.css +210 -0
  10. package/src/base/typography.css +286 -0
  11. package/src/components/accordion.css +210 -0
  12. package/src/components/alert.css +231 -0
  13. package/src/components/avatar.css +222 -0
  14. package/src/components/badge.css +315 -0
  15. package/src/components/breadcrumb.css +100 -0
  16. package/src/components/button.css +383 -0
  17. package/src/components/card.css +319 -0
  18. package/src/components/carousel.css +179 -0
  19. package/src/components/checkbox.css +303 -0
  20. package/src/components/chip.css +207 -0
  21. package/src/components/divider.css +248 -0
  22. package/src/components/drawer.css +242 -0
  23. package/src/components/dropdown.css +246 -0
  24. package/src/components/empty-state.css +216 -0
  25. package/src/components/file-upload.css +262 -0
  26. package/src/components/footer.css +231 -0
  27. package/src/components/input.css +504 -0
  28. package/src/components/modal.css +179 -0
  29. package/src/components/pagination.css +143 -0
  30. package/src/components/password.css +449 -0
  31. package/src/components/popover.css +175 -0
  32. package/src/components/progress.css +165 -0
  33. package/src/components/radio.css +200 -0
  34. package/src/components/select.css +165 -0
  35. package/src/components/sidebar.css +236 -0
  36. package/src/components/skeleton.css +161 -0
  37. package/src/components/spinner.css +259 -0
  38. package/src/components/stepper.css +257 -0
  39. package/src/components/table.css +184 -0
  40. package/src/components/tabs.css +219 -0
  41. package/src/components/textarea.css +164 -0
  42. package/src/components/toast.css +294 -0
  43. package/src/components/tooltip.css +99 -0
  44. package/src/index.css +54 -0
  45. package/src/layout/container.css +181 -0
  46. package/src/layout/footer.css +319 -0
  47. package/src/layout/header.css +223 -0
  48. package/src/layout/navbar.css +461 -0
  49. package/src/layout/navigation.css +328 -0
  50. package/src/layout/sidebar.css +334 -0
  51. package/src/plugin.ts +130 -0
  52. package/src/themes/variables.css +345 -0
  53. package/src/utilities/utilities.css +598 -0
package/src/plugin.ts ADDED
@@ -0,0 +1,130 @@
1
+ import plugin from 'tailwindcss/plugin';
2
+ import type { Config } from 'tailwindcss';
3
+
4
+ export interface MljrPluginOptions {
5
+ /** Prefix for custom CSS classes (default: 'mljr') */
6
+ prefix?: string;
7
+ /** Enable dark mode support (default: true) */
8
+ darkMode?: boolean;
9
+ }
10
+
11
+ const defaultColors = {
12
+ primary: {
13
+ 50: '#e6f3ff',
14
+ 100: '#cce7ff',
15
+ 200: '#99cfff',
16
+ 300: '#66b7ff',
17
+ 400: '#339eff',
18
+ 500: '#0080ff',
19
+ 600: '#0066cc',
20
+ 700: '#004d99',
21
+ 800: '#003366',
22
+ 900: '#001a33',
23
+ 950: '#000d1a',
24
+ },
25
+ secondary: {
26
+ 50: '#fff4e6',
27
+ 100: '#ffe8cc',
28
+ 200: '#ffd199',
29
+ 300: '#ffba66',
30
+ 400: '#ffa333',
31
+ 500: '#ff8c00',
32
+ 600: '#cc7000',
33
+ 700: '#995400',
34
+ 800: '#663800',
35
+ 900: '#331c00',
36
+ 950: '#1a0e00',
37
+ },
38
+ accent: {
39
+ 50: '#f5e6ff',
40
+ 100: '#ebccff',
41
+ 200: '#d699ff',
42
+ 300: '#c266ff',
43
+ 400: '#ad33ff',
44
+ 500: '#9900ff',
45
+ 600: '#7a00cc',
46
+ 700: '#5c0099',
47
+ 800: '#3d0066',
48
+ 900: '#1f0033',
49
+ 950: '#0f001a',
50
+ },
51
+ };
52
+
53
+ /**
54
+ * MLJR CSS Tailwind Plugin
55
+ *
56
+ * A TailwindCSS plugin that provides the MLJR color scheme
57
+ * and design system utilities.
58
+ *
59
+ * @example
60
+ * ```js
61
+ * // tailwind.config.js
62
+ * import mljrPlugin from 'mljr-css';
63
+ *
64
+ * export default {
65
+ * plugins: [mljrPlugin()],
66
+ * }
67
+ * ```
68
+ */
69
+ export const mljrPlugin = (options: MljrPluginOptions = {}) => {
70
+ const { darkMode = true } = options;
71
+
72
+ return plugin(
73
+ function ({ addUtilities }) {
74
+ // Add focus ring utility
75
+ addUtilities({
76
+ '.mljr-focus-ring': {
77
+ '&:focus-visible': {
78
+ outline: '2px solid var(--mljr-ring)',
79
+ 'outline-offset': '2px',
80
+ },
81
+ },
82
+ });
83
+ },
84
+ {
85
+ // Extend Tailwind theme
86
+ theme: {
87
+ extend: {
88
+ colors: {
89
+ primary: defaultColors.primary,
90
+ secondary: defaultColors.secondary,
91
+ accent: defaultColors.accent,
92
+ },
93
+ fontFamily: {
94
+ sans: ['Inter', 'system-ui', '-apple-system', 'sans-serif'],
95
+ display: ['Inter', 'system-ui', 'sans-serif'],
96
+ mono: ['JetBrains Mono', 'Fira Code', 'monospace'],
97
+ },
98
+ borderRadius: {
99
+ DEFAULT: '0.375rem',
100
+ },
101
+ },
102
+ },
103
+ }
104
+ );
105
+ };
106
+
107
+ // Export preset configuration for use with Tailwind
108
+ export const mljrPreset: Partial<Config> = {
109
+ darkMode: ['class', '[data-theme="dark"]'],
110
+ theme: {
111
+ extend: {
112
+ colors: {
113
+ primary: defaultColors.primary,
114
+ secondary: defaultColors.secondary,
115
+ accent: defaultColors.accent,
116
+ },
117
+ fontFamily: {
118
+ display: ['Inter', 'system-ui', 'sans-serif'],
119
+ sans: ['Inter', 'system-ui', '-apple-system', 'sans-serif'],
120
+ mono: ['JetBrains Mono', 'Fira Code', 'monospace'],
121
+ },
122
+ },
123
+ },
124
+ };
125
+
126
+ // Default export
127
+ export default mljrPlugin;
128
+
129
+ // Named exports
130
+ export { defaultColors };
@@ -0,0 +1,345 @@
1
+ /* ============================================
2
+ MLJR CSS Framework - Design Tokens
3
+ Claymorphism: Soft, playful 3D aesthetic
4
+ Warm pastels complementing the orange/coral logo
5
+ ============================================ */
6
+
7
+ :root {
8
+ /* Primary Colors (Warm Orange/Coral - matches logo gradient) */
9
+ --mljr-primary-50: #fff7ed;
10
+ --mljr-primary-100: #ffedd5;
11
+ --mljr-primary-200: #fed7aa;
12
+ --mljr-primary-300: #fdba74;
13
+ --mljr-primary-400: #fb923c;
14
+ --mljr-primary-500: #f97316;
15
+ --mljr-primary-600: #ea580c;
16
+ --mljr-primary-700: #c2410c;
17
+ --mljr-primary-800: #9a3412;
18
+ --mljr-primary-900: #7c2d12;
19
+ --mljr-primary-950: #431407;
20
+
21
+ /* Secondary Colors (Soft Purple - complementary to orange) */
22
+ --mljr-secondary-50: #faf5ff;
23
+ --mljr-secondary-100: #f3e8ff;
24
+ --mljr-secondary-200: #e9d5ff;
25
+ --mljr-secondary-300: #d8b4fe;
26
+ --mljr-secondary-400: #c084fc;
27
+ --mljr-secondary-500: #a855f7;
28
+ --mljr-secondary-600: #9333ea;
29
+ --mljr-secondary-700: #7c3aed;
30
+ --mljr-secondary-800: #6b21a8;
31
+ --mljr-secondary-900: #581c87;
32
+ --mljr-secondary-950: #3b0764;
33
+
34
+ /* Accent Colors (Soft Teal - for variety) */
35
+ --mljr-accent-50: #f0fdfa;
36
+ --mljr-accent-100: #ccfbf1;
37
+ --mljr-accent-200: #99f6e4;
38
+ --mljr-accent-300: #5eead4;
39
+ --mljr-accent-400: #2dd4bf;
40
+ --mljr-accent-500: #14b8a6;
41
+ --mljr-accent-600: #0d9488;
42
+ --mljr-accent-700: #0f766e;
43
+ --mljr-accent-800: #115e59;
44
+ --mljr-accent-900: #134e4a;
45
+ --mljr-accent-950: #042f2e;
46
+
47
+ /* Neutral Colors (Warm stone tones) */
48
+ --mljr-gray-50: #fafaf9;
49
+ --mljr-gray-100: #f5f5f4;
50
+ --mljr-gray-200: #e7e5e4;
51
+ --mljr-gray-300: #d6d3d1;
52
+ --mljr-gray-400: #a8a29e;
53
+ --mljr-gray-500: #78716c;
54
+ --mljr-gray-600: #57534e;
55
+ --mljr-gray-700: #44403c;
56
+ --mljr-gray-800: #292524;
57
+ --mljr-gray-900: #1c1917;
58
+ --mljr-gray-950: #0c0a09;
59
+
60
+ /* Semantic Colors - High contrast, colorblind-friendly */
61
+ /* Success: Teal-leaning green (distinct from red for colorblind) */
62
+ --mljr-success: #10b981;
63
+ --mljr-success-light: #34d399;
64
+ --mljr-success-dark: #059669;
65
+ /* Warning: Rich amber/gold */
66
+ --mljr-warning: #f59e0b;
67
+ --mljr-warning-light: #fbbf24;
68
+ --mljr-warning-dark: #d97706;
69
+ /* Error: Deep crimson (very distinct from orange) */
70
+ --mljr-error: #ef4444;
71
+ --mljr-error-light: #f87171;
72
+ --mljr-error-dark: #dc2626;
73
+ /* Info: Soft blue */
74
+ --mljr-info: #3b82f6;
75
+ --mljr-info-light: #60a5fa;
76
+ --mljr-info-dark: #2563eb;
77
+
78
+ /* Light Mode Theme Colors - Slightly darker for better contrast */
79
+ --mljr-bg: #f5f0eb;
80
+ --mljr-bg-secondary: #efe8e1;
81
+ --mljr-bg-tertiary: #e8dfd6;
82
+ --mljr-bg-gradient: linear-gradient(135deg, #f5f0eb 0%, #efe8e1 50%, #f0ebe5 100%);
83
+ --mljr-text: #44403c;
84
+ --mljr-text-secondary: #78716c;
85
+ --mljr-text-muted: #a8a29e;
86
+ --mljr-border: #e7e5e4;
87
+ --mljr-border-strong: #d6d3d1;
88
+ --mljr-ring: var(--mljr-primary-500);
89
+
90
+ /* ============================================
91
+ Claymorphism Shadow System
92
+ Smooth gradual shadows with subtle warm tint
93
+ Size-aware: xs for tiny, sm for small, default for medium, lg/xl for large
94
+ ============================================ */
95
+
96
+ /* Extra small - for badges, status dots, tiny elements */
97
+ --mljr-clay-shadow-xs:
98
+ 3px 3px 6px rgba(100, 60, 30, 0.12),
99
+ -2px -2px 4px rgba(255, 255, 255, 0.8);
100
+
101
+ /* Small - for buttons, inputs, small cards */
102
+ --mljr-clay-shadow-sm:
103
+ 5px 5px 12px rgba(100, 60, 30, 0.15),
104
+ -3px -3px 8px rgba(255, 255, 255, 0.9),
105
+ inset 0px 1px 2px rgba(255, 255, 255, 0.5);
106
+
107
+ /* Default - for cards, panels */
108
+ --mljr-clay-shadow:
109
+ 8px 8px 20px rgba(100, 60, 30, 0.18),
110
+ -6px -6px 16px rgba(255, 255, 255, 0.95),
111
+ inset 0px 2px 4px rgba(255, 255, 255, 0.6);
112
+
113
+ /* Large - for modals, elevated cards */
114
+ --mljr-clay-shadow-lg:
115
+ 14px 14px 35px rgba(100, 60, 30, 0.2),
116
+ -10px -10px 25px rgba(255, 255, 255, 0.95),
117
+ inset 0px 3px 6px rgba(255, 255, 255, 0.6);
118
+
119
+ /* Extra large - for hero sections, major overlays */
120
+ --mljr-clay-shadow-xl:
121
+ 20px 20px 50px rgba(100, 60, 30, 0.22),
122
+ -14px -14px 35px rgba(255, 255, 255, 0.98),
123
+ inset 0px 4px 10px rgba(255, 255, 255, 0.7);
124
+
125
+ /* Inset shadows (concave/pressed effect) */
126
+ --mljr-clay-inset-xs:
127
+ inset 2px 2px 4px rgba(100, 60, 30, 0.12),
128
+ inset -1px -1px 3px rgba(255, 255, 255, 0.7);
129
+
130
+ --mljr-clay-inset-sm:
131
+ inset 3px 3px 7px rgba(100, 60, 30, 0.14),
132
+ inset -2px -2px 5px rgba(255, 255, 255, 0.8);
133
+
134
+ --mljr-clay-inset:
135
+ inset 5px 5px 12px rgba(100, 60, 30, 0.16),
136
+ inset -4px -4px 10px rgba(255, 255, 255, 0.85);
137
+
138
+ --mljr-clay-inset-lg:
139
+ inset 8px 8px 18px rgba(100, 60, 30, 0.18),
140
+ inset -6px -6px 14px rgba(255, 255, 255, 0.9);
141
+
142
+ /* Button shadow (convex with subtle inner highlight) */
143
+ --mljr-clay-btn:
144
+ 6px 6px 14px rgba(100, 60, 30, 0.16),
145
+ -4px -4px 10px rgba(255, 255, 255, 0.9),
146
+ inset 0px 2px 4px rgba(255, 255, 255, 0.6);
147
+
148
+ /* Button pressed state */
149
+ --mljr-clay-btn-pressed:
150
+ inset 3px 3px 8px rgba(120, 80, 50, 0.15),
151
+ inset -2px -2px 6px rgba(255, 255, 255, 0.5);
152
+
153
+ /* Primary colored clay shadow (for primary buttons/elements) - smooth gradient */
154
+ --mljr-clay-primary:
155
+ 5px 5px 14px rgba(234, 88, 12, 0.2),
156
+ -3px -3px 10px rgba(255, 255, 255, 0.85),
157
+ inset 0px 2px 5px rgba(255, 255, 255, 0.4);
158
+
159
+ /* Secondary colored clay shadow (purple) */
160
+ --mljr-clay-secondary:
161
+ 5px 5px 14px rgba(147, 51, 234, 0.18),
162
+ -3px -3px 10px rgba(255, 255, 255, 0.85),
163
+ inset 0px 2px 5px rgba(255, 255, 255, 0.4);
164
+
165
+ /* Accent colored clay shadow (teal) */
166
+ --mljr-clay-accent:
167
+ 5px 5px 14px rgba(13, 148, 136, 0.18),
168
+ -3px -3px 10px rgba(255, 255, 255, 0.85),
169
+ inset 0px 2px 5px rgba(255, 255, 255, 0.4);
170
+
171
+ /* Traditional shadows (kept for compatibility) */
172
+ --mljr-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
173
+ --mljr-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
174
+ --mljr-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
175
+ --mljr-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
176
+ --mljr-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
177
+
178
+ /* ============================================
179
+ Border Radius System (Soft, rounded)
180
+ ============================================ */
181
+ --mljr-radius-sm: 12px;
182
+ --mljr-radius: 16px;
183
+ --mljr-radius-md: 20px;
184
+ --mljr-radius-lg: 28px;
185
+ --mljr-radius-xl: 36px;
186
+ --mljr-radius-2xl: 48px;
187
+ --mljr-radius-full: 9999px;
188
+
189
+ /* Gradient definitions - more visible color transitions */
190
+ --mljr-gradient-primary: linear-gradient(135deg, #fdba74 0%, #f97316 50%, #c2410c 100%);
191
+ --mljr-gradient-secondary: linear-gradient(135deg, #d8b4fe 0%, #a855f7 50%, #7c3aed 100%);
192
+ --mljr-gradient-accent: linear-gradient(135deg, #5eead4 0%, #14b8a6 50%, #0f766e 100%);
193
+ --mljr-gradient-brand: linear-gradient(135deg, #fdba74 0%, #f97316 35%, #ea580c 65%, #9a3412 100%);
194
+ --mljr-gradient-warm: linear-gradient(135deg, #fef3c7 0%, #fcd34d 30%, #f59e0b 70%, #d97706 100%);
195
+
196
+ /* Spacing Scale */
197
+ --mljr-space-1: 0.25rem;
198
+ --mljr-space-2: 0.5rem;
199
+ --mljr-space-3: 0.75rem;
200
+ --mljr-space-4: 1rem;
201
+ --mljr-space-5: 1.25rem;
202
+ --mljr-space-6: 1.5rem;
203
+ --mljr-space-8: 2rem;
204
+ --mljr-space-10: 2.5rem;
205
+ --mljr-space-12: 3rem;
206
+ --mljr-space-16: 4rem;
207
+
208
+ /* Typography - Friendly, rounded fonts */
209
+ --mljr-font-display: 'Inter', system-ui, sans-serif;
210
+ --mljr-font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
211
+ --mljr-font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
212
+
213
+ --mljr-text-xs: 0.75rem;
214
+ --mljr-text-sm: 0.875rem;
215
+ --mljr-text-base: 1rem;
216
+ --mljr-text-lg: 1.125rem;
217
+ --mljr-text-xl: 1.25rem;
218
+ --mljr-text-2xl: 1.5rem;
219
+ --mljr-text-3xl: 1.875rem;
220
+ --mljr-text-4xl: 2.25rem;
221
+
222
+ /* Line Heights */
223
+ --mljr-leading-tight: 1.25;
224
+ --mljr-leading-normal: 1.5;
225
+ --mljr-leading-relaxed: 1.625;
226
+
227
+ /* Transitions */
228
+ --mljr-transition-fast: 150ms ease;
229
+ --mljr-transition: 200ms ease;
230
+ --mljr-transition-slow: 300ms ease;
231
+ --mljr-transition-bounce: 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
232
+
233
+ /* Frosted Glass Effect Variables */
234
+ --mljr-frosted-bg: rgba(255, 255, 255, 0.7);
235
+ --mljr-frosted-bg-strong: rgba(255, 255, 255, 0.85);
236
+ --mljr-frosted-bg-subtle: rgba(255, 255, 255, 0.5);
237
+ --mljr-frosted-border: rgba(255, 255, 255, 0.5);
238
+ --mljr-frosted-border-strong: rgba(255, 255, 255, 0.6);
239
+
240
+ /* Z-index Scale */
241
+ --mljr-z-dropdown: 1000;
242
+ --mljr-z-toast: 1080;
243
+ --mljr-z-sticky: 1020;
244
+ --mljr-z-fixed: 1030;
245
+ --mljr-z-modal-backdrop: 1040;
246
+ --mljr-z-modal: 1050;
247
+ --mljr-z-popover: 1060;
248
+ --mljr-z-tooltip: 1070;
249
+ }
250
+
251
+ /* Dark Mode (Warm dark tones - slightly lighter for better contrast) */
252
+ .dark,
253
+ [data-theme="dark"] {
254
+ --mljr-bg: #2a2522;
255
+ --mljr-bg-secondary: #332e2b;
256
+ --mljr-bg-tertiary: #4a4542;
257
+ --mljr-bg-gradient: linear-gradient(135deg, #2a2522 0%, #332e2b 100%);
258
+ --mljr-text: #fafaf9;
259
+ --mljr-text-secondary: #d6d3d1;
260
+ --mljr-text-muted: #a8a29e;
261
+ --mljr-border: #4a4542;
262
+ --mljr-border-strong: #5c5652;
263
+
264
+ /* Clay shadows adapted for dark mode - more visible floating effect */
265
+ --mljr-clay-shadow-xs:
266
+ 3px 3px 6px rgba(0, 0, 0, 0.5),
267
+ -2px -2px 4px rgba(80, 75, 70, 0.2);
268
+
269
+ --mljr-clay-shadow-sm:
270
+ 5px 5px 12px rgba(0, 0, 0, 0.55),
271
+ -3px -3px 8px rgba(80, 75, 70, 0.18),
272
+ inset 0px 1px 2px rgba(255, 200, 150, 0.08);
273
+
274
+ --mljr-clay-shadow:
275
+ 8px 8px 22px rgba(0, 0, 0, 0.6),
276
+ -6px -6px 16px rgba(80, 75, 70, 0.2),
277
+ inset 0px 2px 4px rgba(255, 200, 150, 0.1);
278
+
279
+ --mljr-clay-shadow-lg:
280
+ 14px 14px 38px rgba(0, 0, 0, 0.65),
281
+ -10px -10px 26px rgba(80, 75, 70, 0.22),
282
+ inset 0px 3px 6px rgba(255, 200, 150, 0.12);
283
+
284
+ --mljr-clay-shadow-xl:
285
+ 20px 20px 55px rgba(0, 0, 0, 0.7),
286
+ -14px -14px 40px rgba(80, 75, 70, 0.25),
287
+ inset 0px 4px 10px rgba(255, 200, 150, 0.15);
288
+
289
+ --mljr-clay-inset-xs:
290
+ inset 2px 2px 4px rgba(0, 0, 0, 0.5),
291
+ inset -1px -1px 3px rgba(80, 75, 70, 0.15);
292
+
293
+ --mljr-clay-inset-sm:
294
+ inset 3px 3px 7px rgba(0, 0, 0, 0.55),
295
+ inset -2px -2px 5px rgba(80, 75, 70, 0.18);
296
+
297
+ --mljr-clay-inset:
298
+ inset 5px 5px 14px rgba(0, 0, 0, 0.6),
299
+ inset -4px -4px 10px rgba(80, 75, 70, 0.2);
300
+
301
+ --mljr-clay-inset-lg:
302
+ inset 6px 6px 14px rgba(0, 0, 0, 0.55),
303
+ inset -6px -6px 12px rgba(70, 65, 60, 0.18);
304
+
305
+ --mljr-clay-btn:
306
+ 4px 4px 10px rgba(0, 0, 0, 0.45),
307
+ -3px -3px 8px rgba(70, 65, 60, 0.15),
308
+ inset 0px 2px 4px rgba(255, 200, 150, 0.06);
309
+
310
+ --mljr-clay-btn-pressed:
311
+ inset 3px 3px 8px rgba(0, 0, 0, 0.5),
312
+ inset -2px -2px 6px rgba(70, 65, 60, 0.1);
313
+
314
+ /* Primary colored clay shadow for dark mode - warm glow */
315
+ --mljr-clay-primary:
316
+ 5px 5px 14px rgba(234, 88, 12, 0.25),
317
+ -3px -3px 10px rgba(70, 65, 60, 0.15),
318
+ inset 0px 2px 5px rgba(255, 200, 150, 0.08);
319
+
320
+ /* Secondary colored clay shadow for dark mode (purple) */
321
+ --mljr-clay-secondary:
322
+ 5px 5px 14px rgba(147, 51, 234, 0.22),
323
+ -3px -3px 10px rgba(70, 65, 60, 0.15),
324
+ inset 0px 2px 5px rgba(255, 200, 150, 0.06);
325
+
326
+ /* Accent colored clay shadow for dark mode (teal) */
327
+ --mljr-clay-accent:
328
+ 5px 5px 14px rgba(13, 148, 136, 0.22),
329
+ -3px -3px 10px rgba(70, 65, 60, 0.15),
330
+ inset 0px 2px 5px rgba(255, 200, 150, 0.06);
331
+
332
+ /* Frosted Glass for dark mode */
333
+ --mljr-frosted-bg: rgba(51, 46, 43, 0.75);
334
+ --mljr-frosted-bg-strong: rgba(51, 46, 43, 0.9);
335
+ --mljr-frosted-bg-subtle: rgba(51, 46, 43, 0.55);
336
+ --mljr-frosted-border: rgba(74, 69, 66, 0.5);
337
+ --mljr-frosted-border-strong: rgba(74, 69, 66, 0.65);
338
+
339
+ /* Traditional shadows for dark mode */
340
+ --mljr-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
341
+ --mljr-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.4), 0 1px 2px -1px rgb(0 0 0 / 0.4);
342
+ --mljr-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.4);
343
+ --mljr-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5), 0 4px 6px -4px rgb(0 0 0 / 0.5);
344
+ --mljr-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.5), 0 8px 10px -6px rgb(0 0 0 / 0.5);
345
+ }