tharaday 0.7.2 → 0.7.4

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 (55) hide show
  1. package/.storybook/main.ts +1 -1
  2. package/.storybook/preview.ts +0 -2
  3. package/.storybook/vitest.setup.ts +2 -0
  4. package/dist/ds.css +1 -1
  5. package/dist/ds.js +883 -815
  6. package/dist/ds.umd.cjs +1 -1
  7. package/dist/src/components/Tree/Tree.d.ts +1 -1
  8. package/dist/src/components/Tree/Tree.stories.d.ts +1 -1
  9. package/dist/src/components/Tree/TreeItem.d.ts +1 -1
  10. package/dist/src/components/Tree/TreeItem.types.d.ts +6 -0
  11. package/package.json +8 -1
  12. package/src/components/Accordion/Accordion.test.tsx +82 -0
  13. package/src/components/Avatar/Avatar.test.tsx +36 -0
  14. package/src/components/Badge/Badge.test.tsx +15 -0
  15. package/src/components/Breadcrumbs/Breadcrumbs.test.tsx +96 -0
  16. package/src/components/Checkbox/Checkbox.module.css +8 -7
  17. package/src/components/Checkbox/Checkbox.test.tsx +68 -0
  18. package/src/components/Dropdown/Dropdown.test.tsx +104 -0
  19. package/src/components/Input/Input.test.tsx +61 -0
  20. package/src/components/List/List.module.css +12 -12
  21. package/src/components/List/List.test.tsx +46 -0
  22. package/src/components/Modal/Modal.module.css +5 -5
  23. package/src/components/Modal/Modal.test.tsx +86 -0
  24. package/src/components/NavBar/NavBar.module.css +3 -3
  25. package/src/components/Notification/Notification.module.css +6 -6
  26. package/src/components/Notification/Notification.test.tsx +38 -0
  27. package/src/components/Pagination/Pagination.test.tsx +70 -0
  28. package/src/components/ProgressBar/ProgressBar.test.tsx +58 -0
  29. package/src/components/RadioButton/RadioButton.test.tsx +51 -0
  30. package/src/components/Select/Select.test.tsx +64 -0
  31. package/src/components/Slider/Slider.test.tsx +49 -0
  32. package/src/components/Stepper/Step.module.css +2 -2
  33. package/src/components/Stepper/Stepper.test.tsx +51 -0
  34. package/src/components/Switch/Switch.test.tsx +53 -0
  35. package/src/components/Table/Table.test.tsx +78 -0
  36. package/src/components/Tabs/Tabs.test.tsx +83 -0
  37. package/src/components/Textarea/Textarea.test.tsx +56 -0
  38. package/src/components/Tooltip/Tooltip.module.css +6 -6
  39. package/src/components/Tree/Tree.test.tsx +116 -0
  40. package/src/components/Tree/Tree.tsx +65 -1
  41. package/src/components/Tree/TreeItem.module.css +20 -26
  42. package/src/components/Tree/TreeItem.tsx +144 -79
  43. package/src/components/Tree/TreeItem.types.ts +6 -0
  44. package/src/styles/ds.css +14 -9
  45. package/src/styles/palette.css +71 -0
  46. package/src/styles/themes/dark.css +35 -35
  47. package/src/styles/themes/light.css +35 -35
  48. package/src/styles/themes/retro-dark.css +35 -35
  49. package/src/styles/themes/retro-light.css +35 -35
  50. package/src/styles/themes/retro-palette.css +85 -0
  51. package/src/styles/themes/sanzo-152-dark.css +35 -35
  52. package/src/styles/themes/sanzo-152-light.css +35 -35
  53. package/src/styles/themes/sanzo-152-palette.css +66 -0
  54. package/src/styles/tokens.css +14 -224
  55. package/src/styles/semantic.css +0 -56
@@ -0,0 +1,66 @@
1
+ :root {
2
+ --sanzo-rose: #a0585e;
3
+ --sanzo-mauve: #ab6469;
4
+ --sanzo-sand: #baa28f;
5
+ --sanzo-blue-pale: #889caa;
6
+ --sanzo-blue-dark: #1f3f66;
7
+ --sanzo-blue-grayish: #4c5f6e;
8
+ --sanzo-ochre: #a97b01;
9
+ --sanzo-teal: #2f4a3a;
10
+ --sanzo-brown: #351d0b;
11
+
12
+ --sanzo-rose-50: color-mix(in srgb, var(--sanzo-rose) 30%, #ffffff);
13
+ --sanzo-rose-100: color-mix(in srgb, var(--sanzo-rose) 45%, #ffffff);
14
+ --sanzo-rose-200: color-mix(in srgb, var(--sanzo-rose) 60%, #ffffff);
15
+ --sanzo-rose-300: color-mix(in srgb, var(--sanzo-rose) 70%, #ffffff);
16
+ --sanzo-rose-400: color-mix(in srgb, var(--sanzo-rose) 85%, #ffffff);
17
+ --sanzo-rose-500: var(--sanzo-rose);
18
+ --sanzo-rose-600: color-mix(in srgb, var(--sanzo-rose) 80%, #000000);
19
+ --sanzo-rose-700: color-mix(in srgb, var(--sanzo-rose) 65%, #000000);
20
+ --sanzo-rose-800: color-mix(in srgb, var(--sanzo-rose) 50%, #000000);
21
+ --sanzo-rose-900: color-mix(in srgb, var(--sanzo-rose) 35%, #000000);
22
+
23
+ --sanzo-sand-50: color-mix(in srgb, var(--sanzo-sand) 30%, #ffffff);
24
+ --sanzo-sand-100: color-mix(in srgb, var(--sanzo-sand) 40%, #ffffff);
25
+ --sanzo-sand-200: color-mix(in srgb, var(--sanzo-sand) 50%, #ffffff);
26
+ --sanzo-sand-300: color-mix(in srgb, var(--sanzo-sand) 65%, #ffffff);
27
+ --sanzo-sand-400: color-mix(in srgb, var(--sanzo-sand) 80%, #ffffff);
28
+ --sanzo-sand-500: var(--sanzo-sand);
29
+ --sanzo-sand-600: color-mix(in srgb, var(--sanzo-sand) 75%, #000000);
30
+ --sanzo-sand-700: color-mix(in srgb, var(--sanzo-sand) 65%, #000000);
31
+ --sanzo-sand-800: color-mix(in srgb, var(--sanzo-sand) 50%, #000000);
32
+ --sanzo-sand-900: color-mix(in srgb, var(--sanzo-sand) 30%, #000000);
33
+
34
+ --sanzo-ochre-50: color-mix(in srgb, var(--sanzo-ochre) 30%, #ffffff);
35
+ --sanzo-ochre-100: color-mix(in srgb, var(--sanzo-ochre) 50%, #ffffff);
36
+ --sanzo-ochre-200: color-mix(in srgb, var(--sanzo-ochre) 60%, #ffffff);
37
+ --sanzo-ochre-300: color-mix(in srgb, var(--sanzo-ochre) 70%, #ffffff);
38
+ --sanzo-ochre-400: color-mix(in srgb, var(--sanzo-ochre) 80%, #ffffff);
39
+ --sanzo-ochre-500: var(--sanzo-ochre);
40
+ --sanzo-ochre-600: color-mix(in srgb, var(--sanzo-ochre) 75%, #000000);
41
+ --sanzo-ochre-700: color-mix(in srgb, var(--sanzo-ochre) 55%, #000000);
42
+ --sanzo-ochre-800: color-mix(in srgb, var(--sanzo-ochre) 40%, #000000);
43
+ --sanzo-ochre-900: color-mix(in srgb, var(--sanzo-ochre) 25%, #000000);
44
+
45
+ --sanzo-blue-dark-50: color-mix(in srgb, var(--sanzo-blue-dark) 50%, #ffffff);
46
+ --sanzo-blue-dark-100: color-mix(in srgb, var(--sanzo-blue-dark) 60%, #ffffff);
47
+ --sanzo-blue-dark-200: color-mix(in srgb, var(--sanzo-blue-dark) 70%, #ffffff);
48
+ --sanzo-blue-dark-300: color-mix(in srgb, var(--sanzo-blue-dark) 80%, #ffffff);
49
+ --sanzo-blue-dark-400: color-mix(in srgb, var(--sanzo-blue-dark) 90%, #ffffff);
50
+ --sanzo-blue-dark-500: var(--sanzo-blue-dark);
51
+ --sanzo-blue-dark-600: color-mix(in srgb, var(--sanzo-blue-dark) 88%, #000000);
52
+ --sanzo-blue-dark-700: color-mix(in srgb, var(--sanzo-blue-dark) 76%, #000000);
53
+ --sanzo-blue-dark-800: color-mix(in srgb, var(--sanzo-blue-dark) 64%, #000000);
54
+ --sanzo-blue-dark-900: color-mix(in srgb, var(--sanzo-blue-dark) 52%, #000000);
55
+
56
+ --sanzo-teal-50: color-mix(in srgb, var(--sanzo-teal) 25%, #ffffff);
57
+ --sanzo-teal-100: color-mix(in srgb, var(--sanzo-teal) 40%, #ffffff);
58
+ --sanzo-teal-200: color-mix(in srgb, var(--sanzo-teal) 55%, #ffffff);
59
+ --sanzo-teal-300: color-mix(in srgb, var(--sanzo-teal) 70%, #ffffff);
60
+ --sanzo-teal-400: color-mix(in srgb, var(--sanzo-teal) 85%, #ffffff);
61
+ --sanzo-teal-500: var(--sanzo-teal);
62
+ --sanzo-teal-600: color-mix(in srgb, var(--sanzo-teal) 85%, #000000);
63
+ --sanzo-teal-700: color-mix(in srgb, var(--sanzo-teal) 70%, #000000);
64
+ --sanzo-teal-800: color-mix(in srgb, var(--sanzo-teal) 55%, #000000);
65
+ --sanzo-teal-900: color-mix(in srgb, var(--sanzo-teal) 40%, #000000);
66
+ }
@@ -1,227 +1,4 @@
1
1
  :root {
2
- /* Primary palette */
3
- --grey: #72727a;
4
- --blue: #637ab3;
5
- --green: #64af76;
6
- --red: #d55a5a;
7
- --orange: #bf914f;
8
- --neutral-0: #ffffff;
9
- --neutral-50: #fafafa;
10
- --neutral-100: #f5f5f5;
11
- --neutral-200: #eeeeee;
12
- --neutral-300: #e0e0e0;
13
- --neutral-400: #a5a5ae; /* Brighter: from #9ca3af */
14
- --neutral-500: #7b7b85; /* Brighter: from #6b7280 */
15
- --neutral-600: #63636e; /* Brighter: from #4b5563 */
16
- --neutral-700: #424249; /* Brighter: from #374151 */
17
- --neutral-800: #323237; /* Brighter: from #1f2937 */
18
- --neutral-900: #242429; /* Brighter: from #111827 */
19
- --neutral-950: #09090b; /* Brighter: from #030712 */
20
-
21
- /* Info / Primary (Blue) */
22
- --blue-50: color-mix(in srgb, var(--blue) 10%, #ffffff);
23
- --blue-100: color-mix(in srgb, var(--blue) 20%, #ffffff);
24
- --blue-200: color-mix(in srgb, var(--blue) 35%, #ffffff);
25
- --blue-300: color-mix(in srgb, var(--blue) 55%, #ffffff);
26
- --blue-400: color-mix(in srgb, var(--blue) 75%, #ffffff);
27
- --blue-500: var(--blue);
28
- --blue-600: color-mix(in srgb, var(--blue) 85%, #000000);
29
- --blue-700: color-mix(in srgb, var(--blue) 70%, #000000);
30
- --blue-800: color-mix(in srgb, var(--blue) 55%, #000000);
31
- --blue-900: color-mix(in srgb, var(--blue) 40%, #000000);
32
- --blue-950: color-mix(in srgb, var(--blue) 25%, #000000);
33
-
34
- /* Success (Green) */
35
- --green-50: color-mix(in srgb, var(--green) 10%, #ffffff);
36
- --green-100: color-mix(in srgb, var(--green) 20%, #ffffff);
37
- --green-200: color-mix(in srgb, var(--green) 35%, #ffffff);
38
- --green-300: color-mix(in srgb, var(--green) 55%, #ffffff);
39
- --green-400: color-mix(in srgb, var(--green) 75%, #ffffff);
40
- --green-500: var(--green);
41
- --green-600: color-mix(in srgb, var(--green) 85%, #000000);
42
- --green-700: color-mix(in srgb, var(--green) 70%, #000000);
43
- --green-800: color-mix(in srgb, var(--green) 55%, #000000);
44
- --green-900: color-mix(in srgb, var(--green) 40%, #000000);
45
- --green-950: color-mix(in srgb, var(--green) 25%, #000000);
46
-
47
- /* Danger (Red) */
48
- --red-50: color-mix(in srgb, var(--red) 10%, #ffffff);
49
- --red-100: color-mix(in srgb, var(--red) 20%, #ffffff);
50
- --red-200: color-mix(in srgb, var(--red) 35%, #ffffff);
51
- --red-300: color-mix(in srgb, var(--red) 55%, #ffffff);
52
- --red-400: color-mix(in srgb, var(--red) 75%, #ffffff);
53
- --red-500: var(--red);
54
- --red-600: color-mix(in srgb, var(--red) 85%, #000000);
55
- --red-700: color-mix(in srgb, var(--red) 70%, #000000);
56
- --red-800: color-mix(in srgb, var(--red) 55%, #000000);
57
- --red-900: color-mix(in srgb, var(--red) 40%, #000000);
58
- --red-950: color-mix(in srgb, var(--red) 25%, #000000);
59
-
60
- /* Warning (Amber/Orange) */
61
- --orange-50: color-mix(in srgb, var(--orange) 10%, #ffffff);
62
- --orange-100: color-mix(in srgb, var(--orange) 20%, #ffffff);
63
- --orange-200: color-mix(in srgb, var(--orange) 35%, #ffffff);
64
- --orange-300: color-mix(in srgb, var(--orange) 55%, #ffffff);
65
- --orange-400: color-mix(in srgb, var(--orange) 75%, #ffffff);
66
- --orange-500: var(--orange);
67
- --orange-600: color-mix(in srgb, var(--orange) 85%, #000000);
68
- --orange-700: color-mix(in srgb, var(--orange) 70%, #000000);
69
- --orange-800: color-mix(in srgb, var(--orange) 55%, #000000);
70
- --orange-900: color-mix(in srgb, var(--orange) 40%, #000000);
71
- --orange-950: color-mix(in srgb, var(--orange) 25%, #000000);
72
-
73
- /* Retro palette */
74
- --retro-yellow: #faca78;
75
- --retro-orange: #f48028;
76
- --retro-red: #dd5544;
77
- --retro-brown: #7f5344;
78
- --retro-teal: #68c7c1;
79
- --retro-green: #787c54;
80
- --retro-gray-50: #f7f7f5;
81
- --retro-gray-100: #e3e3dc;
82
- --retro-gray-200: #cfcfc5;
83
- --retro-gray-300: #b9b9ae;
84
- --retro-gray-400: #a3a398;
85
- --retro-gray-500: #8d8d82;
86
- --retro-gray-600: #717168;
87
- --retro-gray-700: #56564f;
88
- --retro-gray-800: #3c3c37;
89
- --retro-gray-900: #21211e;
90
-
91
- /* Retro scales */
92
- --retro-yellow-50: color-mix(in srgb, var(--retro-yellow) 10%, #ffffff);
93
- --retro-yellow-100: color-mix(in srgb, var(--retro-yellow) 20%, #ffffff);
94
- --retro-yellow-200: color-mix(in srgb, var(--retro-yellow) 35%, #ffffff);
95
- --retro-yellow-300: color-mix(in srgb, var(--retro-yellow) 55%, #ffffff);
96
- --retro-yellow-400: color-mix(in srgb, var(--retro-yellow) 75%, #ffffff);
97
- --retro-yellow-500: var(--retro-yellow);
98
- --retro-yellow-600: color-mix(in srgb, var(--retro-yellow) 85%, #000000);
99
- --retro-yellow-700: color-mix(in srgb, var(--retro-yellow) 70%, #000000);
100
- --retro-yellow-800: color-mix(in srgb, var(--retro-yellow) 55%, #000000);
101
- --retro-yellow-900: color-mix(in srgb, var(--retro-yellow) 40%, #000000);
102
-
103
- --retro-orange-50: color-mix(in srgb, var(--retro-orange) 10%, #ffffff);
104
- --retro-orange-100: color-mix(in srgb, var(--retro-orange) 20%, #ffffff);
105
- --retro-orange-200: color-mix(in srgb, var(--retro-orange) 35%, #ffffff);
106
- --retro-orange-300: color-mix(in srgb, var(--retro-orange) 55%, #ffffff);
107
- --retro-orange-400: color-mix(in srgb, var(--retro-orange) 75%, #ffffff);
108
- --retro-orange-500: var(--retro-orange);
109
- --retro-orange-600: color-mix(in srgb, var(--retro-orange) 85%, #000000);
110
- --retro-orange-700: color-mix(in srgb, var(--retro-orange) 70%, #000000);
111
- --retro-orange-800: color-mix(in srgb, var(--retro-orange) 55%, #000000);
112
- --retro-orange-900: color-mix(in srgb, var(--retro-orange) 40%, #000000);
113
-
114
- --retro-brown-50: color-mix(in srgb, var(--retro-brown) 10%, #ffffff);
115
- --retro-brown-100: color-mix(in srgb, var(--retro-brown) 20%, #ffffff);
116
- --retro-brown-200: color-mix(in srgb, var(--retro-brown) 35%, #ffffff);
117
- --retro-brown-300: color-mix(in srgb, var(--retro-brown) 55%, #ffffff);
118
- --retro-brown-400: color-mix(in srgb, var(--retro-brown) 75%, #ffffff);
119
- --retro-brown-500: var(--retro-brown);
120
- --retro-brown-600: color-mix(in srgb, var(--retro-brown) 85%, #000000);
121
- --retro-brown-700: color-mix(in srgb, var(--retro-brown) 70%, #000000);
122
- --retro-brown-800: color-mix(in srgb, var(--retro-brown) 55%, #000000);
123
- --retro-brown-900: color-mix(in srgb, var(--retro-brown) 40%, #000000);
124
-
125
- --retro-teal-50: color-mix(in srgb, var(--retro-teal) 10%, #ffffff);
126
- --retro-teal-100: color-mix(in srgb, var(--retro-teal) 20%, #ffffff);
127
- --retro-teal-200: color-mix(in srgb, var(--retro-teal) 35%, #ffffff);
128
- --retro-teal-300: color-mix(in srgb, var(--retro-teal) 55%, #ffffff);
129
- --retro-teal-400: color-mix(in srgb, var(--retro-teal) 75%, #ffffff);
130
- --retro-teal-500: var(--retro-teal);
131
- --retro-teal-600: color-mix(in srgb, var(--retro-teal) 85%, #000000);
132
- --retro-teal-700: color-mix(in srgb, var(--retro-teal) 70%, #000000);
133
- --retro-teal-800: color-mix(in srgb, var(--retro-teal) 55%, #000000);
134
- --retro-teal-900: color-mix(in srgb, var(--retro-teal) 40%, #000000);
135
-
136
- --retro-green-50: color-mix(in srgb, var(--retro-green) 10%, #ffffff);
137
- --retro-green-100: color-mix(in srgb, var(--retro-green) 20%, #ffffff);
138
- --retro-green-200: color-mix(in srgb, var(--retro-green) 35%, #ffffff);
139
- --retro-green-300: color-mix(in srgb, var(--retro-green) 55%, #ffffff);
140
- --retro-green-400: color-mix(in srgb, var(--retro-green) 75%, #ffffff);
141
- --retro-green-500: var(--retro-green);
142
- --retro-green-600: color-mix(in srgb, var(--retro-green) 85%, #000000);
143
- --retro-green-700: color-mix(in srgb, var(--retro-green) 70%, #000000);
144
- --retro-green-800: color-mix(in srgb, var(--retro-green) 55%, #000000);
145
- --retro-green-900: color-mix(in srgb, var(--retro-green) 40%, #000000);
146
-
147
- --retro-red-50: color-mix(in srgb, var(--retro-red) 10%, #ffffff);
148
- --retro-red-100: color-mix(in srgb, var(--retro-red) 20%, #ffffff);
149
- --retro-red-200: color-mix(in srgb, var(--retro-red) 35%, #ffffff);
150
- --retro-red-300: color-mix(in srgb, var(--retro-red) 55%, #ffffff);
151
- --retro-red-400: color-mix(in srgb, var(--retro-red) 75%, #ffffff);
152
- --retro-red-500: var(--retro-red);
153
- --retro-red-600: color-mix(in srgb, var(--retro-red) 85%, #000000);
154
- --retro-red-700: color-mix(in srgb, var(--retro-red) 70%, #000000);
155
- --retro-red-800: color-mix(in srgb, var(--retro-red) 55%, #000000);
156
- --retro-red-900: color-mix(in srgb, var(--retro-red) 40%, #000000);
157
-
158
- /* Sanzo-152 palette */
159
- --sanzo-rose: #a0585e;
160
- --sanzo-mauve: #ab6469;
161
- --sanzo-sand: #baa28f;
162
- --sanzo-blue-pale: #889caa;
163
- --sanzo-blue-dark: #1f3f66;
164
- --sanzo-blue-grayish: #4c5f6e;
165
- --sanzo-ochre: #a97b01;
166
- --sanzo-teal: #2f4a3a;
167
- --sanzo-brown: #351d0b;
168
-
169
- /* Sanzo-152 scales (for stateful UI usage) */
170
- --sanzo-rose-50: color-mix(in srgb, var(--sanzo-rose) 30%, #ffffff);
171
- --sanzo-rose-100: color-mix(in srgb, var(--sanzo-rose) 45%, #ffffff);
172
- --sanzo-rose-200: color-mix(in srgb, var(--sanzo-rose) 60%, #ffffff);
173
- --sanzo-rose-300: color-mix(in srgb, var(--sanzo-rose) 70%, #ffffff);
174
- --sanzo-rose-400: color-mix(in srgb, var(--sanzo-rose) 85%, #ffffff);
175
- --sanzo-rose-500: var(--sanzo-rose);
176
- --sanzo-rose-600: color-mix(in srgb, var(--sanzo-rose) 80%, #000000);
177
- --sanzo-rose-700: color-mix(in srgb, var(--sanzo-rose) 65%, #000000);
178
- --sanzo-rose-800: color-mix(in srgb, var(--sanzo-rose) 50%, #000000);
179
- --sanzo-rose-900: color-mix(in srgb, var(--sanzo-rose) 35%, #000000);
180
-
181
- --sanzo-sand-50: color-mix(in srgb, var(--sanzo-sand) 30%, #ffffff);
182
- --sanzo-sand-100: color-mix(in srgb, var(--sanzo-sand) 40%, #ffffff);
183
- --sanzo-sand-200: color-mix(in srgb, var(--sanzo-sand) 50%, #ffffff);
184
- --sanzo-sand-300: color-mix(in srgb, var(--sanzo-sand) 65%, #ffffff);
185
- --sanzo-sand-400: color-mix(in srgb, var(--sanzo-sand) 80%, #ffffff);
186
- --sanzo-sand-500: var(--sanzo-sand);
187
- --sanzo-sand-600: color-mix(in srgb, var(--sanzo-sand) 75%, #000000);
188
- --sanzo-sand-700: color-mix(in srgb, var(--sanzo-sand) 65%, #000000);
189
- --sanzo-sand-800: color-mix(in srgb, var(--sanzo-sand) 50%, #000000);
190
- --sanzo-sand-900: color-mix(in srgb, var(--sanzo-sand) 30%, #000000);
191
-
192
- --sanzo-ochre-50: color-mix(in srgb, var(--sanzo-ochre) 30%, #ffffff);
193
- --sanzo-ochre-100: color-mix(in srgb, var(--sanzo-ochre) 50%, #ffffff);
194
- --sanzo-ochre-200: color-mix(in srgb, var(--sanzo-ochre) 60%, #ffffff);
195
- --sanzo-ochre-300: color-mix(in srgb, var(--sanzo-ochre) 70%, #ffffff);
196
- --sanzo-ochre-400: color-mix(in srgb, var(--sanzo-ochre) 80%, #ffffff);
197
- --sanzo-ochre-500: var(--sanzo-ochre);
198
- --sanzo-ochre-600: color-mix(in srgb, var(--sanzo-ochre) 75%, #000000);
199
- --sanzo-ochre-700: color-mix(in srgb, var(--sanzo-ochre) 55%, #000000);
200
- --sanzo-ochre-800: color-mix(in srgb, var(--sanzo-ochre) 40%, #000000);
201
- --sanzo-ochre-900: color-mix(in srgb, var(--sanzo-ochre) 25%, #000000);
202
-
203
- --sanzo-blue-dark-50: color-mix(in srgb, var(--sanzo-blue-dark) 50%, #ffffff);
204
- --sanzo-blue-dark-100: color-mix(in srgb, var(--sanzo-blue-dark) 60%, #ffffff);
205
- --sanzo-blue-dark-200: color-mix(in srgb, var(--sanzo-blue-dark) 70%, #ffffff);
206
- --sanzo-blue-dark-300: color-mix(in srgb, var(--sanzo-blue-dark) 80%, #ffffff);
207
- --sanzo-blue-dark-400: color-mix(in srgb, var(--sanzo-blue-dark) 90%, #ffffff);
208
- --sanzo-blue-dark-500: var(--sanzo-blue-dark);
209
- --sanzo-blue-dark-600: color-mix(in srgb, var(--sanzo-blue-dark) 88%, #000000);
210
- --sanzo-blue-dark-700: color-mix(in srgb, var(--sanzo-blue-dark) 76%, #000000);
211
- --sanzo-blue-dark-800: color-mix(in srgb, var(--sanzo-blue-dark) 64%, #000000);
212
- --sanzo-blue-dark-900: color-mix(in srgb, var(--sanzo-blue-dark) 52%, #000000);
213
-
214
- --sanzo-teal-50: color-mix(in srgb, var(--sanzo-teal) 25%, #ffffff);
215
- --sanzo-teal-100: color-mix(in srgb, var(--sanzo-teal) 40%, #ffffff);
216
- --sanzo-teal-200: color-mix(in srgb, var(--sanzo-teal) 55%, #ffffff);
217
- --sanzo-teal-300: color-mix(in srgb, var(--sanzo-teal) 70%, #ffffff);
218
- --sanzo-teal-400: color-mix(in srgb, var(--sanzo-teal) 85%, #ffffff);
219
- --sanzo-teal-500: var(--sanzo-teal);
220
- --sanzo-teal-600: color-mix(in srgb, var(--sanzo-teal) 85%, #000000);
221
- --sanzo-teal-700: color-mix(in srgb, var(--sanzo-teal) 70%, #000000);
222
- --sanzo-teal-800: color-mix(in srgb, var(--sanzo-teal) 55%, #000000);
223
- --sanzo-teal-900: color-mix(in srgb, var(--sanzo-teal) 40%, #000000);
224
-
225
2
  /* --- TYPOGRAPHY SCALE --- */
226
3
 
227
4
  --ds-font-family-base:
@@ -258,8 +35,19 @@
258
35
  --ds-space-14: 3.5rem; /* 56px */
259
36
  --ds-space-16: 4rem; /* 64px */
260
37
 
38
+ /* --- CONTENT WIDTH SCALE --- */
39
+
40
+ --ds-content-width-sm: 25rem; /* 400px */
41
+ --ds-content-width-md: 37.5rem; /* 600px */
42
+ --ds-content-width-lg: 50rem; /* 800px */
43
+ --ds-content-width-xl: 62.5rem; /* 1000px */
44
+ --ds-content-width-2xl: 75rem; /* 1200px */
45
+
261
46
  /* --- BORDERS & SHADOWS --- */
262
47
 
48
+ --ds-border-width: 0.0625rem; /* 1px */
49
+ --ds-border-width-2: 0.125rem; /* 2px */
50
+
263
51
  --ds-radius-sm: 0.25rem;
264
52
  --ds-radius-md: 0.5rem;
265
53
  --ds-radius-lg: 1rem;
@@ -269,7 +57,9 @@
269
57
  --ds-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
270
58
  --ds-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
271
59
 
272
- /* --- ANIMATION --- */
60
+ /* --- OVERLAY & ANIMATION --- */
61
+
62
+ --ds-overlay: rgba(0, 0, 0, 0.5);
273
63
 
274
64
  --ds-transition-fast: 150ms ease;
275
65
  --ds-transition-base: 250ms ease;
@@ -1,56 +0,0 @@
1
- :root {
2
- /* Surfaces */
3
- --ds-surface-0: var(--ds-ref-surface-0);
4
- --ds-surface-1: var(--ds-ref-surface-1);
5
- --ds-surface-2: var(--ds-ref-surface-2);
6
-
7
- /* Text */
8
- --ds-text-1: var(--ds-ref-text-1);
9
- --ds-text-2: var(--ds-ref-text-2);
10
- --ds-text-on-brand: var(--ds-ref-text-on-brand);
11
- --ds-text-disabled: var(--ds-ref-text-disabled);
12
-
13
- /* Borders */
14
- --ds-border-1: var(--ds-ref-border-1);
15
- --ds-border-2: var(--ds-ref-border-2);
16
- --ds-border-disabled: var(--ds-ref-border-disabled);
17
-
18
- /* Focus */
19
- --ds-ring: var(--ds-ref-ring);
20
- --ds-ring-offset: var(--ds-ref-ring-offset);
21
-
22
- /* Intents */
23
- --ds-info: var(--ds-ref-info);
24
- --ds-success: var(--ds-ref-success);
25
- --ds-warning: var(--ds-ref-warning);
26
- --ds-danger: var(--ds-ref-danger);
27
- --ds-neutral: var(--ds-ref-neutral);
28
-
29
- --ds-info-hover: var(--ds-ref-info-hover);
30
- --ds-info-active: var(--ds-ref-info-active);
31
- --ds-info-subtle: var(--ds-ref-info-subtle);
32
-
33
- --ds-success-hover: var(--ds-ref-success-hover);
34
- --ds-success-active: var(--ds-ref-success-active);
35
- --ds-success-subtle: var(--ds-ref-success-subtle);
36
-
37
- --ds-warning-hover: var(--ds-ref-warning-hover);
38
- --ds-warning-active: var(--ds-ref-warning-active);
39
- --ds-warning-subtle: var(--ds-ref-warning-subtle);
40
-
41
- --ds-danger-hover: var(--ds-ref-danger-hover);
42
- --ds-danger-active: var(--ds-ref-danger-active);
43
- --ds-danger-subtle: var(--ds-ref-danger-subtle);
44
-
45
- --ds-neutral-hover: var(--ds-ref-neutral-hover);
46
- --ds-neutral-active: var(--ds-ref-neutral-active);
47
- --ds-neutral-subtle: var(--ds-ref-neutral-subtle);
48
-
49
- /* Convenience defaults */
50
- --ds-border-default: var(--ds-border-1);
51
- --ds-surface-disabled: var(--ds-ref-surface-disabled);
52
-
53
- /* Skeleton */
54
- --ds-skeleton: var(--ds-ref-skeleton);
55
- --ds-skeleton-highlight: var(--ds-ref-skeleton-highlight);
56
- }