@justin_evo/evo-ui 1.1.0 → 1.2.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.
- package/README.md +3 -3
- package/dist/TopNav/TopNav.d.ts +19 -0
- package/dist/declarations.d.ts +6 -6
- package/dist/evo-ui.css +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.es.js +3301 -3197
- package/package.json +52 -52
- package/src/Alert/Alert.tsx +49 -49
- package/src/AutoComplete/AutoComplete.tsx +810 -810
- package/src/Badge/Badge.tsx +53 -53
- package/src/Breadcrumb/Breadcrumb.tsx +53 -53
- package/src/Button/Button.tsx +125 -125
- package/src/Card/Card.tsx +257 -257
- package/src/Checkbox/Checkbox.tsx +59 -59
- package/src/CommandPalette/CommandPalette.tsx +185 -185
- package/src/Container/Container.tsx +31 -31
- package/src/Divider/Divider.tsx +31 -31
- package/src/Form/Form.tsx +185 -185
- package/src/Grid/Grid.tsx +66 -66
- package/src/ImageCropper/ImageCropper.tsx +911 -911
- package/src/Input/Input.tsx +74 -74
- package/src/Modal/Modal.tsx +77 -77
- package/src/Nav/Nav.tsx +708 -708
- package/src/Notification/Notification.tsx +1503 -1503
- package/src/Pagination/Pagination.tsx +76 -76
- package/src/Radio/Radio.tsx +69 -69
- package/src/RichTextArea/RichTextArea.tsx +886 -869
- package/src/Select/Select.tsx +515 -515
- package/src/Skeleton/Skeleton.tsx +70 -70
- package/src/Stack/Stack.tsx +52 -52
- package/src/Table/Table.tsx +335 -335
- package/src/Tabs/Tabs.tsx +90 -90
- package/src/Theme/ThemeProvider.tsx +253 -253
- package/src/Theme/ThemeToggle.tsx +79 -79
- package/src/Toggle/Toggle.tsx +48 -48
- package/src/Tooltip/Tooltip.tsx +38 -38
- package/src/TopNav/TopNav.tsx +1163 -994
- package/src/TreeSelect/TreeSelect.tsx +825 -825
- package/src/css/alert.module.scss +93 -93
- package/src/css/autocomplete.module.scss +416 -416
- package/src/css/badge.module.scss +82 -82
- package/src/css/base/_color.scss +159 -159
- package/src/css/base/_theme.scss +237 -237
- package/src/css/base/_variables.scss +161 -161
- package/src/css/breadcrumb.module.scss +50 -50
- package/src/css/button.module.scss +385 -385
- package/src/css/card.module.scss +217 -217
- package/src/css/checkbox.module.scss +123 -120
- package/src/css/commandpalette.module.scss +211 -211
- package/src/css/container.module.scss +18 -18
- package/src/css/divider.module.scss +41 -41
- package/src/css/form.module.scss +245 -245
- package/src/css/imagecropper.module.scss +397 -397
- package/src/css/input.module.scss +89 -89
- package/src/css/modal.module.scss +105 -105
- package/src/css/nav.module.scss +494 -494
- package/src/css/notification.module.scss +691 -691
- package/src/css/pagination.module.scss +63 -63
- package/src/css/radio.module.scss +89 -89
- package/src/css/richtextarea.module.scss +307 -307
- package/src/css/select.module.scss +525 -525
- package/src/css/skeleton.module.scss +30 -30
- package/src/css/table.module.scss +386 -386
- package/src/css/tabs.module.scss +63 -63
- package/src/css/theme-toggle.module.scss +83 -83
- package/src/css/toggle.module.scss +54 -54
- package/src/css/tooltip.module.scss +97 -97
- package/src/css/topnav.module.scss +568 -396
- package/src/css/treeselect.module.scss +558 -558
- package/src/css/utilities/_borders.scss +111 -111
- package/src/css/utilities/_colors.scss +66 -66
- package/src/css/utilities/_effects.scss +216 -216
- package/src/css/utilities/_layout.scss +181 -181
- package/src/css/utilities/_position.scss +75 -75
- package/src/css/utilities/_sizing.scss +138 -138
- package/src/css/utilities/_spacing.scss +99 -99
- package/src/css/utilities/_typography.scss +121 -121
- package/src/css/utilities/index.scss +24 -24
- package/src/declarations.d.ts +6 -6
- package/src/index.ts +60 -60
|
@@ -1,82 +1,82 @@
|
|
|
1
|
-
@use 'base/variables' as *;
|
|
2
|
-
@use 'base/color' as *;
|
|
3
|
-
|
|
4
|
-
.badge {
|
|
5
|
-
display: inline-flex;
|
|
6
|
-
align-items: center;
|
|
7
|
-
gap: 0.3rem;
|
|
8
|
-
font-family: $font-sans;
|
|
9
|
-
font-weight: 600;
|
|
10
|
-
border-radius: $radius-full;
|
|
11
|
-
border: 1px solid transparent;
|
|
12
|
-
white-space: nowrap;
|
|
13
|
-
line-height: 1;
|
|
14
|
-
|
|
15
|
-
&.sm { font-size: 0.65rem; padding: 0.15rem 0.45rem; }
|
|
16
|
-
&.md { font-size: $text-xs; padding: 0.25rem 0.625rem; }
|
|
17
|
-
&.lg { font-size: $text-sm; padding: 0.375rem 0.75rem; }
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
// Solid
|
|
21
|
-
.solid {
|
|
22
|
-
&.primary { background: $evo-primary-color; color: $evo-primary-fg; border-color: $evo-primary-color; }
|
|
23
|
-
&.secondary { background: $color-surface-active; color: $color-text-primary; border-color: $color-border-strong; }
|
|
24
|
-
&.success { background: $evo-success-color; color: $evo-success-fg; border-color: $evo-success-color; }
|
|
25
|
-
&.warning { background: $evo-warning-color; color: $evo-warning-text; border-color: $evo-warning-color; }
|
|
26
|
-
&.danger { background: $evo-danger-color; color: $evo-danger-fg; border-color: $evo-danger-color; }
|
|
27
|
-
&.info { background: $evo-info-color; color: $evo-info-fg; border-color: $evo-info-color; }
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
// Outline
|
|
31
|
-
.outline {
|
|
32
|
-
background: transparent;
|
|
33
|
-
&.primary { color: $evo-primary-color; border-color: $evo-primary-color; }
|
|
34
|
-
&.secondary { color: $color-text-secondary; border-color: $color-border-strong; }
|
|
35
|
-
&.success { color: $evo-success-color; border-color: $evo-success-color; }
|
|
36
|
-
&.warning { color: $evo-warning-color; border-color: $evo-warning-color; }
|
|
37
|
-
&.danger { color: $evo-danger-color; border-color: $evo-danger-color; }
|
|
38
|
-
&.info { color: $evo-info-color; border-color: $evo-info-color; }
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
// Subtle
|
|
42
|
-
.subtle {
|
|
43
|
-
&.primary { background: color-mix(in srgb, $evo-primary-color 15%, transparent); color: $evo-primary-color; border-color: transparent; }
|
|
44
|
-
&.secondary { background: $color-surface-hover; color: $color-text-secondary; border-color: transparent; }
|
|
45
|
-
&.success { background: color-mix(in srgb, $evo-success-color 15%, transparent); color: $evo-success-color; border-color: transparent; }
|
|
46
|
-
&.warning { background: color-mix(in srgb, $evo-warning-color 15%, transparent); color: $evo-warning-color; border-color: transparent; }
|
|
47
|
-
&.danger { background: color-mix(in srgb, $evo-danger-color 15%, transparent); color: $evo-danger-color; border-color: transparent; }
|
|
48
|
-
&.info { background: color-mix(in srgb, $evo-info-color 15%, transparent); color: $evo-info-color; border-color: transparent; }
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.dot {
|
|
52
|
-
width: 0.375rem;
|
|
53
|
-
height: 0.375rem;
|
|
54
|
-
border-radius: 50%;
|
|
55
|
-
background-color: currentColor;
|
|
56
|
-
flex-shrink: 0;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.removeBtn {
|
|
60
|
-
display: inline-flex;
|
|
61
|
-
align-items: center;
|
|
62
|
-
justify-content: center;
|
|
63
|
-
background: transparent;
|
|
64
|
-
border: none;
|
|
65
|
-
cursor: pointer;
|
|
66
|
-
color: currentColor;
|
|
67
|
-
opacity: 0.7;
|
|
68
|
-
font-size: 0.6rem;
|
|
69
|
-
padding: 0;
|
|
70
|
-
line-height: 1;
|
|
71
|
-
transition: opacity $transition-fast;
|
|
72
|
-
margin-left: 0.1rem;
|
|
73
|
-
|
|
74
|
-
&:hover { opacity: 1; }
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.badgeGroup {
|
|
78
|
-
display: flex;
|
|
79
|
-
flex-wrap: wrap;
|
|
80
|
-
gap: 0.375rem;
|
|
81
|
-
align-items: center;
|
|
82
|
-
}
|
|
1
|
+
@use 'base/variables' as *;
|
|
2
|
+
@use 'base/color' as *;
|
|
3
|
+
|
|
4
|
+
.badge {
|
|
5
|
+
display: inline-flex;
|
|
6
|
+
align-items: center;
|
|
7
|
+
gap: 0.3rem;
|
|
8
|
+
font-family: $font-sans;
|
|
9
|
+
font-weight: 600;
|
|
10
|
+
border-radius: $radius-full;
|
|
11
|
+
border: 1px solid transparent;
|
|
12
|
+
white-space: nowrap;
|
|
13
|
+
line-height: 1;
|
|
14
|
+
|
|
15
|
+
&.sm { font-size: 0.65rem; padding: 0.15rem 0.45rem; }
|
|
16
|
+
&.md { font-size: $text-xs; padding: 0.25rem 0.625rem; }
|
|
17
|
+
&.lg { font-size: $text-sm; padding: 0.375rem 0.75rem; }
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
// Solid
|
|
21
|
+
.solid {
|
|
22
|
+
&.primary { background: $evo-primary-color; color: $evo-primary-fg; border-color: $evo-primary-color; }
|
|
23
|
+
&.secondary { background: $color-surface-active; color: $color-text-primary; border-color: $color-border-strong; }
|
|
24
|
+
&.success { background: $evo-success-color; color: $evo-success-fg; border-color: $evo-success-color; }
|
|
25
|
+
&.warning { background: $evo-warning-color; color: $evo-warning-text; border-color: $evo-warning-color; }
|
|
26
|
+
&.danger { background: $evo-danger-color; color: $evo-danger-fg; border-color: $evo-danger-color; }
|
|
27
|
+
&.info { background: $evo-info-color; color: $evo-info-fg; border-color: $evo-info-color; }
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
// Outline
|
|
31
|
+
.outline {
|
|
32
|
+
background: transparent;
|
|
33
|
+
&.primary { color: $evo-primary-color; border-color: $evo-primary-color; }
|
|
34
|
+
&.secondary { color: $color-text-secondary; border-color: $color-border-strong; }
|
|
35
|
+
&.success { color: $evo-success-color; border-color: $evo-success-color; }
|
|
36
|
+
&.warning { color: $evo-warning-color; border-color: $evo-warning-color; }
|
|
37
|
+
&.danger { color: $evo-danger-color; border-color: $evo-danger-color; }
|
|
38
|
+
&.info { color: $evo-info-color; border-color: $evo-info-color; }
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
// Subtle
|
|
42
|
+
.subtle {
|
|
43
|
+
&.primary { background: color-mix(in srgb, $evo-primary-color 15%, transparent); color: $evo-primary-color; border-color: transparent; }
|
|
44
|
+
&.secondary { background: $color-surface-hover; color: $color-text-secondary; border-color: transparent; }
|
|
45
|
+
&.success { background: color-mix(in srgb, $evo-success-color 15%, transparent); color: $evo-success-color; border-color: transparent; }
|
|
46
|
+
&.warning { background: color-mix(in srgb, $evo-warning-color 15%, transparent); color: $evo-warning-color; border-color: transparent; }
|
|
47
|
+
&.danger { background: color-mix(in srgb, $evo-danger-color 15%, transparent); color: $evo-danger-color; border-color: transparent; }
|
|
48
|
+
&.info { background: color-mix(in srgb, $evo-info-color 15%, transparent); color: $evo-info-color; border-color: transparent; }
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.dot {
|
|
52
|
+
width: 0.375rem;
|
|
53
|
+
height: 0.375rem;
|
|
54
|
+
border-radius: 50%;
|
|
55
|
+
background-color: currentColor;
|
|
56
|
+
flex-shrink: 0;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.removeBtn {
|
|
60
|
+
display: inline-flex;
|
|
61
|
+
align-items: center;
|
|
62
|
+
justify-content: center;
|
|
63
|
+
background: transparent;
|
|
64
|
+
border: none;
|
|
65
|
+
cursor: pointer;
|
|
66
|
+
color: currentColor;
|
|
67
|
+
opacity: 0.7;
|
|
68
|
+
font-size: 0.6rem;
|
|
69
|
+
padding: 0;
|
|
70
|
+
line-height: 1;
|
|
71
|
+
transition: opacity $transition-fast;
|
|
72
|
+
margin-left: 0.1rem;
|
|
73
|
+
|
|
74
|
+
&:hover { opacity: 1; }
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.badgeGroup {
|
|
78
|
+
display: flex;
|
|
79
|
+
flex-wrap: wrap;
|
|
80
|
+
gap: 0.375rem;
|
|
81
|
+
align-items: center;
|
|
82
|
+
}
|
package/src/css/base/_color.scss
CHANGED
|
@@ -1,159 +1,159 @@
|
|
|
1
|
-
// ===========================================
|
|
2
|
-
// REFINED COLOR PALETTE - Gaming Card System
|
|
3
|
-
// ===========================================
|
|
4
|
-
|
|
5
|
-
// Blue (primary) — bright vibrant blue
|
|
6
|
-
$evo-blue-100: #dbeafe;
|
|
7
|
-
$evo-blue-200: #bfdbfe;
|
|
8
|
-
$evo-blue-300: #93c5fd;
|
|
9
|
-
$evo-blue-400: #60a5fa;
|
|
10
|
-
$evo-blue-500: #3b82f6;
|
|
11
|
-
$evo-blue-600: #2563eb;
|
|
12
|
-
$evo-blue-700: #1d4ed8;
|
|
13
|
-
$evo-blue-800: #1e40af;
|
|
14
|
-
$evo-blue-900: #1e3a8a;
|
|
15
|
-
|
|
16
|
-
// Gray (secondary) — refined neutral gray
|
|
17
|
-
$evo-gray-100: #f3f4f6;
|
|
18
|
-
$evo-gray-200: #e5e7eb;
|
|
19
|
-
$evo-gray-300: #d1d5db;
|
|
20
|
-
$evo-gray-400: #9ca3af;
|
|
21
|
-
$evo-gray-500: #6b7280;
|
|
22
|
-
$evo-gray-600: #4b5563;
|
|
23
|
-
$evo-gray-700: #374151;
|
|
24
|
-
$evo-gray-800: #1f2937;
|
|
25
|
-
$evo-gray-900: #111827;
|
|
26
|
-
|
|
27
|
-
// Red (danger) — vivid red for alerts
|
|
28
|
-
$evo-red-100: #fee2e2;
|
|
29
|
-
$evo-red-200: #fecaca;
|
|
30
|
-
$evo-red-300: #fca5a5;
|
|
31
|
-
$evo-red-400: #f87171;
|
|
32
|
-
$evo-red-500: #ef4444;
|
|
33
|
-
$evo-red-600: #dc2626;
|
|
34
|
-
$evo-red-700: #b91c1c;
|
|
35
|
-
$evo-red-800: #991b1b;
|
|
36
|
-
$evo-red-900: #7f1d1d;
|
|
37
|
-
|
|
38
|
-
// Yellow (warning) — warm golden yellow
|
|
39
|
-
$evo-yellow-100: #fef9c3;
|
|
40
|
-
$evo-yellow-200: #fef08a;
|
|
41
|
-
$evo-yellow-300: #fde047;
|
|
42
|
-
$evo-yellow-400: #facc15;
|
|
43
|
-
$evo-yellow-500: #eab308;
|
|
44
|
-
$evo-yellow-600: #ca8a04;
|
|
45
|
-
$evo-yellow-700: #a16207;
|
|
46
|
-
$evo-yellow-800: #854d0e;
|
|
47
|
-
$evo-yellow-900: #713f12;
|
|
48
|
-
|
|
49
|
-
// Green (success) — fresh vibrant green
|
|
50
|
-
$evo-green-100: #dcfce7;
|
|
51
|
-
$evo-green-200: #bbf7d0;
|
|
52
|
-
$evo-green-300: #86efac;
|
|
53
|
-
$evo-green-400: #4ade80;
|
|
54
|
-
$evo-green-500: #22c55e;
|
|
55
|
-
$evo-green-600: #16a34a;
|
|
56
|
-
$evo-green-700: #15803d;
|
|
57
|
-
$evo-green-800: #166534;
|
|
58
|
-
$evo-green-900: #14532d;
|
|
59
|
-
|
|
60
|
-
// Purple (info/accent) — rich purple for special elements
|
|
61
|
-
$evo-purple-100: #f3e8ff;
|
|
62
|
-
$evo-purple-200: #e9d5ff;
|
|
63
|
-
$evo-purple-300: #d8b4fe;
|
|
64
|
-
$evo-purple-400: #c084fc;
|
|
65
|
-
$evo-purple-500: #a855f7;
|
|
66
|
-
$evo-purple-600: #9333ea;
|
|
67
|
-
$evo-purple-700: #7e22ce;
|
|
68
|
-
$evo-purple-800: #6b21a8;
|
|
69
|
-
$evo-purple-900: #581c87;
|
|
70
|
-
|
|
71
|
-
// Mono White (Smoke) — refined neutral foundations
|
|
72
|
-
$evo-white-100: #ffffff; // Pure White
|
|
73
|
-
$evo-white-200: #fafafa; // Off White
|
|
74
|
-
$evo-white-300: #f5f5f5; // Snow
|
|
75
|
-
$evo-white-400: #ebebeb; // Pearl
|
|
76
|
-
$evo-white-500: #e0e0e0; // Silver Mist
|
|
77
|
-
$evo-white-600: #c7c7c7; // Platinum
|
|
78
|
-
$evo-white-700: #a1a1a1; // Cool Gray
|
|
79
|
-
$evo-white-800: #7a7a7a; // Stone
|
|
80
|
-
$evo-white-900: #5c5c5c; // Graphite
|
|
81
|
-
|
|
82
|
-
// Mono Black (Midnight) — deep contrast blacks
|
|
83
|
-
$evo-black-100: #52525b; // Zinc
|
|
84
|
-
$evo-black-200: #3f3f46; // Charcoal
|
|
85
|
-
$evo-black-300: #27272a; // Onyx
|
|
86
|
-
$evo-black-400: #1c1c1e; // Jet
|
|
87
|
-
$evo-black-500: #18181b; // Rich Black
|
|
88
|
-
$evo-black-600: #121214; // Dark Matter
|
|
89
|
-
$evo-black-700: #0c0c0e; // Void
|
|
90
|
-
$evo-black-800: #060608; // Abyss
|
|
91
|
-
$evo-black-900: #000000; // True Black
|
|
92
|
-
|
|
93
|
-
// Cyan (Primary) — Electric, futuristic blue-cyan
|
|
94
|
-
$evo-cyan-100: #ecfeff;
|
|
95
|
-
$evo-cyan-200: #cffafe;
|
|
96
|
-
$evo-cyan-300: #a5f3fc;
|
|
97
|
-
$evo-cyan-400: #22d3ee;
|
|
98
|
-
$evo-cyan-500: #06b6d4;
|
|
99
|
-
$evo-cyan-600: #0891b2;
|
|
100
|
-
$evo-cyan-700: #0e7490;
|
|
101
|
-
$evo-cyan-800: #155e75;
|
|
102
|
-
$evo-cyan-900: #164e63;
|
|
103
|
-
|
|
104
|
-
// Rose (Legendary) — Warm, powerful pink-red
|
|
105
|
-
$evo-rose-100: #fff1f2;
|
|
106
|
-
$evo-rose-200: #fecdd3;
|
|
107
|
-
$evo-rose-300: #fda4af;
|
|
108
|
-
$evo-rose-400: #fb7185;
|
|
109
|
-
$evo-rose-500: #f43f5e;
|
|
110
|
-
$evo-rose-600: #e11d48;
|
|
111
|
-
$evo-rose-700: #be123c;
|
|
112
|
-
$evo-rose-800: #9f1239;
|
|
113
|
-
$evo-rose-900: #881337;
|
|
114
|
-
|
|
115
|
-
// Emerald (Rare) — Rich, deep green
|
|
116
|
-
$evo-emerald-100: #d1fae5;
|
|
117
|
-
$evo-emerald-200: #a7f3d0;
|
|
118
|
-
$evo-emerald-300: #6ee7b7;
|
|
119
|
-
$evo-emerald-400: #34d399;
|
|
120
|
-
$evo-emerald-500: #10b981;
|
|
121
|
-
$evo-emerald-600: #059669;
|
|
122
|
-
$evo-emerald-700: #047857;
|
|
123
|
-
$evo-emerald-800: #065f46;
|
|
124
|
-
$evo-emerald-900: #064e3b;
|
|
125
|
-
|
|
126
|
-
// Amber (Epic) — Warm gold-orange
|
|
127
|
-
$evo-amber-100: #fef3c7;
|
|
128
|
-
$evo-amber-200: #fde68a;
|
|
129
|
-
$evo-amber-300: #fcd34d;
|
|
130
|
-
$evo-amber-400: #fbbf24;
|
|
131
|
-
$evo-amber-500: #f59e0b;
|
|
132
|
-
$evo-amber-600: #d97706;
|
|
133
|
-
$evo-amber-700: #b45309;
|
|
134
|
-
$evo-amber-800: #92400e;
|
|
135
|
-
$evo-amber-900: #78350f;
|
|
136
|
-
|
|
137
|
-
// Violet (Mythic) — Deep, mystical purple
|
|
138
|
-
$evo-violet-100: #ede9fe;
|
|
139
|
-
$evo-violet-200: #ddd6fe;
|
|
140
|
-
$evo-violet-300: #c4b5fd;
|
|
141
|
-
$evo-violet-400: #a78bfa;
|
|
142
|
-
$evo-violet-500: #8b5cf6;
|
|
143
|
-
$evo-violet-600: #7c3aed;
|
|
144
|
-
$evo-violet-700: #6d28d9;
|
|
145
|
-
$evo-violet-800: #5b21b6;
|
|
146
|
-
$evo-violet-900: #4c1d95;
|
|
147
|
-
|
|
148
|
-
// Slate (Neutral) — Modern cool grays
|
|
149
|
-
$evo-slate-50: #f8fafc;
|
|
150
|
-
$evo-slate-100: #f1f5f9;
|
|
151
|
-
$evo-slate-200: #e2e8f0;
|
|
152
|
-
$evo-slate-300: #cbd5e1;
|
|
153
|
-
$evo-slate-400: #94a3b8;
|
|
154
|
-
$evo-slate-500: #64748b;
|
|
155
|
-
$evo-slate-600: #475569;
|
|
156
|
-
$evo-slate-700: #334155;
|
|
157
|
-
$evo-slate-800: #1e293b;
|
|
158
|
-
$evo-slate-900: #0f172a;
|
|
159
|
-
$evo-slate-950: #020617;
|
|
1
|
+
// ===========================================
|
|
2
|
+
// REFINED COLOR PALETTE - Gaming Card System
|
|
3
|
+
// ===========================================
|
|
4
|
+
|
|
5
|
+
// Blue (primary) — bright vibrant blue
|
|
6
|
+
$evo-blue-100: #dbeafe;
|
|
7
|
+
$evo-blue-200: #bfdbfe;
|
|
8
|
+
$evo-blue-300: #93c5fd;
|
|
9
|
+
$evo-blue-400: #60a5fa;
|
|
10
|
+
$evo-blue-500: #3b82f6;
|
|
11
|
+
$evo-blue-600: #2563eb;
|
|
12
|
+
$evo-blue-700: #1d4ed8;
|
|
13
|
+
$evo-blue-800: #1e40af;
|
|
14
|
+
$evo-blue-900: #1e3a8a;
|
|
15
|
+
|
|
16
|
+
// Gray (secondary) — refined neutral gray
|
|
17
|
+
$evo-gray-100: #f3f4f6;
|
|
18
|
+
$evo-gray-200: #e5e7eb;
|
|
19
|
+
$evo-gray-300: #d1d5db;
|
|
20
|
+
$evo-gray-400: #9ca3af;
|
|
21
|
+
$evo-gray-500: #6b7280;
|
|
22
|
+
$evo-gray-600: #4b5563;
|
|
23
|
+
$evo-gray-700: #374151;
|
|
24
|
+
$evo-gray-800: #1f2937;
|
|
25
|
+
$evo-gray-900: #111827;
|
|
26
|
+
|
|
27
|
+
// Red (danger) — vivid red for alerts
|
|
28
|
+
$evo-red-100: #fee2e2;
|
|
29
|
+
$evo-red-200: #fecaca;
|
|
30
|
+
$evo-red-300: #fca5a5;
|
|
31
|
+
$evo-red-400: #f87171;
|
|
32
|
+
$evo-red-500: #ef4444;
|
|
33
|
+
$evo-red-600: #dc2626;
|
|
34
|
+
$evo-red-700: #b91c1c;
|
|
35
|
+
$evo-red-800: #991b1b;
|
|
36
|
+
$evo-red-900: #7f1d1d;
|
|
37
|
+
|
|
38
|
+
// Yellow (warning) — warm golden yellow
|
|
39
|
+
$evo-yellow-100: #fef9c3;
|
|
40
|
+
$evo-yellow-200: #fef08a;
|
|
41
|
+
$evo-yellow-300: #fde047;
|
|
42
|
+
$evo-yellow-400: #facc15;
|
|
43
|
+
$evo-yellow-500: #eab308;
|
|
44
|
+
$evo-yellow-600: #ca8a04;
|
|
45
|
+
$evo-yellow-700: #a16207;
|
|
46
|
+
$evo-yellow-800: #854d0e;
|
|
47
|
+
$evo-yellow-900: #713f12;
|
|
48
|
+
|
|
49
|
+
// Green (success) — fresh vibrant green
|
|
50
|
+
$evo-green-100: #dcfce7;
|
|
51
|
+
$evo-green-200: #bbf7d0;
|
|
52
|
+
$evo-green-300: #86efac;
|
|
53
|
+
$evo-green-400: #4ade80;
|
|
54
|
+
$evo-green-500: #22c55e;
|
|
55
|
+
$evo-green-600: #16a34a;
|
|
56
|
+
$evo-green-700: #15803d;
|
|
57
|
+
$evo-green-800: #166534;
|
|
58
|
+
$evo-green-900: #14532d;
|
|
59
|
+
|
|
60
|
+
// Purple (info/accent) — rich purple for special elements
|
|
61
|
+
$evo-purple-100: #f3e8ff;
|
|
62
|
+
$evo-purple-200: #e9d5ff;
|
|
63
|
+
$evo-purple-300: #d8b4fe;
|
|
64
|
+
$evo-purple-400: #c084fc;
|
|
65
|
+
$evo-purple-500: #a855f7;
|
|
66
|
+
$evo-purple-600: #9333ea;
|
|
67
|
+
$evo-purple-700: #7e22ce;
|
|
68
|
+
$evo-purple-800: #6b21a8;
|
|
69
|
+
$evo-purple-900: #581c87;
|
|
70
|
+
|
|
71
|
+
// Mono White (Smoke) — refined neutral foundations
|
|
72
|
+
$evo-white-100: #ffffff; // Pure White
|
|
73
|
+
$evo-white-200: #fafafa; // Off White
|
|
74
|
+
$evo-white-300: #f5f5f5; // Snow
|
|
75
|
+
$evo-white-400: #ebebeb; // Pearl
|
|
76
|
+
$evo-white-500: #e0e0e0; // Silver Mist
|
|
77
|
+
$evo-white-600: #c7c7c7; // Platinum
|
|
78
|
+
$evo-white-700: #a1a1a1; // Cool Gray
|
|
79
|
+
$evo-white-800: #7a7a7a; // Stone
|
|
80
|
+
$evo-white-900: #5c5c5c; // Graphite
|
|
81
|
+
|
|
82
|
+
// Mono Black (Midnight) — deep contrast blacks
|
|
83
|
+
$evo-black-100: #52525b; // Zinc
|
|
84
|
+
$evo-black-200: #3f3f46; // Charcoal
|
|
85
|
+
$evo-black-300: #27272a; // Onyx
|
|
86
|
+
$evo-black-400: #1c1c1e; // Jet
|
|
87
|
+
$evo-black-500: #18181b; // Rich Black
|
|
88
|
+
$evo-black-600: #121214; // Dark Matter
|
|
89
|
+
$evo-black-700: #0c0c0e; // Void
|
|
90
|
+
$evo-black-800: #060608; // Abyss
|
|
91
|
+
$evo-black-900: #000000; // True Black
|
|
92
|
+
|
|
93
|
+
// Cyan (Primary) — Electric, futuristic blue-cyan
|
|
94
|
+
$evo-cyan-100: #ecfeff;
|
|
95
|
+
$evo-cyan-200: #cffafe;
|
|
96
|
+
$evo-cyan-300: #a5f3fc;
|
|
97
|
+
$evo-cyan-400: #22d3ee;
|
|
98
|
+
$evo-cyan-500: #06b6d4;
|
|
99
|
+
$evo-cyan-600: #0891b2;
|
|
100
|
+
$evo-cyan-700: #0e7490;
|
|
101
|
+
$evo-cyan-800: #155e75;
|
|
102
|
+
$evo-cyan-900: #164e63;
|
|
103
|
+
|
|
104
|
+
// Rose (Legendary) — Warm, powerful pink-red
|
|
105
|
+
$evo-rose-100: #fff1f2;
|
|
106
|
+
$evo-rose-200: #fecdd3;
|
|
107
|
+
$evo-rose-300: #fda4af;
|
|
108
|
+
$evo-rose-400: #fb7185;
|
|
109
|
+
$evo-rose-500: #f43f5e;
|
|
110
|
+
$evo-rose-600: #e11d48;
|
|
111
|
+
$evo-rose-700: #be123c;
|
|
112
|
+
$evo-rose-800: #9f1239;
|
|
113
|
+
$evo-rose-900: #881337;
|
|
114
|
+
|
|
115
|
+
// Emerald (Rare) — Rich, deep green
|
|
116
|
+
$evo-emerald-100: #d1fae5;
|
|
117
|
+
$evo-emerald-200: #a7f3d0;
|
|
118
|
+
$evo-emerald-300: #6ee7b7;
|
|
119
|
+
$evo-emerald-400: #34d399;
|
|
120
|
+
$evo-emerald-500: #10b981;
|
|
121
|
+
$evo-emerald-600: #059669;
|
|
122
|
+
$evo-emerald-700: #047857;
|
|
123
|
+
$evo-emerald-800: #065f46;
|
|
124
|
+
$evo-emerald-900: #064e3b;
|
|
125
|
+
|
|
126
|
+
// Amber (Epic) — Warm gold-orange
|
|
127
|
+
$evo-amber-100: #fef3c7;
|
|
128
|
+
$evo-amber-200: #fde68a;
|
|
129
|
+
$evo-amber-300: #fcd34d;
|
|
130
|
+
$evo-amber-400: #fbbf24;
|
|
131
|
+
$evo-amber-500: #f59e0b;
|
|
132
|
+
$evo-amber-600: #d97706;
|
|
133
|
+
$evo-amber-700: #b45309;
|
|
134
|
+
$evo-amber-800: #92400e;
|
|
135
|
+
$evo-amber-900: #78350f;
|
|
136
|
+
|
|
137
|
+
// Violet (Mythic) — Deep, mystical purple
|
|
138
|
+
$evo-violet-100: #ede9fe;
|
|
139
|
+
$evo-violet-200: #ddd6fe;
|
|
140
|
+
$evo-violet-300: #c4b5fd;
|
|
141
|
+
$evo-violet-400: #a78bfa;
|
|
142
|
+
$evo-violet-500: #8b5cf6;
|
|
143
|
+
$evo-violet-600: #7c3aed;
|
|
144
|
+
$evo-violet-700: #6d28d9;
|
|
145
|
+
$evo-violet-800: #5b21b6;
|
|
146
|
+
$evo-violet-900: #4c1d95;
|
|
147
|
+
|
|
148
|
+
// Slate (Neutral) — Modern cool grays
|
|
149
|
+
$evo-slate-50: #f8fafc;
|
|
150
|
+
$evo-slate-100: #f1f5f9;
|
|
151
|
+
$evo-slate-200: #e2e8f0;
|
|
152
|
+
$evo-slate-300: #cbd5e1;
|
|
153
|
+
$evo-slate-400: #94a3b8;
|
|
154
|
+
$evo-slate-500: #64748b;
|
|
155
|
+
$evo-slate-600: #475569;
|
|
156
|
+
$evo-slate-700: #334155;
|
|
157
|
+
$evo-slate-800: #1e293b;
|
|
158
|
+
$evo-slate-900: #0f172a;
|
|
159
|
+
$evo-slate-950: #020617;
|