@7onic-ui/tokens 0.3.4 → 0.3.5

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/cli/sync.js CHANGED
@@ -934,7 +934,7 @@ function generateVariablesCss(tokens) {
934
934
  lines.push(``);
935
935
  lines.push(`html body {`);
936
936
  lines.push(` background-color: var(--color-background);`);
937
- lines.push(` color: var(--color-foreground);`);
937
+ lines.push(` color: var(--color-text);`);
938
938
  lines.push(` font-family: var(--font-family-sans);`);
939
939
  lines.push(` display: block;`);
940
940
  lines.push(` place-items: initial;`);
package/css/variables.css CHANGED
@@ -951,7 +951,7 @@ html:root {
951
951
 
952
952
  html body {
953
953
  background-color: var(--color-background);
954
- color: var(--foreground);
954
+ color: var(--color-text);
955
955
  font-family: var(--font-family-sans);
956
956
  display: block;
957
957
  place-items: initial;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@7onic-ui/tokens",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "Design tokens for 7onic — single source for design and code. CSS variables, Tailwind presets, JS, TypeScript",
5
5
  "author": "7onic",
6
6
  "license": "MIT",