@polastack/design-system 0.1.10 → 0.1.11
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/package.json +1 -1
- package/src/styles/globals.css +6 -0
package/package.json
CHANGED
package/src/styles/globals.css
CHANGED
|
@@ -260,6 +260,9 @@
|
|
|
260
260
|
--color-tooltip-bg: var(--color-neutral-900);
|
|
261
261
|
--color-tooltip-text: #ffffff;
|
|
262
262
|
--color-skeleton: var(--color-neutral-200);
|
|
263
|
+
/* Accent surface — for selected/active nav items, highlighted rows, etc. */
|
|
264
|
+
--color-surface-accent: #E4F5F1;
|
|
265
|
+
--color-on-surface-accent: var(--color-primary-700);
|
|
263
266
|
}
|
|
264
267
|
|
|
265
268
|
.dark {
|
|
@@ -289,6 +292,9 @@
|
|
|
289
292
|
--color-tooltip-bg: var(--color-neutral-100);
|
|
290
293
|
--color-tooltip-text: var(--color-neutral-900);
|
|
291
294
|
--color-skeleton: #232327;
|
|
295
|
+
/* Accent surface — brand-tinted for selected/active states */
|
|
296
|
+
--color-surface-accent: #0F2926;
|
|
297
|
+
--color-on-surface-accent: var(--color-primary-400);
|
|
292
298
|
color-scheme: dark;
|
|
293
299
|
}
|
|
294
300
|
|