@khal-os/ui 1.0.17 → 1.0.22

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.d.cts CHANGED
@@ -898,6 +898,93 @@ declare const useThemeStore: zustand.UseBoundStore<Omit<zustand.StoreApi<ThemeSt
898
898
  };
899
899
  }>;
900
900
 
901
+ /**
902
+ * KhalOS Design Tokens — canonical, product-facing token API.
903
+ *
904
+ * Extracted from `khal-landing` (see DESIGN-SYSTEM.md in this package).
905
+ * These are the six default tokens every Khal app surface should consume,
906
+ * plus a small set of supporting tokens for OS chrome, code surfaces, and
907
+ * operational focus.
908
+ *
909
+ * The CSS equivalents are exposed in `tokens.css` under the
910
+ * "KhalOS Brand Aliases" block as `--khal-*` custom properties.
911
+ *
912
+ * NOTE: `./lp-tokens.ts` predates this file and is kept only for the
913
+ * mesh-gradient consumer. Prefer this module for new code.
914
+ */
915
+ declare const KHAL_BG = "oklch(14.48% 0.0000 89.88)";
916
+ declare const KHAL_SURFACE = "oklch(18.69% 0.0107 268.11)";
917
+ declare const KHAL_FG = "oklch(93.72% 0.0084 271.33)";
918
+ declare const KHAL_MUTED = "oklch(66.06% 0.0293 269.51)";
919
+ declare const KHAL_BORDER = "oklch(25.72% 0.0257 268.23)";
920
+ declare const KHAL_ACCENT = "oklch(71.49% 0.1112 63.09)";
921
+ declare const KHAL_CHROME = "oklch(16.86% 0.0110 268.03)";
922
+ declare const KHAL_CELL = "oklch(17.33% 0.0154 266.68)";
923
+ declare const KHAL_TERTIARY = "oklch(47.99% 0.0369 269.33)";
924
+ declare const KHAL_BORDER_STRONG = "oklch(36.17% 0.0439 266.77)";
925
+ declare const KHAL_ACCENT_BLUE = "oklch(55.73% 0.1910 256.76)";
926
+ declare const KHAL_SURFACE_LIGHT = "oklch(95.99% 0.0079 73.74)";
927
+ declare const KHAL_FONT_DISPLAY = "\"Geist\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", system-ui, sans-serif";
928
+ declare const KHAL_FONT_BODY = "\"Geist\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", system-ui, sans-serif";
929
+ declare const KHAL_FONT_MONO = "\"Geist Mono\", \"SFMono-Regular\", ui-monospace, Menlo, Consolas, monospace";
930
+ declare const KHAL_RADIUS = "10px";
931
+ declare const KHAL_RADIUS_LG = "12px";
932
+ declare const KHAL_MOTION_EASE = "cubic-bezier(0.22, 1, 0.36, 1)";
933
+ declare const KHAL_MOTION_DURATION_MS = 420;
934
+ /**
935
+ * The full canonical token set as a frozen object — handy for theming
936
+ * primitives that take a `tokens` prop, or for runtime introspection.
937
+ */
938
+ declare const KHAL_TOKENS: Readonly<{
939
+ readonly color: {
940
+ readonly bg: "oklch(14.48% 0.0000 89.88)";
941
+ readonly surface: "oklch(18.69% 0.0107 268.11)";
942
+ readonly fg: "oklch(93.72% 0.0084 271.33)";
943
+ readonly muted: "oklch(66.06% 0.0293 269.51)";
944
+ readonly border: "oklch(25.72% 0.0257 268.23)";
945
+ readonly accent: "oklch(71.49% 0.1112 63.09)";
946
+ readonly chrome: "oklch(16.86% 0.0110 268.03)";
947
+ readonly cell: "oklch(17.33% 0.0154 266.68)";
948
+ readonly tertiary: "oklch(47.99% 0.0369 269.33)";
949
+ readonly borderStrong: "oklch(36.17% 0.0439 266.77)";
950
+ readonly accentBlue: "oklch(55.73% 0.1910 256.76)";
951
+ readonly surfaceLight: "oklch(95.99% 0.0079 73.74)";
952
+ };
953
+ readonly font: {
954
+ readonly display: "\"Geist\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", system-ui, sans-serif";
955
+ readonly body: "\"Geist\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", system-ui, sans-serif";
956
+ readonly mono: "\"Geist Mono\", \"SFMono-Regular\", ui-monospace, Menlo, Consolas, monospace";
957
+ };
958
+ readonly radius: {
959
+ readonly base: "10px";
960
+ readonly lg: "12px";
961
+ };
962
+ readonly motion: {
963
+ readonly ease: "cubic-bezier(0.22, 1, 0.36, 1)";
964
+ readonly durationMs: 420;
965
+ };
966
+ }>;
967
+ type KhalTokens = typeof KHAL_TOKENS;
968
+ /**
969
+ * The six CSS custom property names that map to the canonical color
970
+ * tokens above. Use when you need to reference a token by its CSS name
971
+ * (e.g. for inline styles or a theme bridge).
972
+ */
973
+ declare const KHAL_CSS_VARS: Readonly<{
974
+ readonly bg: "--khal-bg";
975
+ readonly surface: "--khal-surface";
976
+ readonly fg: "--khal-fg";
977
+ readonly muted: "--khal-muted";
978
+ readonly border: "--khal-border";
979
+ readonly accent: "--khal-accent";
980
+ readonly chrome: "--khal-chrome";
981
+ readonly cell: "--khal-cell";
982
+ readonly tertiary: "--khal-tertiary";
983
+ readonly borderStrong: "--khal-border-strong";
984
+ readonly accentBlue: "--khal-accent-blue";
985
+ readonly surfaceLight: "--khal-surface-light";
986
+ }>;
987
+
901
988
  /**
902
989
  * LP Design Tokens — extracted from khal-landing hero-os-showcase.tsx
903
990
  * These are the canonical reference colors from the landing page.
@@ -923,4 +1010,4 @@ interface AppComponentProps {
923
1010
  meta?: Record<string, unknown>;
924
1011
  }
925
1012
 
926
- export { ACCENT_BLUE, type AppComponentProps, Avatar, type AvatarProps, BUTTON_RADIUS, Badge, Button, type ButtonProps, CELL_BG, CHROME_BG, CollapsibleSidebar, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuSeparator, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CostCounter, type CostCounterProps, DataRow, type DataRowProps, type DesktopNotifMode, type DesktopNotification, Dialog, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type FeedEvent, type FeedEventType, GlassCard, type GlassCardProps, Input, KhalLogo, ListView, LiveFeed, type LiveFeedProps, MESH_GRADIENT_PALETTE, MeshGradientInner as MeshGradient, type MeshGradientProps, MetricDisplay, type MetricDisplayProps, Note, type NotificationUrgency, NumberFlow, type NumberFlowProps, PillBadge, type PillBadgeProps, ProgressBar, type ProgressBarProps, PropertyPanel, SectionCard, SectionCardHeader, type SectionCardProps, SectionHeader, Separator, SidebarNav, Spinner, SplitPane, StatusBadge, StatusBar, StatusDot, type StatusDotProps, type StatusState, TEXT_PRIMARY, TEXT_SECONDARY, TEXT_TERTIARY, ThemeProvider, ThemeSwitcher, TickerBar, type TickerBarProps, Toggle, Toolbar, Tooltip, TooltipContent, TooltipProvider, TooltipRoot, TooltipTrigger, type TrayIcon, WINDOW_RADIUS, WIN_BG, WIN_BORDER, WIN_BORDER_FOCUSED, WindowActiveProvider, WindowMinimizedProvider, badgeVariants, buttonVariants, cn, dataRowVariants, fadeIn, fadeUp, glassCardVariants, khalEasing, metricDisplayVariants, pillBadgeVariants, progressBarVariants, scaleUp, sectionCardVariants, springConfig, staggerChild, staggerContainer, stateConfig, useNotificationStore, useReducedMotion, useSidebar, useThemeStore, useWindowActive, useWindowMinimized };
1013
+ export { ACCENT_BLUE, type AppComponentProps, Avatar, type AvatarProps, BUTTON_RADIUS, Badge, Button, type ButtonProps, CELL_BG, CHROME_BG, CollapsibleSidebar, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuSeparator, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CostCounter, type CostCounterProps, DataRow, type DataRowProps, type DesktopNotifMode, type DesktopNotification, Dialog, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type FeedEvent, type FeedEventType, GlassCard, type GlassCardProps, Input, KHAL_ACCENT, KHAL_ACCENT_BLUE, KHAL_BG, KHAL_BORDER, KHAL_BORDER_STRONG, KHAL_CELL, KHAL_CHROME, KHAL_CSS_VARS, KHAL_FG, KHAL_FONT_BODY, KHAL_FONT_DISPLAY, KHAL_FONT_MONO, KHAL_MOTION_DURATION_MS, KHAL_MOTION_EASE, KHAL_MUTED, KHAL_RADIUS, KHAL_RADIUS_LG, KHAL_SURFACE, KHAL_SURFACE_LIGHT, KHAL_TERTIARY, KHAL_TOKENS, KhalLogo, type KhalTokens, ListView, LiveFeed, type LiveFeedProps, MESH_GRADIENT_PALETTE, MeshGradientInner as MeshGradient, type MeshGradientProps, MetricDisplay, type MetricDisplayProps, Note, type NotificationUrgency, NumberFlow, type NumberFlowProps, PillBadge, type PillBadgeProps, ProgressBar, type ProgressBarProps, PropertyPanel, SectionCard, SectionCardHeader, type SectionCardProps, SectionHeader, Separator, SidebarNav, Spinner, SplitPane, StatusBadge, StatusBar, StatusDot, type StatusDotProps, type StatusState, TEXT_PRIMARY, TEXT_SECONDARY, TEXT_TERTIARY, ThemeProvider, ThemeSwitcher, TickerBar, type TickerBarProps, Toggle, Toolbar, Tooltip, TooltipContent, TooltipProvider, TooltipRoot, TooltipTrigger, type TrayIcon, WINDOW_RADIUS, WIN_BG, WIN_BORDER, WIN_BORDER_FOCUSED, WindowActiveProvider, WindowMinimizedProvider, badgeVariants, buttonVariants, cn, dataRowVariants, fadeIn, fadeUp, glassCardVariants, khalEasing, metricDisplayVariants, pillBadgeVariants, progressBarVariants, scaleUp, sectionCardVariants, springConfig, staggerChild, staggerContainer, stateConfig, useNotificationStore, useReducedMotion, useSidebar, useThemeStore, useWindowActive, useWindowMinimized };
package/dist/index.d.ts CHANGED
@@ -898,6 +898,93 @@ declare const useThemeStore: zustand.UseBoundStore<Omit<zustand.StoreApi<ThemeSt
898
898
  };
899
899
  }>;
900
900
 
901
+ /**
902
+ * KhalOS Design Tokens — canonical, product-facing token API.
903
+ *
904
+ * Extracted from `khal-landing` (see DESIGN-SYSTEM.md in this package).
905
+ * These are the six default tokens every Khal app surface should consume,
906
+ * plus a small set of supporting tokens for OS chrome, code surfaces, and
907
+ * operational focus.
908
+ *
909
+ * The CSS equivalents are exposed in `tokens.css` under the
910
+ * "KhalOS Brand Aliases" block as `--khal-*` custom properties.
911
+ *
912
+ * NOTE: `./lp-tokens.ts` predates this file and is kept only for the
913
+ * mesh-gradient consumer. Prefer this module for new code.
914
+ */
915
+ declare const KHAL_BG = "oklch(14.48% 0.0000 89.88)";
916
+ declare const KHAL_SURFACE = "oklch(18.69% 0.0107 268.11)";
917
+ declare const KHAL_FG = "oklch(93.72% 0.0084 271.33)";
918
+ declare const KHAL_MUTED = "oklch(66.06% 0.0293 269.51)";
919
+ declare const KHAL_BORDER = "oklch(25.72% 0.0257 268.23)";
920
+ declare const KHAL_ACCENT = "oklch(71.49% 0.1112 63.09)";
921
+ declare const KHAL_CHROME = "oklch(16.86% 0.0110 268.03)";
922
+ declare const KHAL_CELL = "oklch(17.33% 0.0154 266.68)";
923
+ declare const KHAL_TERTIARY = "oklch(47.99% 0.0369 269.33)";
924
+ declare const KHAL_BORDER_STRONG = "oklch(36.17% 0.0439 266.77)";
925
+ declare const KHAL_ACCENT_BLUE = "oklch(55.73% 0.1910 256.76)";
926
+ declare const KHAL_SURFACE_LIGHT = "oklch(95.99% 0.0079 73.74)";
927
+ declare const KHAL_FONT_DISPLAY = "\"Geist\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", system-ui, sans-serif";
928
+ declare const KHAL_FONT_BODY = "\"Geist\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", system-ui, sans-serif";
929
+ declare const KHAL_FONT_MONO = "\"Geist Mono\", \"SFMono-Regular\", ui-monospace, Menlo, Consolas, monospace";
930
+ declare const KHAL_RADIUS = "10px";
931
+ declare const KHAL_RADIUS_LG = "12px";
932
+ declare const KHAL_MOTION_EASE = "cubic-bezier(0.22, 1, 0.36, 1)";
933
+ declare const KHAL_MOTION_DURATION_MS = 420;
934
+ /**
935
+ * The full canonical token set as a frozen object — handy for theming
936
+ * primitives that take a `tokens` prop, or for runtime introspection.
937
+ */
938
+ declare const KHAL_TOKENS: Readonly<{
939
+ readonly color: {
940
+ readonly bg: "oklch(14.48% 0.0000 89.88)";
941
+ readonly surface: "oklch(18.69% 0.0107 268.11)";
942
+ readonly fg: "oklch(93.72% 0.0084 271.33)";
943
+ readonly muted: "oklch(66.06% 0.0293 269.51)";
944
+ readonly border: "oklch(25.72% 0.0257 268.23)";
945
+ readonly accent: "oklch(71.49% 0.1112 63.09)";
946
+ readonly chrome: "oklch(16.86% 0.0110 268.03)";
947
+ readonly cell: "oklch(17.33% 0.0154 266.68)";
948
+ readonly tertiary: "oklch(47.99% 0.0369 269.33)";
949
+ readonly borderStrong: "oklch(36.17% 0.0439 266.77)";
950
+ readonly accentBlue: "oklch(55.73% 0.1910 256.76)";
951
+ readonly surfaceLight: "oklch(95.99% 0.0079 73.74)";
952
+ };
953
+ readonly font: {
954
+ readonly display: "\"Geist\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", system-ui, sans-serif";
955
+ readonly body: "\"Geist\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", system-ui, sans-serif";
956
+ readonly mono: "\"Geist Mono\", \"SFMono-Regular\", ui-monospace, Menlo, Consolas, monospace";
957
+ };
958
+ readonly radius: {
959
+ readonly base: "10px";
960
+ readonly lg: "12px";
961
+ };
962
+ readonly motion: {
963
+ readonly ease: "cubic-bezier(0.22, 1, 0.36, 1)";
964
+ readonly durationMs: 420;
965
+ };
966
+ }>;
967
+ type KhalTokens = typeof KHAL_TOKENS;
968
+ /**
969
+ * The six CSS custom property names that map to the canonical color
970
+ * tokens above. Use when you need to reference a token by its CSS name
971
+ * (e.g. for inline styles or a theme bridge).
972
+ */
973
+ declare const KHAL_CSS_VARS: Readonly<{
974
+ readonly bg: "--khal-bg";
975
+ readonly surface: "--khal-surface";
976
+ readonly fg: "--khal-fg";
977
+ readonly muted: "--khal-muted";
978
+ readonly border: "--khal-border";
979
+ readonly accent: "--khal-accent";
980
+ readonly chrome: "--khal-chrome";
981
+ readonly cell: "--khal-cell";
982
+ readonly tertiary: "--khal-tertiary";
983
+ readonly borderStrong: "--khal-border-strong";
984
+ readonly accentBlue: "--khal-accent-blue";
985
+ readonly surfaceLight: "--khal-surface-light";
986
+ }>;
987
+
901
988
  /**
902
989
  * LP Design Tokens — extracted from khal-landing hero-os-showcase.tsx
903
990
  * These are the canonical reference colors from the landing page.
@@ -923,4 +1010,4 @@ interface AppComponentProps {
923
1010
  meta?: Record<string, unknown>;
924
1011
  }
925
1012
 
926
- export { ACCENT_BLUE, type AppComponentProps, Avatar, type AvatarProps, BUTTON_RADIUS, Badge, Button, type ButtonProps, CELL_BG, CHROME_BG, CollapsibleSidebar, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuSeparator, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CostCounter, type CostCounterProps, DataRow, type DataRowProps, type DesktopNotifMode, type DesktopNotification, Dialog, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type FeedEvent, type FeedEventType, GlassCard, type GlassCardProps, Input, KhalLogo, ListView, LiveFeed, type LiveFeedProps, MESH_GRADIENT_PALETTE, MeshGradientInner as MeshGradient, type MeshGradientProps, MetricDisplay, type MetricDisplayProps, Note, type NotificationUrgency, NumberFlow, type NumberFlowProps, PillBadge, type PillBadgeProps, ProgressBar, type ProgressBarProps, PropertyPanel, SectionCard, SectionCardHeader, type SectionCardProps, SectionHeader, Separator, SidebarNav, Spinner, SplitPane, StatusBadge, StatusBar, StatusDot, type StatusDotProps, type StatusState, TEXT_PRIMARY, TEXT_SECONDARY, TEXT_TERTIARY, ThemeProvider, ThemeSwitcher, TickerBar, type TickerBarProps, Toggle, Toolbar, Tooltip, TooltipContent, TooltipProvider, TooltipRoot, TooltipTrigger, type TrayIcon, WINDOW_RADIUS, WIN_BG, WIN_BORDER, WIN_BORDER_FOCUSED, WindowActiveProvider, WindowMinimizedProvider, badgeVariants, buttonVariants, cn, dataRowVariants, fadeIn, fadeUp, glassCardVariants, khalEasing, metricDisplayVariants, pillBadgeVariants, progressBarVariants, scaleUp, sectionCardVariants, springConfig, staggerChild, staggerContainer, stateConfig, useNotificationStore, useReducedMotion, useSidebar, useThemeStore, useWindowActive, useWindowMinimized };
1013
+ export { ACCENT_BLUE, type AppComponentProps, Avatar, type AvatarProps, BUTTON_RADIUS, Badge, Button, type ButtonProps, CELL_BG, CHROME_BG, CollapsibleSidebar, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuSeparator, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CostCounter, type CostCounterProps, DataRow, type DataRowProps, type DesktopNotifMode, type DesktopNotification, Dialog, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type FeedEvent, type FeedEventType, GlassCard, type GlassCardProps, Input, KHAL_ACCENT, KHAL_ACCENT_BLUE, KHAL_BG, KHAL_BORDER, KHAL_BORDER_STRONG, KHAL_CELL, KHAL_CHROME, KHAL_CSS_VARS, KHAL_FG, KHAL_FONT_BODY, KHAL_FONT_DISPLAY, KHAL_FONT_MONO, KHAL_MOTION_DURATION_MS, KHAL_MOTION_EASE, KHAL_MUTED, KHAL_RADIUS, KHAL_RADIUS_LG, KHAL_SURFACE, KHAL_SURFACE_LIGHT, KHAL_TERTIARY, KHAL_TOKENS, KhalLogo, type KhalTokens, ListView, LiveFeed, type LiveFeedProps, MESH_GRADIENT_PALETTE, MeshGradientInner as MeshGradient, type MeshGradientProps, MetricDisplay, type MetricDisplayProps, Note, type NotificationUrgency, NumberFlow, type NumberFlowProps, PillBadge, type PillBadgeProps, ProgressBar, type ProgressBarProps, PropertyPanel, SectionCard, SectionCardHeader, type SectionCardProps, SectionHeader, Separator, SidebarNav, Spinner, SplitPane, StatusBadge, StatusBar, StatusDot, type StatusDotProps, type StatusState, TEXT_PRIMARY, TEXT_SECONDARY, TEXT_TERTIARY, ThemeProvider, ThemeSwitcher, TickerBar, type TickerBarProps, Toggle, Toolbar, Tooltip, TooltipContent, TooltipProvider, TooltipRoot, TooltipTrigger, type TrayIcon, WINDOW_RADIUS, WIN_BG, WIN_BORDER, WIN_BORDER_FOCUSED, WindowActiveProvider, WindowMinimizedProvider, badgeVariants, buttonVariants, cn, dataRowVariants, fadeIn, fadeUp, glassCardVariants, khalEasing, metricDisplayVariants, pillBadgeVariants, progressBarVariants, scaleUp, sectionCardVariants, springConfig, staggerChild, staggerContainer, stateConfig, useNotificationStore, useReducedMotion, useSidebar, useThemeStore, useWindowActive, useWindowMinimized };
package/dist/index.js CHANGED
@@ -2366,6 +2366,70 @@ var useNotificationStore = create2()((set, get) => ({
2366
2366
  }
2367
2367
  }));
2368
2368
 
2369
+ // src/tokens/khal-os-tokens.ts
2370
+ var KHAL_BG = "oklch(14.48% 0.0000 89.88)";
2371
+ var KHAL_SURFACE = "oklch(18.69% 0.0107 268.11)";
2372
+ var KHAL_FG = "oklch(93.72% 0.0084 271.33)";
2373
+ var KHAL_MUTED = "oklch(66.06% 0.0293 269.51)";
2374
+ var KHAL_BORDER = "oklch(25.72% 0.0257 268.23)";
2375
+ var KHAL_ACCENT = "oklch(71.49% 0.1112 63.09)";
2376
+ var KHAL_CHROME = "oklch(16.86% 0.0110 268.03)";
2377
+ var KHAL_CELL = "oklch(17.33% 0.0154 266.68)";
2378
+ var KHAL_TERTIARY = "oklch(47.99% 0.0369 269.33)";
2379
+ var KHAL_BORDER_STRONG = "oklch(36.17% 0.0439 266.77)";
2380
+ var KHAL_ACCENT_BLUE = "oklch(55.73% 0.1910 256.76)";
2381
+ var KHAL_SURFACE_LIGHT = "oklch(95.99% 0.0079 73.74)";
2382
+ var KHAL_FONT_DISPLAY = '"Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif';
2383
+ var KHAL_FONT_BODY = '"Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif';
2384
+ var KHAL_FONT_MONO = '"Geist Mono", "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace';
2385
+ var KHAL_RADIUS = "10px";
2386
+ var KHAL_RADIUS_LG = "12px";
2387
+ var KHAL_MOTION_EASE = "cubic-bezier(0.22, 1, 0.36, 1)";
2388
+ var KHAL_MOTION_DURATION_MS = 420;
2389
+ var KHAL_TOKENS = Object.freeze({
2390
+ color: {
2391
+ bg: KHAL_BG,
2392
+ surface: KHAL_SURFACE,
2393
+ fg: KHAL_FG,
2394
+ muted: KHAL_MUTED,
2395
+ border: KHAL_BORDER,
2396
+ accent: KHAL_ACCENT,
2397
+ chrome: KHAL_CHROME,
2398
+ cell: KHAL_CELL,
2399
+ tertiary: KHAL_TERTIARY,
2400
+ borderStrong: KHAL_BORDER_STRONG,
2401
+ accentBlue: KHAL_ACCENT_BLUE,
2402
+ surfaceLight: KHAL_SURFACE_LIGHT
2403
+ },
2404
+ font: {
2405
+ display: KHAL_FONT_DISPLAY,
2406
+ body: KHAL_FONT_BODY,
2407
+ mono: KHAL_FONT_MONO
2408
+ },
2409
+ radius: {
2410
+ base: KHAL_RADIUS,
2411
+ lg: KHAL_RADIUS_LG
2412
+ },
2413
+ motion: {
2414
+ ease: KHAL_MOTION_EASE,
2415
+ durationMs: KHAL_MOTION_DURATION_MS
2416
+ }
2417
+ });
2418
+ var KHAL_CSS_VARS = Object.freeze({
2419
+ bg: "--khal-bg",
2420
+ surface: "--khal-surface",
2421
+ fg: "--khal-fg",
2422
+ muted: "--khal-muted",
2423
+ border: "--khal-border",
2424
+ accent: "--khal-accent",
2425
+ chrome: "--khal-chrome",
2426
+ cell: "--khal-cell",
2427
+ tertiary: "--khal-tertiary",
2428
+ borderStrong: "--khal-border-strong",
2429
+ accentBlue: "--khal-accent-blue",
2430
+ surfaceLight: "--khal-surface-light"
2431
+ });
2432
+
2369
2433
  // src/tokens/lp-tokens.ts
2370
2434
  var WIN_BG = "#111318";
2371
2435
  var CHROME_BG = "#0D0F14";
@@ -2438,6 +2502,27 @@ export {
2438
2502
  EmptyState,
2439
2503
  GlassCard,
2440
2504
  Input,
2505
+ KHAL_ACCENT,
2506
+ KHAL_ACCENT_BLUE,
2507
+ KHAL_BG,
2508
+ KHAL_BORDER,
2509
+ KHAL_BORDER_STRONG,
2510
+ KHAL_CELL,
2511
+ KHAL_CHROME,
2512
+ KHAL_CSS_VARS,
2513
+ KHAL_FG,
2514
+ KHAL_FONT_BODY,
2515
+ KHAL_FONT_DISPLAY,
2516
+ KHAL_FONT_MONO,
2517
+ KHAL_MOTION_DURATION_MS,
2518
+ KHAL_MOTION_EASE,
2519
+ KHAL_MUTED,
2520
+ KHAL_RADIUS,
2521
+ KHAL_RADIUS_LG,
2522
+ KHAL_SURFACE,
2523
+ KHAL_SURFACE_LIGHT,
2524
+ KHAL_TERTIARY,
2525
+ KHAL_TOKENS,
2441
2526
  KhalLogo,
2442
2527
  ListView,
2443
2528
  LiveFeed,