@floegence/floe-webapp-core 0.39.10 → 0.40.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.
@@ -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",
@@ -89,12 +90,12 @@ function o(r) {
89
90
  const e = r.mode === "light" ? l : b, n = r.mode === "light" ? { background: "#F4C95D", foreground: "#243447" } : {
90
91
  background: r.background,
91
92
  foreground: r.foreground
92
- }, [t, d, F, c, g] = r.chart, a = r.syntax ?? {
93
+ }, [t, F, d, c, g] = r.chart, a = r.syntax ?? {
93
94
  comment: r.mutedForeground,
94
95
  keyword: t,
95
- string: d,
96
+ string: F,
96
97
  number: c,
97
- type: F,
98
+ type: d,
98
99
  function: g,
99
100
  constant: c
100
101
  }, u = {
@@ -150,8 +151,8 @@ function o(r) {
150
151
  "--terminal-background": r.terminalBackground,
151
152
  "--terminal-foreground": r.terminalForeground,
152
153
  "--chart-1": t,
153
- "--chart-2": d,
154
- "--chart-3": F,
154
+ "--chart-2": F,
155
+ "--chart-3": d,
155
156
  "--chart-4": c,
156
157
  "--chart-5": g,
157
158
  "--selection-bg": r.selectionBackground,
@@ -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 p = {
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
+ }, A = [
313
+ p,
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,17 +821,77 @@ const B = {
817
821
  function: "#00A4EF",
818
822
  constant: "#FFCC66"
819
823
  }
824
+ }),
825
+ o({
826
+ name: "studio",
827
+ displayName: "Studio",
828
+ description: "Near-black canvas with subtle violet cast for deep focus sessions.",
829
+ mode: "dark",
830
+ background: "#111116",
831
+ foreground: "#E2E2EC",
832
+ card: "#18181F",
833
+ muted: "#20202B",
834
+ mutedForeground: "#8888A8",
835
+ primary: "#9580FF",
836
+ primaryForeground: "#111116",
837
+ border: "#2A2A3C",
838
+ input: "#7070A8",
839
+ sidebar: "#13131A",
840
+ terminalBackground: "#0C0C12",
841
+ terminalForeground: "#D8D8E8",
842
+ selectionBackground: "#4840A0",
843
+ selectionForeground: "#FFFFFF",
844
+ chart: ["#9580FF", "#79D5F7", "#8BE08E", "#F0C060", "#F06090"],
845
+ syntax: {
846
+ comment: "#6868A0",
847
+ keyword: "#FF79C6",
848
+ string: "#8BE08E",
849
+ number: "#F0C060",
850
+ type: "#79D5F7",
851
+ function: "#9580FF",
852
+ constant: "#F06090"
853
+ }
854
+ }),
855
+ o({
856
+ name: "graphite",
857
+ displayName: "Graphite",
858
+ description: "Pure neutral dark surfaces with macOS system blue for operations.",
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: ["#0A84FF", "#32ADE6", "#34C759", "#FF9F0A", "#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",
823
887
  dark: "classic-dark"
824
888
  };
825
- function A(r, e) {
889
+ function k(r, e) {
826
890
  const n = r.mode ?? "both";
827
891
  return n === "both" || n === e;
828
892
  }
829
893
  function E(r, e) {
830
- return r.filter((n) => A(n, e));
894
+ return r.filter((n) => k(n, e));
831
895
  }
832
896
  function y(r) {
833
897
  const e = /* @__PURE__ */ new Set();
@@ -838,26 +902,26 @@ function y(r) {
838
902
  }
839
903
  }
840
904
  function i(r, e, n, t) {
841
- const d = E(r, e);
842
- return n && d.some((F) => F.name === n) ? n : t && d.some((F) => F.name === t) ? t : d[0]?.name;
905
+ const F = E(r, e);
906
+ return n && F.some((d) => d.name === n) ? n : t && F.some((d) => d.name === t) ? t : F[0]?.name;
843
907
  }
844
908
  function f(r, e, n = {}) {
845
- const t = typeof r == "object" && r !== null && !Array.isArray(r) ? r : void 0, d = t?.version === 1, F = d && typeof t.light == "string" ? t.light : void 0, c = d && typeof t.dark == "string" ? t.dark : void 0;
909
+ const t = typeof r == "object" && r !== null && !Array.isArray(r) ? r : void 0, F = t?.version === 1, d = F && typeof t.light == "string" ? t.light : void 0, c = F && typeof t.dark == "string" ? t.dark : void 0;
846
910
  return {
847
911
  version: 1,
848
- light: i(e, "light", F, n.light),
912
+ light: i(e, "light", d, n.light),
849
913
  dark: i(e, "dark", c, n.dark)
850
914
  };
851
915
  }
852
- y(k);
916
+ y(A);
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
+ A as builtInShellThemePresets,
858
922
  o as createShellThemePreset,
859
923
  E as getShellThemePresetsForMode,
860
924
  f as normalizeShellThemeSelection,
861
- A as presetSupportsMode,
925
+ k as presetSupportsMode,
862
926
  i as resolveShellThemePresetName
863
927
  };
@@ -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";