@brightweblabs/theme 0.8.3 → 0.8.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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@brightweblabs/theme",
3
3
  "private": false,
4
- "version": "0.8.3",
4
+ "version": "0.8.4",
5
5
  "main": "./src/tint.ts",
6
6
  "types": "./src/tint.ts",
7
7
  "files": [
package/src/base.css CHANGED
@@ -1,3 +1,5 @@
1
+ @layer theme, base, components, utilities;
2
+
1
3
  /* Keep the reset layered so Tailwind utilities and component variants retain
2
4
  precedence over these element defaults. */
3
5
  @layer base {
package/src/index.css CHANGED
@@ -1,3 +1,5 @@
1
+ @layer theme, base, components, utilities;
2
+
1
3
  @import "./tokens.css";
2
4
  @import "./theme.css";
3
5
  @import "./typography.css";
package/src/surfaces.css CHANGED
@@ -1,3 +1,5 @@
1
+ @layer theme, base, components, utilities;
2
+
1
3
  /* ── Shared structural surfaces ───────────────────────────────────────── */
2
4
  /* Layered so Tailwind utilities (p-0, bg-*, …) can override per-instance.
3
5
  Unlayered, these beat @layer utilities and e.g. p-0 on the CRM table card
package/src/tokens.css CHANGED
@@ -1,3 +1,5 @@
1
+ @layer theme, base, components, utilities;
2
+
1
3
  /* ── L0: brand primitives ─────────────────────────────────────────────── */
2
4
  :root {
3
5
  color-scheme: light;
@@ -1,3 +1,5 @@
1
+ @layer theme, base, components, utilities;
2
+
1
3
  /* Legacy MQ primitive aliases for incremental consumer migration. */
2
4
  :root {
3
5
  --mq-ink-950: var(--brand-ink);