@floegence/floe-webapp-core 0.39.10 → 0.40.1

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.
@@ -6,7 +6,7 @@ export interface FloeShellThemeSelection {
6
6
  dark?: string;
7
7
  }
8
8
  export type FloeShellThemeDefaults = Partial<Record<FloeShellThemeMode, string>>;
9
- type ShellThemeTokenName = '--background' | '--foreground' | '--primary' | '--primary-foreground' | '--secondary' | '--secondary-foreground' | '--muted' | '--muted-foreground' | '--accent' | '--accent-foreground' | '--border' | '--input' | '--ring' | '--chrome-border' | '--top-bar-border' | '--activity-bar-border' | '--bottom-bar-border' | '--terminal-panel-border' | '--card' | '--card-foreground' | '--popover' | '--popover-foreground' | '--success' | '--success-foreground' | '--warning' | '--warning-foreground' | '--error' | '--error-foreground' | '--info' | '--info-foreground' | '--highlight-block-info-accent' | '--highlight-block-warning-accent' | '--highlight-block-success-accent' | '--highlight-block-error-accent' | '--highlight-block-note-accent' | '--highlight-block-tip-accent' | '--sidebar' | '--sidebar-foreground' | '--sidebar-primary' | '--sidebar-primary-foreground' | '--sidebar-accent' | '--sidebar-accent-foreground' | '--sidebar-border' | '--sidebar-ring' | '--activity-bar' | '--activity-bar-foreground' | '--activity-bar-foreground-active' | '--activity-bar-badge' | '--activity-bar-badge-foreground' | '--terminal-background' | '--terminal-foreground' | '--chart-1' | '--chart-2' | '--chart-3' | '--chart-4' | '--chart-5' | '--selection-bg' | '--selection-fg' | '--selection-on-primary-bg' | '--selection-on-primary-fg' | '--selection-code-bg' | '--selection-code-fg';
9
+ type ShellThemeTokenName = '--background' | '--foreground' | '--primary' | '--primary-foreground' | '--secondary' | '--secondary-foreground' | '--muted' | '--muted-foreground' | '--accent' | '--accent-foreground' | '--border' | '--input' | '--ring' | '--chrome-border' | '--top-bar-border' | '--activity-bar-border' | '--bottom-bar-border' | '--terminal-panel-border' | '--card' | '--card-foreground' | '--popover' | '--popover-foreground' | '--success' | '--success-foreground' | '--warning' | '--warning-foreground' | '--error' | '--error-foreground' | '--info' | '--info-foreground' | '--highlight-block-info-accent' | '--highlight-block-warning-accent' | '--highlight-block-success-accent' | '--highlight-block-error-accent' | '--highlight-block-note-accent' | '--highlight-block-tip-accent' | '--sidebar' | '--sidebar-foreground' | '--sidebar-primary' | '--sidebar-primary-foreground' | '--sidebar-accent' | '--sidebar-accent-foreground' | '--sidebar-border' | '--sidebar-ring' | '--activity-bar' | '--activity-bar-foreground' | '--activity-bar-foreground-active' | '--activity-bar-badge' | '--activity-bar-badge-foreground' | '--terminal-background' | '--terminal-foreground' | '--chart-1' | '--chart-2' | '--chart-3' | '--chart-4' | '--chart-5' | '--selection-bg' | '--selection-fg' | '--selection-on-primary-bg' | '--selection-on-primary-fg' | '--selection-code-bg' | '--selection-code-fg' | '--glow';
10
10
  export declare const REQUIRED_SHELL_THEME_TOKENS: readonly ShellThemeTokenName[];
11
11
  interface ShellThemePaletteDefinition {
12
12
  name: string;
@@ -28,6 +28,15 @@ interface ShellThemePaletteDefinition {
28
28
  selectionBackground: string;
29
29
  selectionForeground: string;
30
30
  chart: readonly [string, string, string, string, string];
31
+ /**
32
+ * Explicit glow accent color for glow/bloom effects. Optional.
33
+ *
34
+ * When omitted, the system auto-assigns based on mode:
35
+ * - Light mode: `primary` (dark ink reads as a depth accent, not harsh)
36
+ * - Dark mode: `selectionBackground` (already a theme-tuned saturated accent,
37
+ * avoids the white-bloom problem that comes from using a near-white primary)
38
+ */
39
+ glow?: string;
31
40
  syntax?: {
32
41
  comment: string;
33
42
  keyword: string;
@@ -73,7 +82,7 @@ export declare const builtInShellThemePresets: readonly [{
73
82
  colors: readonly [string, string, string, string, string];
74
83
  };
75
84
  monaco?: Partial<Record<"light" | "dark", import("./index").FloeMonacoThemeDefinition>>;
76
- }, FloeThemePreset, FloeThemePreset, FloeThemePreset, FloeThemePreset, FloeThemePreset, FloeThemePreset, FloeThemePreset, FloeThemePreset, FloeThemePreset, FloeThemePreset];
85
+ }, FloeThemePreset, FloeThemePreset, FloeThemePreset, FloeThemePreset, FloeThemePreset, FloeThemePreset, FloeThemePreset, FloeThemePreset, FloeThemePreset, FloeThemePreset, FloeThemePreset, FloeThemePreset];
77
86
  export declare const BUILT_IN_SHELL_THEME_DEFAULTS: {
78
87
  readonly light: "classic-light";
79
88
  readonly dark: "classic-dark";
@@ -61,7 +61,8 @@ const C = [
61
61
  "--selection-on-primary-bg",
62
62
  "--selection-on-primary-fg",
63
63
  "--selection-code-bg",
64
- "--selection-code-fg"
64
+ "--selection-code-fg",
65
+ "--glow"
65
66
  ], l = {
66
67
  success: "#287A4B",
67
68
  successForeground: "#FFFFFF",
@@ -73,7 +74,7 @@ const C = [
73
74
  infoForeground: "#FFFFFF",
74
75
  note: "#6847A0",
75
76
  tip: "#1E6F73"
76
- }, b = {
77
+ }, p = {
77
78
  success: "#72D39C",
78
79
  successForeground: "#07160E",
79
80
  warning: "#F0C36A",
@@ -86,7 +87,7 @@ const C = [
86
87
  tip: "#71C8C0"
87
88
  };
88
89
  function o(r) {
89
- const e = r.mode === "light" ? l : b, n = r.mode === "light" ? { background: "#F4C95D", foreground: "#243447" } : {
90
+ const e = r.mode === "light" ? l : p, n = r.mode === "light" ? { background: "#F4C95D", foreground: "#243447" } : {
90
91
  background: r.background,
91
92
  foreground: r.foreground
92
93
  }, [t, d, F, c, g] = r.chart, a = r.syntax ?? {
@@ -159,7 +160,10 @@ function o(r) {
159
160
  "--selection-on-primary-bg": n.background,
160
161
  "--selection-on-primary-fg": n.foreground,
161
162
  "--selection-code-bg": "#58A6FF",
162
- "--selection-code-fg": "#08111D"
163
+ "--selection-code-fg": "#08111D",
164
+ // Glow: light mode uses primary (dark ink as depth accent); dark mode uses
165
+ // selectionBackground so we don't inherit a near-white primary as glow source.
166
+ "--glow": r.glow ?? (r.mode === "light" ? r.primary : r.selectionBackground)
163
167
  };
164
168
  return {
165
169
  name: r.name,
@@ -237,7 +241,7 @@ function o(r) {
237
241
  tokens: r.mode === "light" ? { light: u } : { dark: u }
238
242
  };
239
243
  }
240
- const B = {
244
+ const b = {
241
245
  ...o({
242
246
  name: "classic-light",
243
247
  displayName: "Classic Light",
@@ -271,7 +275,7 @@ const B = {
271
275
  inheritsBaseTokens: !0,
272
276
  semanticTokens: s,
273
277
  tokens: void 0
274
- }, p = {
278
+ }, B = {
275
279
  ...o({
276
280
  name: "classic-dark",
277
281
  displayName: "Classic Dark",
@@ -305,8 +309,8 @@ const B = {
305
309
  inheritsBaseTokens: !0,
306
310
  semanticTokens: m,
307
311
  tokens: void 0
308
- }, k = [
309
- B,
312
+ }, E = [
313
+ b,
310
314
  o({
311
315
  name: "paper",
312
316
  displayName: "Paper",
@@ -562,7 +566,7 @@ const B = {
562
566
  constant: "#745500"
563
567
  }
564
568
  }),
565
- p,
569
+ B,
566
570
  o({
567
571
  name: "ink",
568
572
  displayName: "Ink",
@@ -817,6 +821,66 @@ const B = {
817
821
  function: "#00A4EF",
818
822
  constant: "#FFCC66"
819
823
  }
824
+ }),
825
+ o({
826
+ name: "studio",
827
+ displayName: "Studio",
828
+ description: "Deep code workspace: near-black with a crisp cool edge and zero color cast.",
829
+ mode: "dark",
830
+ background: "#0E1117",
831
+ foreground: "#E8ECF3",
832
+ card: "#161B24",
833
+ muted: "#1E2430",
834
+ mutedForeground: "#7A8899",
835
+ primary: "#E8ECF3",
836
+ primaryForeground: "#0E1117",
837
+ border: "#2A3240",
838
+ input: "#5C6E88",
839
+ sidebar: "#0B0F15",
840
+ terminalBackground: "#080C10",
841
+ terminalForeground: "#D4D8E0",
842
+ selectionBackground: "#2040A0",
843
+ selectionForeground: "#FFFFFF",
844
+ chart: ["#E8ECF3", "#7A8899", "#4E7FC4", "#4CAF80", "#E8A030"],
845
+ syntax: {
846
+ comment: "#5A6880",
847
+ keyword: "#7AB7FF",
848
+ string: "#A8C97A",
849
+ number: "#E8A838",
850
+ type: "#5DB8D8",
851
+ function: "#82B4D8",
852
+ constant: "#E88060"
853
+ }
854
+ }),
855
+ o({
856
+ name: "graphite",
857
+ displayName: "Graphite",
858
+ description: "macOS system dark: neutral warm surfaces, system-blue active state, teal and amber chart palette.",
859
+ mode: "dark",
860
+ background: "#1C1C1E",
861
+ foreground: "#F2F2F7",
862
+ card: "#2C2C2E",
863
+ muted: "#3A3A3C",
864
+ mutedForeground: "#AEAEB2",
865
+ primary: "#0070E0",
866
+ primaryForeground: "#FFFFFF",
867
+ border: "#38383A",
868
+ input: "#888888",
869
+ sidebar: "#242426",
870
+ terminalBackground: "#141416",
871
+ terminalForeground: "#E5E5EA",
872
+ selectionBackground: "#0070E0",
873
+ selectionForeground: "#FFFFFF",
874
+ chart: ["#2DD4D4", "#FF9500", "#007AFF", "#34C759", "#FF453A"],
875
+ syntax: {
876
+ comment: "#6C6C70",
877
+ keyword: "#FF375F",
878
+ string: "#34C759",
879
+ number: "#FF9F0A",
880
+ type: "#32ADE6",
881
+ function: "#0A84FF",
882
+ constant: "#BF5AF2"
883
+ }
820
884
  })
821
885
  ], D = {
822
886
  light: "classic-light",
@@ -826,7 +890,7 @@ function A(r, e) {
826
890
  const n = r.mode ?? "both";
827
891
  return n === "both" || n === e;
828
892
  }
829
- function E(r, e) {
893
+ function k(r, e) {
830
894
  return r.filter((n) => A(n, e));
831
895
  }
832
896
  function y(r) {
@@ -838,7 +902,7 @@ function y(r) {
838
902
  }
839
903
  }
840
904
  function i(r, e, n, t) {
841
- const d = E(r, e);
905
+ const d = k(r, e);
842
906
  return n && d.some((F) => F.name === n) ? n : t && d.some((F) => F.name === t) ? t : d[0]?.name;
843
907
  }
844
908
  function f(r, e, n = {}) {
@@ -849,14 +913,14 @@ function f(r, e, n = {}) {
849
913
  dark: i(e, "dark", c, n.dark)
850
914
  };
851
915
  }
852
- y(k);
916
+ y(E);
853
917
  export {
854
918
  D as BUILT_IN_SHELL_THEME_DEFAULTS,
855
919
  C as REQUIRED_SHELL_THEME_TOKENS,
856
920
  y as assertUniqueThemePresetNames,
857
- k as builtInShellThemePresets,
921
+ E as builtInShellThemePresets,
858
922
  o as createShellThemePreset,
859
- E as getShellThemePresetsForMode,
923
+ k as getShellThemePresetsForMode,
860
924
  f as normalizeShellThemeSelection,
861
925
  A as presetSupportsMode,
862
926
  i as resolveShellThemePresetName
@@ -79,7 +79,7 @@ export declare const floeColorTokenCategories: readonly [{
79
79
  readonly name: "Secondary";
80
80
  readonly variable: "--secondary";
81
81
  readonly lightValue: "hsl(36 15% 94%)";
82
- readonly darkValue: "hsl(220 25% 14%)";
82
+ readonly darkValue: "hsl(220 18% 15%)";
83
83
  readonly description: "Secondary surface color for lower-emphasis blocks.";
84
84
  }, {
85
85
  readonly name: "Secondary Foreground";
@@ -91,19 +91,19 @@ export declare const floeColorTokenCategories: readonly [{
91
91
  readonly name: "Muted";
92
92
  readonly variable: "--muted";
93
93
  readonly lightValue: "hsl(36 15% 94%)";
94
- readonly darkValue: "hsl(220 25% 14%)";
94
+ readonly darkValue: "hsl(220 16% 16%)";
95
95
  readonly description: "Muted surface color for subtle containers and fills.";
96
96
  }, {
97
97
  readonly name: "Muted Foreground";
98
98
  readonly variable: "--muted-foreground";
99
99
  readonly lightValue: "hsl(215 16% 42%)";
100
- readonly darkValue: "hsl(215 20% 60%)";
100
+ readonly darkValue: "hsl(215 16% 56%)";
101
101
  readonly description: "Secondary text color for supporting copy.";
102
102
  }, {
103
103
  readonly name: "Accent";
104
104
  readonly variable: "--accent";
105
- readonly lightValue: "hsl(34 11% 88%)";
106
- readonly darkValue: "hsl(220 25% 16%)";
105
+ readonly lightValue: "hsl(34 9% 85%)";
106
+ readonly darkValue: "hsl(220 14% 19%)";
107
107
  readonly description: "Accent surface for hover states and light emphasis.";
108
108
  }, {
109
109
  readonly name: "Accent Foreground";
@@ -119,7 +119,7 @@ export declare const floeColorTokenCategories: readonly [{
119
119
  readonly name: "Card";
120
120
  readonly variable: "--card";
121
121
  readonly lightValue: "hsl(36 100% 99%)";
122
- readonly darkValue: "hsl(222 28% 10%)";
122
+ readonly darkValue: "hsl(220 20% 13%)";
123
123
  readonly description: "Card background surface.";
124
124
  }, {
125
125
  readonly name: "Card Foreground";
@@ -131,7 +131,7 @@ export declare const floeColorTokenCategories: readonly [{
131
131
  readonly name: "Popover";
132
132
  readonly variable: "--popover";
133
133
  readonly lightValue: "hsl(36 100% 99%)";
134
- readonly darkValue: "hsl(222 28% 10%)";
134
+ readonly darkValue: "hsl(220 18% 15%)";
135
135
  readonly description: "Popover and floating panel background.";
136
136
  }, {
137
137
  readonly name: "Popover Foreground";
@@ -143,13 +143,13 @@ export declare const floeColorTokenCategories: readonly [{
143
143
  readonly name: "Border";
144
144
  readonly variable: "--border";
145
145
  readonly lightValue: "hsl(35 13% 82%)";
146
- readonly darkValue: "hsl(220 20% 18%)";
146
+ readonly darkValue: "hsl(220 16% 20%)";
147
147
  readonly description: "Default border color.";
148
148
  }, {
149
149
  readonly name: "Input";
150
150
  readonly variable: "--input";
151
151
  readonly lightValue: "hsl(37 15% 76%)";
152
- readonly darkValue: "hsl(220 25% 14%)";
152
+ readonly darkValue: "hsl(220 18% 15%)";
153
153
  readonly description: "Input border color.";
154
154
  }, {
155
155
  readonly name: "Ring";
@@ -257,7 +257,7 @@ export declare const floeColorTokenCategories: readonly [{
257
257
  readonly name: "Chrome Border";
258
258
  readonly variable: "--chrome-border";
259
259
  readonly lightValue: "hsl(33 11% 84%)";
260
- readonly darkValue: "var(--border)";
260
+ readonly darkValue: "hsl(220 16% 13%)";
261
261
  readonly description: "Default shared shell divider color.";
262
262
  }, {
263
263
  readonly name: "Top Bar Border";
@@ -290,8 +290,8 @@ export declare const floeColorTokenCategories: readonly [{
290
290
  readonly tokens: readonly [{
291
291
  readonly name: "Sidebar";
292
292
  readonly variable: "--sidebar";
293
- readonly lightValue: "hsl(36 13% 92%)";
294
- readonly darkValue: "hsl(222 28% 10%)";
293
+ readonly lightValue: "hsl(34 13% 90%)";
294
+ readonly darkValue: "hsl(221 22% 11%)";
295
295
  readonly description: "Sidebar background.";
296
296
  }, {
297
297
  readonly name: "Sidebar Foreground";
@@ -314,8 +314,8 @@ export declare const floeColorTokenCategories: readonly [{
314
314
  }, {
315
315
  readonly name: "Sidebar Accent";
316
316
  readonly variable: "--sidebar-accent";
317
- readonly lightValue: "hsl(34 11% 88%)";
318
- readonly darkValue: "hsl(220 25% 16%)";
317
+ readonly lightValue: "hsl(34 9% 84%)";
318
+ readonly darkValue: "hsl(220 14% 19%)";
319
319
  readonly description: "Accent surface used for sidebar hover and active states.";
320
320
  }, {
321
321
  readonly name: "Sidebar Accent Foreground";
@@ -326,8 +326,8 @@ export declare const floeColorTokenCategories: readonly [{
326
326
  }, {
327
327
  readonly name: "Sidebar Border";
328
328
  readonly variable: "--sidebar-border";
329
- readonly lightValue: "hsl(33 11% 84%)";
330
- readonly darkValue: "hsl(220 20% 18%)";
329
+ readonly lightValue: "hsl(33 9% 82%)";
330
+ readonly darkValue: "hsl(220 16% 13%)";
331
331
  readonly description: "Sidebar inner border color.";
332
332
  }, {
333
333
  readonly name: "Sidebar Ring";
@@ -342,20 +342,20 @@ export declare const floeColorTokenCategories: readonly [{
342
342
  readonly tokens: readonly [{
343
343
  readonly name: "Activity Bar";
344
344
  readonly variable: "--activity-bar";
345
- readonly lightValue: "hsl(36 13% 92%)";
346
- readonly darkValue: "hsl(222 30% 9%)";
345
+ readonly lightValue: "hsl(34 11% 90%)";
346
+ readonly darkValue: "hsl(222 28% 7%)";
347
347
  readonly description: "Activity bar background.";
348
348
  }, {
349
349
  readonly name: "Activity Bar Foreground";
350
350
  readonly variable: "--activity-bar-foreground";
351
- readonly lightValue: "hsl(215 16% 42%)";
352
- readonly darkValue: "hsl(215 20% 55%)";
351
+ readonly lightValue: "hsl(215 14% 46%)";
352
+ readonly darkValue: "hsl(215 16% 50%)";
353
353
  readonly description: "Default activity bar icon color.";
354
354
  }, {
355
355
  readonly name: "Activity Bar Foreground Active";
356
356
  readonly variable: "--activity-bar-foreground-active";
357
357
  readonly lightValue: "hsl(214 26% 17%)";
358
- readonly darkValue: "hsl(210 20% 98%)";
358
+ readonly darkValue: "hsl(210 20% 96%)";
359
359
  readonly description: "Active activity bar icon color.";
360
360
  }, {
361
361
  readonly name: "Activity Bar Badge";
@@ -669,7 +669,7 @@ export declare const floeDesignTokens: {
669
669
  readonly name: "Secondary";
670
670
  readonly variable: "--secondary";
671
671
  readonly lightValue: "hsl(36 15% 94%)";
672
- readonly darkValue: "hsl(220 25% 14%)";
672
+ readonly darkValue: "hsl(220 18% 15%)";
673
673
  readonly description: "Secondary surface color for lower-emphasis blocks.";
674
674
  }, {
675
675
  readonly name: "Secondary Foreground";
@@ -681,19 +681,19 @@ export declare const floeDesignTokens: {
681
681
  readonly name: "Muted";
682
682
  readonly variable: "--muted";
683
683
  readonly lightValue: "hsl(36 15% 94%)";
684
- readonly darkValue: "hsl(220 25% 14%)";
684
+ readonly darkValue: "hsl(220 16% 16%)";
685
685
  readonly description: "Muted surface color for subtle containers and fills.";
686
686
  }, {
687
687
  readonly name: "Muted Foreground";
688
688
  readonly variable: "--muted-foreground";
689
689
  readonly lightValue: "hsl(215 16% 42%)";
690
- readonly darkValue: "hsl(215 20% 60%)";
690
+ readonly darkValue: "hsl(215 16% 56%)";
691
691
  readonly description: "Secondary text color for supporting copy.";
692
692
  }, {
693
693
  readonly name: "Accent";
694
694
  readonly variable: "--accent";
695
- readonly lightValue: "hsl(34 11% 88%)";
696
- readonly darkValue: "hsl(220 25% 16%)";
695
+ readonly lightValue: "hsl(34 9% 85%)";
696
+ readonly darkValue: "hsl(220 14% 19%)";
697
697
  readonly description: "Accent surface for hover states and light emphasis.";
698
698
  }, {
699
699
  readonly name: "Accent Foreground";
@@ -709,7 +709,7 @@ export declare const floeDesignTokens: {
709
709
  readonly name: "Card";
710
710
  readonly variable: "--card";
711
711
  readonly lightValue: "hsl(36 100% 99%)";
712
- readonly darkValue: "hsl(222 28% 10%)";
712
+ readonly darkValue: "hsl(220 20% 13%)";
713
713
  readonly description: "Card background surface.";
714
714
  }, {
715
715
  readonly name: "Card Foreground";
@@ -721,7 +721,7 @@ export declare const floeDesignTokens: {
721
721
  readonly name: "Popover";
722
722
  readonly variable: "--popover";
723
723
  readonly lightValue: "hsl(36 100% 99%)";
724
- readonly darkValue: "hsl(222 28% 10%)";
724
+ readonly darkValue: "hsl(220 18% 15%)";
725
725
  readonly description: "Popover and floating panel background.";
726
726
  }, {
727
727
  readonly name: "Popover Foreground";
@@ -733,13 +733,13 @@ export declare const floeDesignTokens: {
733
733
  readonly name: "Border";
734
734
  readonly variable: "--border";
735
735
  readonly lightValue: "hsl(35 13% 82%)";
736
- readonly darkValue: "hsl(220 20% 18%)";
736
+ readonly darkValue: "hsl(220 16% 20%)";
737
737
  readonly description: "Default border color.";
738
738
  }, {
739
739
  readonly name: "Input";
740
740
  readonly variable: "--input";
741
741
  readonly lightValue: "hsl(37 15% 76%)";
742
- readonly darkValue: "hsl(220 25% 14%)";
742
+ readonly darkValue: "hsl(220 18% 15%)";
743
743
  readonly description: "Input border color.";
744
744
  }, {
745
745
  readonly name: "Ring";
@@ -847,7 +847,7 @@ export declare const floeDesignTokens: {
847
847
  readonly name: "Chrome Border";
848
848
  readonly variable: "--chrome-border";
849
849
  readonly lightValue: "hsl(33 11% 84%)";
850
- readonly darkValue: "var(--border)";
850
+ readonly darkValue: "hsl(220 16% 13%)";
851
851
  readonly description: "Default shared shell divider color.";
852
852
  }, {
853
853
  readonly name: "Top Bar Border";
@@ -880,8 +880,8 @@ export declare const floeDesignTokens: {
880
880
  readonly tokens: readonly [{
881
881
  readonly name: "Sidebar";
882
882
  readonly variable: "--sidebar";
883
- readonly lightValue: "hsl(36 13% 92%)";
884
- readonly darkValue: "hsl(222 28% 10%)";
883
+ readonly lightValue: "hsl(34 13% 90%)";
884
+ readonly darkValue: "hsl(221 22% 11%)";
885
885
  readonly description: "Sidebar background.";
886
886
  }, {
887
887
  readonly name: "Sidebar Foreground";
@@ -904,8 +904,8 @@ export declare const floeDesignTokens: {
904
904
  }, {
905
905
  readonly name: "Sidebar Accent";
906
906
  readonly variable: "--sidebar-accent";
907
- readonly lightValue: "hsl(34 11% 88%)";
908
- readonly darkValue: "hsl(220 25% 16%)";
907
+ readonly lightValue: "hsl(34 9% 84%)";
908
+ readonly darkValue: "hsl(220 14% 19%)";
909
909
  readonly description: "Accent surface used for sidebar hover and active states.";
910
910
  }, {
911
911
  readonly name: "Sidebar Accent Foreground";
@@ -916,8 +916,8 @@ export declare const floeDesignTokens: {
916
916
  }, {
917
917
  readonly name: "Sidebar Border";
918
918
  readonly variable: "--sidebar-border";
919
- readonly lightValue: "hsl(33 11% 84%)";
920
- readonly darkValue: "hsl(220 20% 18%)";
919
+ readonly lightValue: "hsl(33 9% 82%)";
920
+ readonly darkValue: "hsl(220 16% 13%)";
921
921
  readonly description: "Sidebar inner border color.";
922
922
  }, {
923
923
  readonly name: "Sidebar Ring";
@@ -932,20 +932,20 @@ export declare const floeDesignTokens: {
932
932
  readonly tokens: readonly [{
933
933
  readonly name: "Activity Bar";
934
934
  readonly variable: "--activity-bar";
935
- readonly lightValue: "hsl(36 13% 92%)";
936
- readonly darkValue: "hsl(222 30% 9%)";
935
+ readonly lightValue: "hsl(34 11% 90%)";
936
+ readonly darkValue: "hsl(222 28% 7%)";
937
937
  readonly description: "Activity bar background.";
938
938
  }, {
939
939
  readonly name: "Activity Bar Foreground";
940
940
  readonly variable: "--activity-bar-foreground";
941
- readonly lightValue: "hsl(215 16% 42%)";
942
- readonly darkValue: "hsl(215 20% 55%)";
941
+ readonly lightValue: "hsl(215 14% 46%)";
942
+ readonly darkValue: "hsl(215 16% 50%)";
943
943
  readonly description: "Default activity bar icon color.";
944
944
  }, {
945
945
  readonly name: "Activity Bar Foreground Active";
946
946
  readonly variable: "--activity-bar-foreground-active";
947
947
  readonly lightValue: "hsl(214 26% 17%)";
948
- readonly darkValue: "hsl(210 20% 98%)";
948
+ readonly darkValue: "hsl(210 20% 96%)";
949
949
  readonly description: "Active activity bar icon color.";
950
950
  }, {
951
951
  readonly name: "Activity Bar Badge";
@@ -2,7 +2,7 @@ const r = {
2
2
  "--radius": "0.375rem",
3
3
  "--font-sans": "'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif",
4
4
  "--font-mono": "'JetBrains Mono', 'Fira Code', 'SF Mono', Menlo, Monaco, Consolas, monospace"
5
- }, i = [
5
+ }, l = [
6
6
  {
7
7
  name: "Base Colors",
8
8
  description: "Primary application surfaces and text colors.",
@@ -39,7 +39,7 @@ const r = {
39
39
  name: "Secondary",
40
40
  variable: "--secondary",
41
41
  lightValue: "hsl(36 15% 94%)",
42
- darkValue: "hsl(220 25% 14%)",
42
+ darkValue: "hsl(220 18% 15%)",
43
43
  description: "Secondary surface color for lower-emphasis blocks."
44
44
  },
45
45
  {
@@ -53,21 +53,21 @@ const r = {
53
53
  name: "Muted",
54
54
  variable: "--muted",
55
55
  lightValue: "hsl(36 15% 94%)",
56
- darkValue: "hsl(220 25% 14%)",
56
+ darkValue: "hsl(220 16% 16%)",
57
57
  description: "Muted surface color for subtle containers and fills."
58
58
  },
59
59
  {
60
60
  name: "Muted Foreground",
61
61
  variable: "--muted-foreground",
62
62
  lightValue: "hsl(215 16% 42%)",
63
- darkValue: "hsl(215 20% 60%)",
63
+ darkValue: "hsl(215 16% 56%)",
64
64
  description: "Secondary text color for supporting copy."
65
65
  },
66
66
  {
67
67
  name: "Accent",
68
68
  variable: "--accent",
69
- lightValue: "hsl(34 11% 88%)",
70
- darkValue: "hsl(220 25% 16%)",
69
+ lightValue: "hsl(34 9% 85%)",
70
+ darkValue: "hsl(220 14% 19%)",
71
71
  description: "Accent surface for hover states and light emphasis."
72
72
  },
73
73
  {
@@ -87,7 +87,7 @@ const r = {
87
87
  name: "Card",
88
88
  variable: "--card",
89
89
  lightValue: "hsl(36 100% 99%)",
90
- darkValue: "hsl(222 28% 10%)",
90
+ darkValue: "hsl(220 20% 13%)",
91
91
  description: "Card background surface."
92
92
  },
93
93
  {
@@ -101,7 +101,7 @@ const r = {
101
101
  name: "Popover",
102
102
  variable: "--popover",
103
103
  lightValue: "hsl(36 100% 99%)",
104
- darkValue: "hsl(222 28% 10%)",
104
+ darkValue: "hsl(220 18% 15%)",
105
105
  description: "Popover and floating panel background."
106
106
  },
107
107
  {
@@ -115,14 +115,14 @@ const r = {
115
115
  name: "Border",
116
116
  variable: "--border",
117
117
  lightValue: "hsl(35 13% 82%)",
118
- darkValue: "hsl(220 20% 18%)",
118
+ darkValue: "hsl(220 16% 20%)",
119
119
  description: "Default border color."
120
120
  },
121
121
  {
122
122
  name: "Input",
123
123
  variable: "--input",
124
124
  lightValue: "hsl(37 15% 76%)",
125
- darkValue: "hsl(220 25% 14%)",
125
+ darkValue: "hsl(220 18% 15%)",
126
126
  description: "Input border color."
127
127
  },
128
128
  {
@@ -252,7 +252,7 @@ const r = {
252
252
  name: "Chrome Border",
253
253
  variable: "--chrome-border",
254
254
  lightValue: "hsl(33 11% 84%)",
255
- darkValue: "var(--border)",
255
+ darkValue: "hsl(220 16% 13%)",
256
256
  description: "Default shared shell divider color."
257
257
  },
258
258
  {
@@ -292,8 +292,8 @@ const r = {
292
292
  {
293
293
  name: "Sidebar",
294
294
  variable: "--sidebar",
295
- lightValue: "hsl(36 13% 92%)",
296
- darkValue: "hsl(222 28% 10%)",
295
+ lightValue: "hsl(34 13% 90%)",
296
+ darkValue: "hsl(221 22% 11%)",
297
297
  description: "Sidebar background."
298
298
  },
299
299
  {
@@ -320,8 +320,8 @@ const r = {
320
320
  {
321
321
  name: "Sidebar Accent",
322
322
  variable: "--sidebar-accent",
323
- lightValue: "hsl(34 11% 88%)",
324
- darkValue: "hsl(220 25% 16%)",
323
+ lightValue: "hsl(34 9% 84%)",
324
+ darkValue: "hsl(220 14% 19%)",
325
325
  description: "Accent surface used for sidebar hover and active states."
326
326
  },
327
327
  {
@@ -334,8 +334,8 @@ const r = {
334
334
  {
335
335
  name: "Sidebar Border",
336
336
  variable: "--sidebar-border",
337
- lightValue: "hsl(33 11% 84%)",
338
- darkValue: "hsl(220 20% 18%)",
337
+ lightValue: "hsl(33 9% 82%)",
338
+ darkValue: "hsl(220 16% 13%)",
339
339
  description: "Sidebar inner border color."
340
340
  },
341
341
  {
@@ -354,22 +354,22 @@ const r = {
354
354
  {
355
355
  name: "Activity Bar",
356
356
  variable: "--activity-bar",
357
- lightValue: "hsl(36 13% 92%)",
358
- darkValue: "hsl(222 30% 9%)",
357
+ lightValue: "hsl(34 11% 90%)",
358
+ darkValue: "hsl(222 28% 7%)",
359
359
  description: "Activity bar background."
360
360
  },
361
361
  {
362
362
  name: "Activity Bar Foreground",
363
363
  variable: "--activity-bar-foreground",
364
- lightValue: "hsl(215 16% 42%)",
365
- darkValue: "hsl(215 20% 55%)",
364
+ lightValue: "hsl(215 14% 46%)",
365
+ darkValue: "hsl(215 16% 50%)",
366
366
  description: "Default activity bar icon color."
367
367
  },
368
368
  {
369
369
  name: "Activity Bar Foreground Active",
370
370
  variable: "--activity-bar-foreground-active",
371
371
  lightValue: "hsl(214 26% 17%)",
372
- darkValue: "hsl(210 20% 98%)",
372
+ darkValue: "hsl(210 20% 96%)",
373
373
  description: "Active activity bar icon color."
374
374
  },
375
375
  {
@@ -497,7 +497,7 @@ const r = {
497
497
  }
498
498
  ]
499
499
  }
500
- ], l = [
500
+ ], i = [
501
501
  {
502
502
  name: "Text XS",
503
503
  size: "11px",
@@ -615,7 +615,7 @@ const r = {
615
615
  usage: "Neon and emphasis effects",
616
616
  description: "Pulsing glow animation for elevated emphasis."
617
617
  }
618
- ], d = i.reduce((a, e) => (a.push(...e.tokens), a), []);
618
+ ], d = l.reduce((a, e) => (a.push(...e.tokens), a), []);
619
619
  function o(a) {
620
620
  return Object.fromEntries(
621
621
  d.map((e) => [
@@ -632,8 +632,8 @@ function h(a, e) {
632
632
  return u[e][a];
633
633
  }
634
634
  const g = {
635
- colors: i,
636
- typography: l,
635
+ colors: l,
636
+ typography: i,
637
637
  fonts: n,
638
638
  spacing: s,
639
639
  radius: t,
@@ -641,7 +641,7 @@ const g = {
641
641
  shared: r
642
642
  };
643
643
  export {
644
- i as floeColorTokenCategories,
644
+ l as floeColorTokenCategories,
645
645
  g as floeDesignTokens,
646
646
  n as floeFontFamilyTokens,
647
647
  c as floeMotionTokens,
@@ -649,6 +649,6 @@ export {
649
649
  r as floeSharedCssVariables,
650
650
  s as floeSpacingTokens,
651
651
  u as floeThemeColorVariables,
652
- l as floeTypographyTokens,
652
+ i as floeTypographyTokens,
653
653
  h as getFloeColorTokenValue
654
654
  };