@floegence/floe-webapp-core 0.36.15 → 0.36.16

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.
@@ -0,0 +1,82 @@
1
+ const n = [
2
+ "default",
3
+ "vibrancy",
4
+ "mica",
5
+ "midnight",
6
+ "aurora",
7
+ "terminal"
8
+ ], a = [
9
+ {
10
+ id: "default",
11
+ label: "System",
12
+ description: "Inherits the current app theme tokens.",
13
+ preview: {
14
+ canvas: "color-mix(in srgb, var(--background, #fafafa) 92%, var(--muted, #f0f0f0) 8%)",
15
+ widget: "var(--card, #ffffff)",
16
+ accent: "var(--primary, #3b82f6)"
17
+ }
18
+ },
19
+ {
20
+ id: "vibrancy",
21
+ label: "macOS Vibrancy",
22
+ description: "Traffic-light glass windows over a soft wallpaper.",
23
+ preview: {
24
+ canvas: "linear-gradient(135deg, #d8e1f2 0%, #ead7ee 100%)",
25
+ widget: "rgba(255, 255, 255, 0.76)",
26
+ accent: "#3478f6"
27
+ }
28
+ },
29
+ {
30
+ id: "mica",
31
+ label: "Fluent Mica",
32
+ description: "Mica wallpaper bleed, taskbar chrome, ice-blue accent.",
33
+ preview: {
34
+ canvas: "linear-gradient(135deg, #eef2f7 0%, #f4e7eb 48%, #e7effc 100%)",
35
+ widget: "rgba(255, 255, 255, 0.84)",
36
+ accent: "#0078d4"
37
+ }
38
+ },
39
+ {
40
+ id: "midnight",
41
+ label: "Midnight Studio",
42
+ description: "Near-monochrome canvas, indigo accent, Geist-flavoured.",
43
+ preview: {
44
+ canvas: "#f5f5f7",
45
+ widget: "#ffffff",
46
+ accent: "#5e6ad2"
47
+ }
48
+ },
49
+ {
50
+ id: "aurora",
51
+ label: "Aurora Glass",
52
+ description: "Indigo-violet dream gradient with heavy glass.",
53
+ preview: {
54
+ canvas: "linear-gradient(135deg, #eadbfa 0%, #ffd8e2 100%)",
55
+ widget: "rgba(255, 255, 255, 0.58)",
56
+ accent: "#6366f1"
57
+ }
58
+ },
59
+ {
60
+ id: "terminal",
61
+ label: "Terminal Chic",
62
+ description: "Paper canvas, neon accent, monospace details.",
63
+ preview: {
64
+ canvas: "#f7f4ed",
65
+ widget: "#ffffff",
66
+ accent: "#d63384"
67
+ }
68
+ }
69
+ ], r = "default";
70
+ function t(e) {
71
+ return typeof e == "string" && n.includes(e);
72
+ }
73
+ function c(e) {
74
+ return a.find((i) => i.id === e) ?? a[0];
75
+ }
76
+ export {
77
+ r as DEFAULT_WORKBENCH_THEME,
78
+ a as WORKBENCH_THEMES,
79
+ n as WORKBENCH_THEME_IDS,
80
+ t as isWorkbenchThemeId,
81
+ c as workbenchThemeMeta
82
+ };