@archetypeai/ds-lib-tokens 0.4.1 → 0.5.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/package.json +1 -1
  2. package/theme.css +6 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@archetypeai/ds-lib-tokens",
3
- "version": "0.4.1",
3
+ "version": "0.5.0",
4
4
  "description": "Archetype AI Design System Tokens",
5
5
  "type": "module",
6
6
  "exports": {
package/theme.css CHANGED
@@ -49,6 +49,8 @@
49
49
  --atai-good: var(--color-atai-screen-green-300);
50
50
  --atai-warning: var(--color-atai-sunshine-yellow-50);
51
51
  --atai-critical: var(--color-atai-fire-red-500);
52
+ --atai-always-black: oklch(0 0 0);
53
+ --atai-always-white: oklch(1 0 0);
52
54
  /* Icon Strokes */
53
55
  --atai-icon-stroke-default: 1;
54
56
  --atai-icon-stroke-interactive: 1.25;
@@ -97,6 +99,8 @@
97
99
  --atai-good: var(--color-atai-screen-green-200);
98
100
  --atai-warning: var(--color-atai-sunshine-yellow-100);
99
101
  --atai-critical: var(--color-atai-fire-red-500);
102
+ --atai-always-black: oklch(0 0 0);
103
+ --atai-always-white: oklch(1 0 0);
100
104
  /* Icon stroke semantic tokens */
101
105
  --atai-icon-stroke-default: 1;
102
106
  --atai-icon-stroke-interactive: 1.25;
@@ -156,6 +160,8 @@
156
160
  --color-atai-good: var(--atai-good);
157
161
  --color-atai-warning: var(--atai-warning);
158
162
  --color-atai-critical: var(--atai-critical);
163
+ --color-atai-always-black: var(--atai-always-black);
164
+ --color-atai-always-white: var(--atai-always-white);
159
165
  --stroke-width-icon-default: var(--atai-icon-stroke-default);
160
166
  --stroke-width-icon-interactive: var(--atai-icon-stroke-interactive);
161
167
  --stroke-width-icon-status: var(--atai-icon-stroke-status);