@albi_scando/as-design-system-lib 1.5.0 → 1.5.2

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,257 @@
1
+ /* Design System - Single Entry Point */
2
+ /* Includes all design tokens and component styles */
3
+ /* Design System - Main Entry Point */
4
+ /* Include Design Tokens */
5
+ /* Typography Design Tokens */
6
+ :root {
7
+ /* Font Family Stack - Professional & Modern */
8
+ --font-family-sans:
9
+ -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Roboto,
10
+ 'Helvetica Neue', Oxygen, Ubuntu, Cantarell, sans-serif;
11
+ --font-family-mono: 'Courier New', Courier, monospace;
12
+ --font-family-base: var(--font-family-sans);
13
+ /* Font Sizes - Refined Scale */
14
+ --font-size-xs: 0.75rem; /* 12px */
15
+ --font-size-sm: 0.875rem; /* 14px */
16
+ --font-size-md: 1rem; /* 16px */
17
+ --font-size-lg: 1.125rem; /* 18px */
18
+ --font-size-xl: 1.25rem; /* 20px */
19
+ --font-size-2xl: 1.5rem; /* 24px */
20
+ --font-size-3xl: 1.875rem; /* 30px */
21
+ --font-size-xxl: 2.25rem; /* 36px */
22
+ /* Font Weights - Semantic Usage */
23
+ --font-weight-light: 300;
24
+ --font-weight-normal: 400;
25
+ --font-weight-medium: 500;
26
+ --font-weight-semibold: 600;
27
+ --font-weight-bold: 700;
28
+ --font-weight-extrabold: 800;
29
+ /* Line Heights - Improved Readability */
30
+ --line-height-tight: 1.2;
31
+ --line-height-normal: 1.5;
32
+ --line-height-relaxed: 1.75;
33
+ --line-height-loose: 2;
34
+ /* Letter Spacing - Refined */
35
+ --letter-spacing-tight: -0.02em;
36
+ --letter-spacing-normal: 0em;
37
+ --letter-spacing-wide: 0.02em;
38
+ /* Text Transform */
39
+ --text-transform-none: none;
40
+ --text-transform-uppercase: uppercase;
41
+ --text-transform-capitalize: capitalize;
42
+ }
43
+
44
+ .dark {
45
+ --color-bg-primary: #313131;
46
+ --color-bg-secondary: #1f1f1f;
47
+ --color-bg-tertiary: #121130;
48
+ --color-hover-bg-primary: #090920;
49
+ --color-hover-bg-secondary: #141414;
50
+ --color-hover-bg-tertiary: #3b0077;
51
+ --color-text-primary: #eeeeee;
52
+ --color-text-secondary: #ddd6fe;
53
+ --color-text-tertiary: #c4b5fd;
54
+ --color-border-primary: #7a7a7a;
55
+ --color-border-secondary: #696969;
56
+ --color-border-tertiary: #a5b4fc;
57
+ --color-hover-border-primary: #000000;
58
+ --color-hover-border-secondary: #979797;
59
+ --color-hover-border-tertiary: #3b0077;
60
+ --color-primary: #6366f1;
61
+ --color-primary-light: #818cf8;
62
+ --color-primary-dark: #4f46e5;
63
+ --color-success: #00811a;
64
+ --color-warning: #e68200;
65
+ --color-error: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
66
+ --color-info: linear-gradient(135deg, #a78bfa 0%, #06b6d4 100%);
67
+ --window-backdrop: #000000b3;
68
+ }
69
+
70
+ .dark-purple {
71
+ --color-bg-primary: #222222;
72
+ --color-bg-secondary: linear-gradient(135deg, #852392 0%, #090920 100%);
73
+ --color-bg-tertiary: #121130;
74
+ --color-hover-bg-primary: #090920;
75
+ --color-hover-bg-secondary: linear-gradient(135deg, #a828b9 0%, #2f0035 100%);
76
+ --color-hover-bg-tertiary: #3b0077;
77
+ --color-text-primary: #f1e5fe;
78
+ --color-text-secondary: #ddd6fe;
79
+ --color-text-tertiary: #c4b5fd;
80
+ --color-border-primary: #000000;
81
+ --color-border-secondary: #8c0095;
82
+ --color-border-tertiary: #a5b4fc;
83
+ --color-hover-border-primary: #000000;
84
+ --color-hover-border-secondary: #8c0095;
85
+ --color-hover-border-tertiary: #3b0077;
86
+ --color-primary: #6366f1;
87
+ --color-primary-light: #818cf8;
88
+ --color-primary-dark: #4f46e5;
89
+ --color-success: linear-gradient(135deg, #337642 0%, #084c00 100%);
90
+ --color-warning: linear-gradient(135deg, #ffcc37 0%, #c76a00 100%);
91
+ --color-error: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
92
+ --color-info: linear-gradient(135deg, #a78bfa 0%, #06b6d4 100%);
93
+ --window-backdrop: #000000b3;
94
+ }
95
+
96
+ .ferrari {
97
+ --color-bg-primary: #ff2800;
98
+ --color-bg-secondary: #0096d6;
99
+ --color-bg-tertiary: #121130;
100
+ --color-hover-bg-primary: #090920;
101
+ --color-hover-bg-secondary: #0282cd;
102
+ --color-hover-bg-tertiary: #3b0077;
103
+ --color-text-primary: #ffffff;
104
+ --color-text-secondary: #ddd6fe;
105
+ --color-text-tertiary: #c4b5fd;
106
+ --color-border-primary: #ffffff;
107
+ --color-border-secondary: #ddebf7;
108
+ --color-border-tertiary: #a5b4fc;
109
+ --color-hover-border-primary: #000000;
110
+ --color-hover-border-secondary: #bedcff;
111
+ --color-hover-border-tertiary: #3b0077;
112
+ --color-primary: #6366f1;
113
+ --color-primary-light: #818cf8;
114
+ --color-primary-dark: #4f46e5;
115
+ --color-success: #0e8d00;
116
+ --color-warning: #fd9712;
117
+ --color-error: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
118
+ --color-info: linear-gradient(135deg, #a78bfa 0%, #06b6d4 100%);
119
+ --window-backdrop: rgba(255, 188, 183, 0.5);
120
+ }
121
+
122
+ .light {
123
+ --color-bg-primary: #fbfbfb;
124
+ --color-bg-secondary: #f7f7f7;
125
+ --color-bg-tertiary: #121130;
126
+ --color-hover-bg-primary: #090920;
127
+ --color-hover-bg-secondary: #ededed;
128
+ --color-hover-bg-tertiary: #3b0077;
129
+ --color-text-primary: #141414;
130
+ --color-text-secondary: #ddd6fe;
131
+ --color-text-tertiary: #c4b5fd;
132
+ --color-border-primary: #d8d8d8;
133
+ --color-border-secondary: #f3f3f3;
134
+ --color-border-tertiary: #a5b4fc;
135
+ --color-hover-border-primary: #000000;
136
+ --color-hover-border-secondary: #cecece;
137
+ --color-hover-border-tertiary: #3b0077;
138
+ --color-primary: #6366f1;
139
+ --color-primary-light: #818cf8;
140
+ --color-primary-dark: #4f46e5;
141
+ --color-success: #97e9a8;
142
+ --color-warning: #ffe586;
143
+ --color-error: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
144
+ --color-info: linear-gradient(135deg, #a78bfa 0%, #06b6d4 100%);
145
+ --window-backdrop: #f7f7f7b3;
146
+ }
147
+
148
+ .light-blue {
149
+ --color-bg-primary: #f7f7f7;
150
+ --color-bg-secondary: linear-gradient(135deg, #d6ebff 0%, #76bdff 100%);
151
+ --color-bg-tertiary: #121130;
152
+ --color-hover-bg-primary: #090920;
153
+ --color-hover-bg-secondary: linear-gradient(135deg, #bee7ff 0%, #56a7ee 100%);
154
+ --color-hover-bg-tertiary: #3b0077;
155
+ --color-text-primary: #2b2b2b;
156
+ --color-text-secondary: #ddd6fe;
157
+ --color-text-tertiary: #c4b5fd;
158
+ --color-border-primary: #d8d8d8;
159
+ --color-border-secondary: #ddebf7;
160
+ --color-border-tertiary: #a5b4fc;
161
+ --color-hover-border-primary: #000000;
162
+ --color-hover-border-secondary: #bedcff;
163
+ --color-hover-border-tertiary: #3b0077;
164
+ --color-primary: #6366f1;
165
+ --color-primary-light: #818cf8;
166
+ --color-primary-dark: #4f46e5;
167
+ --color-success: linear-gradient(135deg, #c3ffd5 0%, #7fe083 100%);
168
+ --color-warning: linear-gradient(135deg, #ffe38e 0%, #ffd970 100%);
169
+ --color-error: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
170
+ --color-info: linear-gradient(135deg, #a78bfa 0%, #06b6d4 100%);
171
+ --window-backdrop: #c9e6ffb3;
172
+ }
173
+
174
+ :root {
175
+ /* Neutral Colors (used across all themes) */
176
+ --color-neutral-50: #f9fafb;
177
+ --color-neutral-100: #f3f4f6;
178
+ --color-neutral-200: #e5e7eb;
179
+ --color-neutral-300: #d1d5db;
180
+ --color-neutral-400: #9ca3af;
181
+ --color-neutral-500: #6b7280;
182
+ --color-neutral-600: #4b5563;
183
+ --color-neutral-700: #373737;
184
+ --color-neutral-800: #1f2937;
185
+ --color-neutral-900: #111827;
186
+ }
187
+
188
+ /* Spacing Design Tokens */
189
+ :root {
190
+ /* Base spacing unit: 4px */
191
+ --spacing-0: 0;
192
+ --spacing-1: 0.25rem; /* 4px */
193
+ --spacing-2: 0.5rem; /* 8px */
194
+ --spacing-3: 0.75rem; /* 12px */
195
+ --spacing-4: 1rem; /* 16px */
196
+ --spacing-5: 1.25rem; /* 20px */
197
+ --spacing-6: 1.5rem; /* 24px */
198
+ --spacing-8: 2rem; /* 32px */
199
+ --spacing-10: 2.5rem; /* 40px */
200
+ --spacing-12: 3rem; /* 48px */
201
+ --spacing-16: 4rem; /* 64px */
202
+ --spacing-20: 5rem; /* 80px */
203
+ --spacing-24: 6rem; /* 96px */
204
+ /* Button Spacing */
205
+ --button-padding-block-sm: var(--spacing-1);
206
+ --button-padding-block-md: var(--spacing-2);
207
+ --button-padding-block-lg: var(--spacing-3);
208
+ --button-padding-inline-sm: var(--spacing-3);
209
+ --button-padding-inline-md: var(--spacing-4);
210
+ --button-padding-inline-lg: var(--spacing-6);
211
+ /* Component Gap */
212
+ --gap-xs: 0.25rem;
213
+ --gap-sm: 0.5rem;
214
+ --gap-md: 1rem;
215
+ --gap-lg: 1.5rem;
216
+ --gap-xl: 2rem;
217
+ /* Border Radius - Modern & Accessible */
218
+ --border-radius-none: 0;
219
+ --border-radius-sm: 0.25rem; /* 4px */
220
+ --border-radius-md: 0.5rem; /* 8px */
221
+ --border-radius-lg: 0.75rem; /* 12px */
222
+ --border-radius-xl: 1rem; /* 16px */
223
+ --border-radius-2xl: 1.5rem; /* 24px */
224
+ --border-radius-full: 9999px;
225
+ /* Border Width */
226
+ --border-width-0: 0;
227
+ --border-width-1: 1px;
228
+ --border-width-2: 2px;
229
+ --border-width-4: 4px;
230
+ /* Shadow System - Depth & Elevation */
231
+ --shadow-none: none;
232
+ --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
233
+ --shadow-md:
234
+ 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
235
+ --shadow-lg:
236
+ 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
237
+ --shadow-xl:
238
+ 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
239
+ --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
240
+ /* Transition & Animation */
241
+ --transition-fast: 150ms;
242
+ --transition-base: 300ms;
243
+ --transition-slow: 500ms;
244
+ /* Z-Index Scale */
245
+ --z-index-dropdown: 1000;
246
+ --z-index-modal-backdrop: 1040;
247
+ --z-index-modal: 1050;
248
+ --z-index-popover: 1060;
249
+ --z-index-tooltip: 1070;
250
+ }
251
+
252
+ /*
253
+ Note: Component styles are included in components-styles.scss separately.
254
+ They automatically inherit the CSS custom properties defined above.
255
+ */
256
+
257
+ /*# sourceMappingURL=index.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sourceRoot":"","sources":["../../src/library/themes/index.scss","../../src/library/themes/themes.scss","../../src/library/themes/tokens/typography.scss","../../src/library/themes/tokens/colors/dark.scss","../../src/library/themes/tokens/colors/dark-purple.scss","../../src/library/themes/tokens/colors/ferrari.scss","../../src/library/themes/tokens/colors/light.scss","../../src/library/themes/tokens/colors/light-blue.scss","../../src/library/themes/tokens/colors.scss","../../src/library/themes/tokens/spacing.scss"],"names":[],"mappings":"AAAA;AACA;ACDA;AAEA;ACFA;AAEA;AACE;EACA;AAAA;AAAA;EAGA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;;;AC1CF;EACE;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;;;AC9BF;EACE;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;;;AC9BF;EACE;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;;;AC9BF;EACE;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;;;AC9BF;EACE;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;;;ACxBF;AACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ACjBF;AAEA;AACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EAEA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;AAAA;EAEA;AAAA;EAEA;AAAA;EAEA;AAEA;EACA;EACA;EACA;AAEA;EACA;EACA;EACA;EACA;EACA;;;AR/DF;AAAA;AAAA;AAAA","file":"index.css"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@albi_scando/as-design-system-lib",
3
- "version": "1.5.0",
3
+ "version": "1.5.2",
4
4
  "description": "A library of reusable, strongly typed Web Components built with TypeScript, designed for creating consistent and maintainable user interfaces.",
5
5
  "type": "module",
6
6
  "files": [
@@ -25,11 +25,10 @@
25
25
  "require": "./dist/as-design-system-lib.umd.js",
26
26
  "types": "./dist/types/main.d.ts"
27
27
  },
28
- "./styles": "./dist/styles/themes/index.scss",
29
- "./styles/*": "./dist/styles/*"
28
+ "./styles": "./dist/styles/index.css"
30
29
  },
31
30
  "scripts": {
32
- "build": "tsc && vite build",
31
+ "build": "tsc && vite build && sass src/library/themes/index.scss dist/styles/index.css",
33
32
  "commit": "cz",
34
33
  "dev": "vite serve ./src/playground",
35
34
  "docs:build": "typedoc",
@@ -1,8 +0,0 @@
1
- /* Import all component styles */
2
- @use '../web-components/buttons/base-button/component.scss' as base-button;
3
- @use '../web-components/buttons/undo-button/component.scss' as undo-button;
4
- @use '../web-components/buttons/confirm-button/component.scss' as confirm-button;
5
- @use '../web-components/dialogs/base-dialog/component.scss' as base-dialog;
6
- @use '../web-components/dialogs/confirmation-dialog/component.scss' as
7
- confirmation-dialog;
8
- @use '../web-components/menus/bar-menu/component.scss' as game-menu;
@@ -1,5 +0,0 @@
1
- /* Design System - Single Entry Point */
2
- /* Includes all design tokens and component styles */
3
-
4
- @use './themes.scss';
5
- // @use './components-styles.scss';
@@ -1,11 +0,0 @@
1
- /* Design System - Main Entry Point */
2
-
3
- /* Include Design Tokens */
4
- @use './tokens/typography.scss';
5
- @use './tokens/colors.scss';
6
- @use './tokens/spacing.scss';
7
-
8
- /*
9
- Note: Component styles are included in components-styles.scss separately.
10
- They automatically inherit the CSS custom properties defined above.
11
- */
@@ -1,32 +0,0 @@
1
- .dark-purple {
2
- --color-bg-primary: #222222;
3
- --color-bg-secondary: linear-gradient(135deg, #852392 0%, #090920 100%);
4
- --color-bg-tertiary: #121130;
5
-
6
- --color-hover-bg-primary: #090920;
7
- --color-hover-bg-secondary: linear-gradient(135deg, #a828b9 0%, #2f0035 100%);
8
- --color-hover-bg-tertiary: #3b0077;
9
-
10
- --color-text-primary: #f1e5fe;
11
- --color-text-secondary: #ddd6fe;
12
- --color-text-tertiary: #c4b5fd;
13
-
14
- --color-border-primary: #000000;
15
- --color-border-secondary: #8c0095;
16
- --color-border-tertiary: #a5b4fc;
17
-
18
- --color-hover-border-primary: #000000;
19
- --color-hover-border-secondary: #8c0095;
20
- --color-hover-border-tertiary: #3b0077;
21
-
22
- --color-primary: #6366f1;
23
- --color-primary-light: #818cf8;
24
- --color-primary-dark: #4f46e5;
25
-
26
- --color-success: linear-gradient(135deg, #337642 0%, #084c00 100%);
27
- --color-warning: linear-gradient(135deg, #ffcc37 0%, #c76a00 100%);
28
- --color-error: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
29
- --color-info: linear-gradient(135deg, #a78bfa 0%, #06b6d4 100%);
30
-
31
- --window-backdrop: #000000b3;
32
- }
@@ -1,32 +0,0 @@
1
- .dark {
2
- --color-bg-primary: #313131;
3
- --color-bg-secondary: #1f1f1f;
4
- --color-bg-tertiary: #121130;
5
-
6
- --color-hover-bg-primary: #090920;
7
- --color-hover-bg-secondary: #141414;
8
- --color-hover-bg-tertiary: #3b0077;
9
-
10
- --color-text-primary: #eeeeee;
11
- --color-text-secondary: #ddd6fe;
12
- --color-text-tertiary: #c4b5fd;
13
-
14
- --color-border-primary: #7a7a7a;
15
- --color-border-secondary: #696969;
16
- --color-border-tertiary: #a5b4fc;
17
-
18
- --color-hover-border-primary: #000000;
19
- --color-hover-border-secondary: #979797;
20
- --color-hover-border-tertiary: #3b0077;
21
-
22
- --color-primary: #6366f1;
23
- --color-primary-light: #818cf8;
24
- --color-primary-dark: #4f46e5;
25
-
26
- --color-success: #00811a;
27
- --color-warning: #e68200;
28
- --color-error: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
29
- --color-info: linear-gradient(135deg, #a78bfa 0%, #06b6d4 100%);
30
-
31
- --window-backdrop: #000000b3;
32
- }
@@ -1,32 +0,0 @@
1
- .ferrari {
2
- --color-bg-primary: #ff2800;
3
- --color-bg-secondary: #0096d6;
4
- --color-bg-tertiary: #121130;
5
-
6
- --color-hover-bg-primary: #090920;
7
- --color-hover-bg-secondary: #0282cd;
8
- --color-hover-bg-tertiary: #3b0077;
9
-
10
- --color-text-primary: #ffffff;
11
- --color-text-secondary: #ddd6fe;
12
- --color-text-tertiary: #c4b5fd;
13
-
14
- --color-border-primary: #ffffff;
15
- --color-border-secondary: #ddebf7;
16
- --color-border-tertiary: #a5b4fc;
17
-
18
- --color-hover-border-primary: #000000;
19
- --color-hover-border-secondary: #bedcff;
20
- --color-hover-border-tertiary: #3b0077;
21
-
22
- --color-primary: #6366f1;
23
- --color-primary-light: #818cf8;
24
- --color-primary-dark: #4f46e5;
25
-
26
- --color-success: #0e8d00;
27
- --color-warning: #fd9712;
28
- --color-error: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
29
- --color-info: linear-gradient(135deg, #a78bfa 0%, #06b6d4 100%);
30
-
31
- --window-backdrop: rgba(255, 188, 183, 0.5);
32
- }
@@ -1,32 +0,0 @@
1
- .light-blue {
2
- --color-bg-primary: #f7f7f7;
3
- --color-bg-secondary: linear-gradient(135deg, #d6ebff 0%, #76bdff 100%);
4
- --color-bg-tertiary: #121130;
5
-
6
- --color-hover-bg-primary: #090920;
7
- --color-hover-bg-secondary: linear-gradient(135deg, #bee7ff 0%, #56a7ee 100%);
8
- --color-hover-bg-tertiary: #3b0077;
9
-
10
- --color-text-primary: #2b2b2b;
11
- --color-text-secondary: #ddd6fe;
12
- --color-text-tertiary: #c4b5fd;
13
-
14
- --color-border-primary: #d8d8d8;
15
- --color-border-secondary: #ddebf7;
16
- --color-border-tertiary: #a5b4fc;
17
-
18
- --color-hover-border-primary: #000000;
19
- --color-hover-border-secondary: #bedcff;
20
- --color-hover-border-tertiary: #3b0077;
21
-
22
- --color-primary: #6366f1;
23
- --color-primary-light: #818cf8;
24
- --color-primary-dark: #4f46e5;
25
-
26
- --color-success: linear-gradient(135deg, #c3ffd5 0%, #7fe083 100%);
27
- --color-warning: linear-gradient(135deg, #ffe38e 0%, #ffd970 100%);
28
- --color-error: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
29
- --color-info: linear-gradient(135deg, #a78bfa 0%, #06b6d4 100%);
30
-
31
- --window-backdrop: #c9e6ffb3;
32
- }
@@ -1,32 +0,0 @@
1
- .light {
2
- --color-bg-primary: #fbfbfb;
3
- --color-bg-secondary: #f7f7f7;
4
- --color-bg-tertiary: #121130;
5
-
6
- --color-hover-bg-primary: #090920;
7
- --color-hover-bg-secondary: #ededed;
8
- --color-hover-bg-tertiary: #3b0077;
9
-
10
- --color-text-primary: #141414;
11
- --color-text-secondary: #ddd6fe;
12
- --color-text-tertiary: #c4b5fd;
13
-
14
- --color-border-primary: #d8d8d8;
15
- --color-border-secondary: #f3f3f3;
16
- --color-border-tertiary: #a5b4fc;
17
-
18
- --color-hover-border-primary: #000000;
19
- --color-hover-border-secondary: #cecece;
20
- --color-hover-border-tertiary: #3b0077;
21
-
22
- --color-primary: #6366f1;
23
- --color-primary-light: #818cf8;
24
- --color-primary-dark: #4f46e5;
25
-
26
- --color-success: #97e9a8;
27
- --color-warning: #ffe586;
28
- --color-error: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
29
- --color-info: linear-gradient(135deg, #a78bfa 0%, #06b6d4 100%);
30
-
31
- --window-backdrop: #f7f7f7b3;
32
- }
@@ -1,19 +0,0 @@
1
- @use 'colors/dark.scss';
2
- @use 'colors/dark-purple.scss';
3
- @use 'colors/ferrari.scss';
4
- @use 'colors/light.scss';
5
- @use 'colors/light-blue.scss';
6
-
7
- :root {
8
- /* Neutral Colors (used across all themes) */
9
- --color-neutral-50: #f9fafb;
10
- --color-neutral-100: #f3f4f6;
11
- --color-neutral-200: #e5e7eb;
12
- --color-neutral-300: #d1d5db;
13
- --color-neutral-400: #9ca3af;
14
- --color-neutral-500: #6b7280;
15
- --color-neutral-600: #4b5563;
16
- --color-neutral-700: #373737;
17
- --color-neutral-800: #1f2937;
18
- --color-neutral-900: #111827;
19
- }
@@ -1,72 +0,0 @@
1
- /* Spacing Design Tokens */
2
-
3
- :root {
4
- /* Base spacing unit: 4px */
5
- --spacing-0: 0;
6
- --spacing-1: 0.25rem; /* 4px */
7
- --spacing-2: 0.5rem; /* 8px */
8
- --spacing-3: 0.75rem; /* 12px */
9
- --spacing-4: 1rem; /* 16px */
10
- --spacing-5: 1.25rem; /* 20px */
11
- --spacing-6: 1.5rem; /* 24px */
12
- --spacing-8: 2rem; /* 32px */
13
- --spacing-10: 2.5rem; /* 40px */
14
- --spacing-12: 3rem; /* 48px */
15
- --spacing-16: 4rem; /* 64px */
16
- --spacing-20: 5rem; /* 80px */
17
- --spacing-24: 6rem; /* 96px */
18
-
19
- /* Button Spacing */
20
- --button-padding-block-sm: var(--spacing-1);
21
- --button-padding-block-md: var(--spacing-2);
22
- --button-padding-block-lg: var(--spacing-3);
23
-
24
- --button-padding-inline-sm: var(--spacing-3);
25
- --button-padding-inline-md: var(--spacing-4);
26
- --button-padding-inline-lg: var(--spacing-6);
27
-
28
- /* Component Gap */
29
- --gap-xs: 0.25rem;
30
- --gap-sm: 0.5rem;
31
- --gap-md: 1rem;
32
- --gap-lg: 1.5rem;
33
- --gap-xl: 2rem;
34
-
35
- /* Border Radius - Modern & Accessible */
36
- --border-radius-none: 0;
37
- --border-radius-sm: 0.25rem; /* 4px */
38
- --border-radius-md: 0.5rem; /* 8px */
39
- --border-radius-lg: 0.75rem; /* 12px */
40
- --border-radius-xl: 1rem; /* 16px */
41
- --border-radius-2xl: 1.5rem; /* 24px */
42
- --border-radius-full: 9999px;
43
-
44
- /* Border Width */
45
- --border-width-0: 0;
46
- --border-width-1: 1px;
47
- --border-width-2: 2px;
48
- --border-width-4: 4px;
49
-
50
- /* Shadow System - Depth & Elevation */
51
- --shadow-none: none;
52
- --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
53
- --shadow-md:
54
- 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
55
- --shadow-lg:
56
- 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
57
- --shadow-xl:
58
- 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
59
- --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
60
-
61
- /* Transition & Animation */
62
- --transition-fast: 150ms;
63
- --transition-base: 300ms;
64
- --transition-slow: 500ms;
65
-
66
- /* Z-Index Scale */
67
- --z-index-dropdown: 1000;
68
- --z-index-modal-backdrop: 1040;
69
- --z-index-modal: 1050;
70
- --z-index-popover: 1060;
71
- --z-index-tooltip: 1070;
72
- }
@@ -1,44 +0,0 @@
1
- /* Typography Design Tokens */
2
-
3
- :root {
4
- /* Font Family Stack - Professional & Modern */
5
- --font-family-sans:
6
- -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Roboto,
7
- 'Helvetica Neue', Oxygen, Ubuntu, Cantarell, sans-serif;
8
- --font-family-mono: 'Courier New', Courier, monospace;
9
- --font-family-base: var(--font-family-sans);
10
-
11
- /* Font Sizes - Refined Scale */
12
- --font-size-xs: 0.75rem; /* 12px */
13
- --font-size-sm: 0.875rem; /* 14px */
14
- --font-size-md: 1rem; /* 16px */
15
- --font-size-lg: 1.125rem; /* 18px */
16
- --font-size-xl: 1.25rem; /* 20px */
17
- --font-size-2xl: 1.5rem; /* 24px */
18
- --font-size-3xl: 1.875rem; /* 30px */
19
- --font-size-xxl: 2.25rem; /* 36px */
20
-
21
- /* Font Weights - Semantic Usage */
22
- --font-weight-light: 300;
23
- --font-weight-normal: 400;
24
- --font-weight-medium: 500;
25
- --font-weight-semibold: 600;
26
- --font-weight-bold: 700;
27
- --font-weight-extrabold: 800;
28
-
29
- /* Line Heights - Improved Readability */
30
- --line-height-tight: 1.2;
31
- --line-height-normal: 1.5;
32
- --line-height-relaxed: 1.75;
33
- --line-height-loose: 2;
34
-
35
- /* Letter Spacing - Refined */
36
- --letter-spacing-tight: -0.02em;
37
- --letter-spacing-normal: 0em;
38
- --letter-spacing-wide: 0.02em;
39
-
40
- /* Text Transform */
41
- --text-transform-none: none;
42
- --text-transform-uppercase: uppercase;
43
- --text-transform-capitalize: capitalize;
44
- }