@fastwork/xosmoz-theme 0.11.0 → 0.12.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.
@@ -179,4 +179,9 @@
179
179
  --xz-color-white-alpha-800: oklch(1 0 0 / 0.8);
180
180
  --xz-color-white-alpha-900: oklch(1 0 0 / 0.9);
181
181
  --xz-color-white-alpha-1000: oklch(1 0 0 / 1);
182
+ }
183
+
184
+ [data-theme="dark"] body {
185
+ background-color: var(--xz-color-surface-100);
186
+ color: var(--xz-color-text-100);
182
187
  }
@@ -179,4 +179,9 @@
179
179
  --xz-color-white-alpha-800: oklch(1 0 0 / 0.8);
180
180
  --xz-color-white-alpha-900: oklch(1 0 0 / 0.9);
181
181
  --xz-color-white-alpha-1000: oklch(1 0 0 / 1);
182
+ }
183
+
184
+ [data-theme="light"] body {
185
+ background-color: var(--xz-color-surface-100);
186
+ color: var(--xz-color-text-100);
182
187
  }
package/dist/themes.css CHANGED
@@ -192,6 +192,11 @@
192
192
  --xz-color-white-alpha-1000: oklch(1 0 0 / 1);
193
193
  }
194
194
 
195
+ [data-theme="light"] body {
196
+ background-color: var(--xz-color-surface-100);
197
+ color: var(--xz-color-text-100);
198
+ }
199
+
195
200
  [data-theme="dark"] {
196
201
  --xz-box-shadow-100: 0 1px 2px 0 rgba(0, 0, 0, 0.24);
197
202
  --xz-box-shadow-200: 0 2px 6px 0 rgba(0, 0, 0, 0.32);
@@ -374,3 +379,8 @@
374
379
  --xz-color-white-alpha-900: oklch(1 0 0 / 0.9);
375
380
  --xz-color-white-alpha-1000: oklch(1 0 0 / 1);
376
381
  }
382
+
383
+ [data-theme="dark"] body {
384
+ background-color: var(--xz-color-surface-100);
385
+ color: var(--xz-color-text-100);
386
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fastwork/xosmoz-theme",
3
- "version": "0.11.0",
3
+ "version": "0.12.0",
4
4
  "description": "Xosmoz Theme - Design tokens and theming system for Xosmoz",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",