cronixui 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.
- package/dist/cronixui.css +2048 -0
- package/dist/cronixui.js +809 -0
- package/dist/cronixui.min.css +1 -0
- package/dist/cronixui.min.js +629 -0
- package/package.json +25 -0
- package/src/cronixui.css +1959 -0
- package/src/cronixui.js +809 -0
- package/src/variables.css +93 -0
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
/* Colors */
|
|
3
|
+
--fl-bg: #0a0a0a;
|
|
4
|
+
--fl-surface: #111111;
|
|
5
|
+
--fl-surface-2: #1a1a1a;
|
|
6
|
+
--fl-surface-3: #222222;
|
|
7
|
+
--fl-surface-4: #2a2a2a;
|
|
8
|
+
--fl-border: rgba(255, 255, 255, 0.08);
|
|
9
|
+
--fl-border-hover: rgba(255, 255, 255, 0.15);
|
|
10
|
+
--fl-border-focus: rgba(255, 255, 255, 0.25);
|
|
11
|
+
--fl-text: #f0ede8;
|
|
12
|
+
--fl-text-muted: rgba(240, 237, 232, 0.5);
|
|
13
|
+
--fl-text-dim: rgba(240, 237, 232, 0.25);
|
|
14
|
+
|
|
15
|
+
/* Accent (Crimson) */
|
|
16
|
+
--fl-accent: #6b2323;
|
|
17
|
+
--fl-accent-hover: #7d2a2a;
|
|
18
|
+
--fl-accent-light: #8a3535;
|
|
19
|
+
--fl-accent-glow: rgba(107, 35, 35, 0.3);
|
|
20
|
+
--fl-accent-text: #c97a7a;
|
|
21
|
+
|
|
22
|
+
/* Status Colors */
|
|
23
|
+
--fl-success: #1e5028;
|
|
24
|
+
--fl-success-border: rgba(60, 140, 70, 0.4);
|
|
25
|
+
--fl-success-text: #6bc47a;
|
|
26
|
+
--fl-warning: #503c14;
|
|
27
|
+
--fl-warning-border: rgba(150, 110, 30, 0.4);
|
|
28
|
+
--fl-warning-text: #c4a43a;
|
|
29
|
+
--fl-error: #501414;
|
|
30
|
+
--fl-error-border: rgba(180, 60, 60, 0.4);
|
|
31
|
+
--fl-error-text: #c46b6b;
|
|
32
|
+
--fl-info: #143550;
|
|
33
|
+
--fl-info-border: rgba(60, 140, 200, 0.4);
|
|
34
|
+
--fl-info-text: #6ba8c4;
|
|
35
|
+
|
|
36
|
+
/* Typography */
|
|
37
|
+
--fl-font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
38
|
+
--fl-font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
|
|
39
|
+
|
|
40
|
+
/* Font Sizes */
|
|
41
|
+
--fl-text-xs: 11px;
|
|
42
|
+
--fl-text-sm: 12px;
|
|
43
|
+
--fl-text-base: 13px;
|
|
44
|
+
--fl-text-md: 14px;
|
|
45
|
+
--fl-text-lg: 16px;
|
|
46
|
+
--fl-text-xl: 20px;
|
|
47
|
+
--fl-text-2xl: 28px;
|
|
48
|
+
--fl-text-3xl: 36px;
|
|
49
|
+
|
|
50
|
+
/* Spacing */
|
|
51
|
+
--fl-space-1: 4px;
|
|
52
|
+
--fl-space-2: 8px;
|
|
53
|
+
--fl-space-3: 12px;
|
|
54
|
+
--fl-space-4: 16px;
|
|
55
|
+
--fl-space-5: 20px;
|
|
56
|
+
--fl-space-6: 24px;
|
|
57
|
+
--fl-space-8: 32px;
|
|
58
|
+
--fl-space-10: 40px;
|
|
59
|
+
--fl-space-12: 48px;
|
|
60
|
+
|
|
61
|
+
/* Border Radius */
|
|
62
|
+
--fl-radius-sm: 6px;
|
|
63
|
+
--fl-radius: 10px;
|
|
64
|
+
--fl-radius-lg: 14px;
|
|
65
|
+
--fl-radius-xl: 20px;
|
|
66
|
+
--fl-radius-full: 9999px;
|
|
67
|
+
|
|
68
|
+
/* Shadows */
|
|
69
|
+
--fl-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
|
|
70
|
+
--fl-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
|
|
71
|
+
--fl-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
|
|
72
|
+
--fl-shadow-glow: 0 0 20px var(--fl-accent-glow);
|
|
73
|
+
|
|
74
|
+
/* Transitions */
|
|
75
|
+
--fl-transition-fast: 0.1s ease;
|
|
76
|
+
--fl-transition: 0.15s ease;
|
|
77
|
+
--fl-transition-slow: 0.25s ease;
|
|
78
|
+
|
|
79
|
+
/* Z-Index */
|
|
80
|
+
--fl-z-dropdown: 100;
|
|
81
|
+
--fl-z-sticky: 200;
|
|
82
|
+
--fl-z-fixed: 300;
|
|
83
|
+
--fl-z-modal-backdrop: 400;
|
|
84
|
+
--fl-z-modal: 500;
|
|
85
|
+
--fl-z-popover: 600;
|
|
86
|
+
--fl-z-tooltip: 700;
|
|
87
|
+
--fl-z-toast: 800;
|
|
88
|
+
|
|
89
|
+
/* Layout */
|
|
90
|
+
--fl-container-max: 1200px;
|
|
91
|
+
--fl-sidebar-width: 260px;
|
|
92
|
+
--fl-header-height: 56px;
|
|
93
|
+
}
|