@maracatu/estandarte 0.1.0 → 0.2.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.
Files changed (2) hide show
  1. package/dist/theme.css +7 -0
  2. package/package.json +1 -1
package/dist/theme.css CHANGED
@@ -9,6 +9,7 @@
9
9
  * - theme-aware surface/text/border tokens that flip with the `.dark` class
10
10
  * (ThemeProvider toggles it), exposed as Tailwind utilities:
11
11
  * bg-canvas / bg-elevated / bg-sidebar / bg-subtle
12
+ * bg-popover / bg-inset
12
13
  * text-primary / text-secondary / text-muted
13
14
  * border-default
14
15
  * - brand accent + the chart palette (chart-1..chart-6)
@@ -27,6 +28,8 @@
27
28
  --es-elevated: #f4f4f4;
28
29
  --es-sidebar: #f9f9f9;
29
30
  --es-subtle: #f9f9f9;
31
+ --es-popover: #ffffff; /* raised surfaces: modals, menus, popovers */
32
+ --es-inset: #f4f4f4; /* recessed surfaces: inputs inside a popover */
30
33
 
31
34
  --es-text-primary: #18181b; /* zinc-900 */
32
35
  --es-text-secondary: #71717a; /* zinc-500 */
@@ -40,6 +43,8 @@
40
43
  --es-elevated: #2f2f2f;
41
44
  --es-sidebar: #171717;
42
45
  --es-subtle: #171717;
46
+ --es-popover: #2f2f2f; /* lifts off the dark canvas */
47
+ --es-inset: #212121; /* recedes below a dark popover */
43
48
 
44
49
  --es-text-primary: #f4f4f4; /* zinc-100 */
45
50
  --es-text-secondary: #a1a1aa; /* zinc-400 */
@@ -54,6 +59,8 @@
54
59
  --color-elevated: var(--es-elevated);
55
60
  --color-sidebar: var(--es-sidebar);
56
61
  --color-subtle: var(--es-subtle);
62
+ --color-popover: var(--es-popover);
63
+ --color-inset: var(--es-inset);
57
64
 
58
65
  --color-primary: var(--es-text-primary);
59
66
  --color-secondary: var(--es-text-secondary);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maracatu/estandarte",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Estandarte — the Maracatu design system: tokens, theme, and shared React primitives.",
5
5
  "license": "MIT",
6
6
  "type": "module",