@khal-os/ui 1.0.23 → 1.0.24
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/dist/index.cjs +22 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +13 -1
- package/dist/index.d.ts +13 -1
- package/dist/index.js +18 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/tokens.css +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khal-os/ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.24",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"react": ">=19",
|
|
30
30
|
"next-themes": ">=0.4",
|
|
31
31
|
"zustand": ">=4",
|
|
32
|
-
"@khal-os/sdk": "1.0.
|
|
32
|
+
"@khal-os/sdk": "1.0.28"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@number-flow/react": "^0.6.0",
|
package/tokens.css
CHANGED
|
@@ -210,6 +210,7 @@
|
|
|
210
210
|
When light-mode is added, the names stay the same and the values flip.
|
|
211
211
|
*/
|
|
212
212
|
|
|
213
|
+
/* --- KHAL_TOKENS:BEGIN --- */
|
|
213
214
|
/* ── Canonical six ─────────────────────────────────────────────────────── */
|
|
214
215
|
--khal-bg: oklch(14.48% 0 89.88); /* source #0A0A0A */
|
|
215
216
|
--khal-surface: oklch(18.69% 0.0107 268.11); /* source #111318 */
|
|
@@ -225,6 +226,9 @@
|
|
|
225
226
|
--khal-border-strong: oklch(36.17% 0.0439 266.77); /* source #333D55 */
|
|
226
227
|
--khal-accent-blue: oklch(55.73% 0.191 256.76); /* source #0A6FE0 */
|
|
227
228
|
--khal-surface-light: oklch(95.99% 0.0079 73.74); /* source #F5F1EC */
|
|
229
|
+
--khal-accent-hover: oklch(78% 0.1 63.09); /* accent hover state */
|
|
230
|
+
--khal-accent-glow: oklch(71.49% 0.1112 63.09 / 0.2); /* accent halo / focus ring */
|
|
231
|
+
--khal-error: oklch(63.7% 0.231 25.3); /* semantic error / destructive */
|
|
228
232
|
|
|
229
233
|
/* ── Typography stacks ─────────────────────────────────────────────────── */
|
|
230
234
|
--khal-font-display: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
|
|
@@ -233,9 +237,11 @@
|
|
|
233
237
|
|
|
234
238
|
/* ── Radii + motion ────────────────────────────────────────────────────── */
|
|
235
239
|
--khal-radius: 10px;
|
|
240
|
+
--khal-radius-sm: 8px;
|
|
236
241
|
--khal-radius-lg: 12px;
|
|
237
242
|
--khal-motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
|
|
238
243
|
--khal-motion-duration: 420ms;
|
|
244
|
+
/* --- KHAL_TOKENS:END --- */
|
|
239
245
|
}
|
|
240
246
|
|
|
241
247
|
/* ═══════════════════════════════════════════════════════════════════════════
|