@matteoaliano/forest-ui 0.2.10 → 0.2.11

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/bin/sync.mjs CHANGED
@@ -14,12 +14,12 @@
14
14
  * .antigravity/rules.md — Antigravity
15
15
  *
16
16
  * Guideline categories:
17
- * - FOREST_AI_GUIDELINES.md — Design system components, tokens, patterns
18
- * - FOREST_DEV_GUIDELINES.md Development best practices
19
- * - themes/FOREST_THEME_<NAME>.md Theme-specific guidelines (auto-discovered)
17
+ * - FOREST_UI_GUIDELINES.md — Design system components, tokens, patterns
18
+ * - FOREST_FE_GUIDELINES.md Next.js frontend best practices
19
+ * - FOREST_BE_GUIDELINES.md FastAPI backend best practices
20
20
  */
21
21
 
22
- import { readFileSync, writeFileSync, mkdirSync, existsSync, readdirSync } from "node:fs";
22
+ import { readFileSync, writeFileSync, mkdirSync, existsSync } from "node:fs";
23
23
  import { resolve, dirname, basename } from "node:path";
24
24
  import { fileURLToPath } from "node:url";
25
25
 
@@ -30,48 +30,32 @@ const pkgPath = resolve(__dirname, "..", "package.json");
30
30
  const pkgVersion = JSON.parse(readFileSync(pkgPath, "utf-8")).version;
31
31
 
32
32
  const guidelinesDir = resolve(__dirname, "..", "guidelines");
33
- const themesDir = resolve(guidelinesDir, "themes");
34
33
 
35
34
  // Static guideline entries
36
35
  const staticEntries = [
37
36
  {
38
- source: resolve(guidelinesDir, "FOREST_AI_GUIDELINES.md"),
37
+ source: resolve(guidelinesDir, "FOREST_UI_GUIDELINES.md"),
39
38
  claudeName: "forest-ui.md",
40
39
  geminiName: "forest-ui.md",
41
40
  cursorName: "forest-ui.mdc",
42
41
  cursorDescription: "Forest UI Design System guidelines — components, tokens, and patterns",
43
42
  },
44
43
  {
45
- source: resolve(guidelinesDir, "FOREST_DEV_GUIDELINES.md"),
46
- claudeName: "forest-dev.md",
47
- geminiName: "forest-dev.md",
48
- cursorName: "forest-dev.mdc",
49
- cursorDescription: "Forest UI development best practices",
44
+ source: resolve(guidelinesDir, "FOREST_FE_GUIDELINES.md"),
45
+ claudeName: "forest-fe.md",
46
+ geminiName: "forest-fe.md",
47
+ cursorName: "forest-fe.mdc",
48
+ cursorDescription: "Next.js frontend best practices",
49
+ },
50
+ {
51
+ source: resolve(guidelinesDir, "FOREST_BE_GUIDELINES.md"),
52
+ claudeName: "forest-be.md",
53
+ geminiName: "forest-be.md",
54
+ cursorName: "forest-be.mdc",
55
+ cursorDescription: "FastAPI backend requirements and best practices",
50
56
  },
51
57
  ];
52
58
 
53
- // Auto-discover theme files from guidelines/themes/
54
- function discoverThemeEntries() {
55
- if (!existsSync(themesDir)) return [];
56
-
57
- return readdirSync(themesDir)
58
- .filter((f) => /^FOREST_THEME_\w+\.md$/.test(f))
59
- .map((f) => {
60
- const themeName = f
61
- .replace(/^FOREST_THEME_/, "")
62
- .replace(/\.md$/, "")
63
- .toLowerCase();
64
-
65
- return {
66
- source: resolve(themesDir, f),
67
- claudeName: `forest-theme-${themeName}.md`,
68
- geminiName: `forest-theme-${themeName}.md`,
69
- cursorName: `forest-theme-${themeName}.mdc`,
70
- cursorDescription: `Forest UI theme guidelines — ${themeName}`,
71
- };
72
- });
73
- }
74
-
75
59
  // Find the consuming project root (walk up until we find package.json)
76
60
  function findProjectRoot(startDir) {
77
61
  let dir = startDir;
@@ -90,7 +74,7 @@ function findProjectRoot(startDir) {
90
74
  }
91
75
 
92
76
  const projectRoot = findProjectRoot(process.cwd());
93
- const entries = [...staticEntries, ...discoverThemeEntries()];
77
+ const entries = [...staticEntries];
94
78
 
95
79
  console.log(`\n🌲 Forest UI — Syncing AI guidelines\n`);
96
80
  console.log(` Project root: ${projectRoot}`);
@@ -94,14 +94,19 @@ var colors = {
94
94
  950: "#102a56"
95
95
  },
96
96
  teal: {
97
+ 50: "#f0fdf9",
97
98
  100: "#ccfbef",
98
99
  200: "#99f6e0",
100
+ 300: "#5fe9d0",
101
+ 400: "#2ed3b7",
99
102
  600: "#0e9384",
100
103
  700: "#107569"
101
104
  },
102
105
  orange: {
103
106
  100: "#fdead7",
104
107
  200: "#f9dbaf",
108
+ 300: "#f7b27a",
109
+ 400: "#f38744",
105
110
  600: "#e04f16",
106
111
  700: "#b93815"
107
112
  },
@@ -114,24 +119,31 @@ var colors = {
114
119
  pink: {
115
120
  100: "#fce7f6",
116
121
  200: "#fcceee",
122
+ 400: "#f670c7",
123
+ 500: "#ee46bc",
117
124
  600: "#dd2590",
118
125
  700: "#c11574"
119
126
  },
120
127
  fuchsia: {
121
128
  100: "#fbe8ff",
122
129
  200: "#f6d0fe",
130
+ 400: "#e478fa",
131
+ 500: "#d444f1",
123
132
  600: "#ba24d5",
124
133
  700: "#9f1ab1"
125
134
  },
126
135
  orangeDark: {
127
136
  100: "#ffe6d5",
128
137
  200: "#ffd6ae",
138
+ 400: "#ff692e",
139
+ 500: "#ff4405",
129
140
  600: "#e62e05",
130
141
  700: "#bc1b06"
131
142
  },
132
143
  green: {
133
144
  100: "#d3f8df",
134
145
  200: "#aaf0c4",
146
+ 500: "#16b364",
135
147
  600: "#099250",
136
148
  700: "#087443"
137
149
  },
@@ -140,6 +152,30 @@ var colors = {
140
152
  200: "#c7d7fe",
141
153
  600: "#444ce7",
142
154
  700: "#3538cd"
155
+ },
156
+ violet: {
157
+ 100: "#ece9fe",
158
+ 200: "#ddd6fe",
159
+ 500: "#875bf7",
160
+ 600: "#7839ee"
161
+ },
162
+ rose: {
163
+ 100: "#ffe4e8",
164
+ 200: "#fecdd6",
165
+ 400: "#fd6f8e",
166
+ 500: "#f63d68"
167
+ },
168
+ blueLight: {
169
+ 100: "#e0f2fe",
170
+ 200: "#b9e6fe",
171
+ 400: "#36bffa",
172
+ 500: "#0ba5ec"
173
+ },
174
+ cyan: {
175
+ 100: "#cff9fe",
176
+ 200: "#a5f0fc",
177
+ 600: "#088ab2",
178
+ 700: "#0e7090"
143
179
  }
144
180
  };
145
181
  var spacing = {
@@ -436,7 +472,7 @@ var toggleColors = {
436
472
  buttonFgDisabled: colors.gray[50]
437
473
  };
438
474
  var chartColors = {
439
- axisFg: colors.gray[200],
475
+ axisFg: colors.gray[100],
440
476
  gridlineFg: colors.gray[100],
441
477
  labelFg: colors.gray[600],
442
478
  labelFgEmphasis: colors.gray[700],
@@ -446,31 +482,19 @@ var chartColors = {
446
482
  tooltipFg: colors.base.white,
447
483
  crosshairFg: colors.gray[500],
448
484
  legendFg: text.tertiary,
449
- categorical: [
450
- "#7B61FF",
451
- "#FF7E67",
452
- "#76DFD5",
453
- "#F6C343",
454
- "#B36A6F",
455
- "#71BCF6",
456
- "#FFB076",
457
- "#11819D",
458
- "#3CB371",
459
- "#FFBCAE",
460
- "#C87EED",
461
- "#76C5AF"
462
- ],
463
- vibrant: [
464
- "#6B38FB",
465
- // 1. Deep Purple
466
- "#E85B22",
467
- // 2. Deep Orange
468
- "#4AABFF",
469
- // 3. Bright Blue
470
- "#E83B1A",
471
- // 4. True Red
472
- "#E02088"
473
- // 5. Magenta
485
+ series: [
486
+ { fg: colors.violet[500], fgHover: colors.violet[600], bg: colors.violet[100], bgHover: colors.violet[200] },
487
+ { fg: colors.orangeDark[400], fgHover: colors.orangeDark[500], bg: colors.orangeDark[100], bgHover: colors.orangeDark[200] },
488
+ { fg: colors.teal[300], fgHover: colors.teal[400], bg: colors.teal[50], bgHover: colors.teal[100] },
489
+ { fg: colors.warning[400], fgHover: colors.warning[500], bg: colors.warning[100], bgHover: colors.warning[200] },
490
+ { fg: colors.rose[400], fgHover: colors.rose[500], bg: colors.rose[100], bgHover: colors.rose[200] },
491
+ { fg: colors.blueLight[400], fgHover: colors.blueLight[500], bg: colors.blueLight[100], bgHover: colors.blueLight[200] },
492
+ { fg: colors.orange[300], fgHover: colors.orange[400], bg: colors.orange[100], bgHover: colors.orange[200] },
493
+ { fg: colors.cyan[600], fgHover: colors.cyan[700], bg: colors.cyan[100], bgHover: colors.cyan[200] },
494
+ { fg: colors.green[500], fgHover: colors.green[600], bg: colors.green[100], bgHover: colors.green[200] },
495
+ { fg: colors.pink[400], fgHover: colors.pink[500], bg: colors.pink[100], bgHover: colors.pink[200] },
496
+ { fg: colors.fuchsia[400], fgHover: colors.fuchsia[500], bg: colors.fuchsia[100], bgHover: colors.fuchsia[200] },
497
+ { fg: colors.teal[600], fgHover: colors.teal[700], bg: colors.teal[100], bgHover: colors.teal[200] }
474
498
  ]
475
499
  };
476
500
  var alpha = {
@@ -855,18 +879,21 @@ function buildComponents(tokens) {
855
879
  }
856
880
  }
857
881
  },
858
- // ─── Select ─────────────────────────────────────────────────────
859
- MuiSelect: {
882
+ // ─── Menu ──────────────────────────────────────────────────────
883
+ MuiMenu: {
860
884
  defaultProps: {
861
- MenuProps: {
862
- autoFocus: false,
863
- slotProps: {
864
- backdrop: {
865
- sx: { backgroundColor: "transparent" }
866
- }
885
+ autoFocus: false
886
+ },
887
+ styleOverrides: {
888
+ root: {
889
+ "& .MuiBackdrop-root": {
890
+ backgroundColor: "transparent"
867
891
  }
868
892
  }
869
- },
893
+ }
894
+ },
895
+ // ─── Select ─────────────────────────────────────────────────────
896
+ MuiSelect: {
870
897
  styleOverrides: {
871
898
  select: {
872
899
  "&.MuiSelect-select": {
@@ -1885,19 +1912,8 @@ var forestPreset = {
1885
1912
  };
1886
1913
 
1887
1914
  // src/theme/presets/alkemy-plus.ts
1888
- var red = {
1889
- 50: "#fef2f2",
1890
- 200: "#fecaca",
1891
- 600: "#dc2626",
1892
- 700: "#b91c1c",
1893
- 800: "#991b1b",
1894
- 900: "#7f1d1d"};
1895
1915
  var colors2 = {
1896
- base: {
1897
- white: "#ffffff",
1898
- black: "#000000",
1899
- transparent: "#ffffff00"
1900
- },
1916
+ ...colors,
1901
1917
  /** Brand scale — black-based for primary actions */
1902
1918
  brand: {
1903
1919
  25: "#fafafa",
@@ -1927,36 +1943,7 @@ var colors2 = {
1927
1943
  800: "#27272a",
1928
1944
  900: "#18181b",
1929
1945
  950: "#09090b"
1930
- },
1931
- /** Error — forest defaults (standard UX red) */
1932
- error: colors.error,
1933
- /** Warning — orange/yellow tones from Alkemy+ palette */
1934
- warning: {
1935
- 25: "#fffcf5",
1936
- 50: "#fff7ed",
1937
- 100: "#ffedd5",
1938
- 200: "#fed7aa",
1939
- 300: "#fdba74",
1940
- 400: "#fb923c",
1941
- 500: "#f08828",
1942
- 600: "#ea580c",
1943
- 700: "#c2410c",
1944
- 800: "#9a3412",
1945
- 900: "#7c2d12",
1946
- 950: "#431407"
1947
- },
1948
- /** Success — forest defaults (standard UX green) */
1949
- success: colors.success,
1950
- /** Blue (info) — forest defaults (standard UX) */
1951
- blue: colors.blue,
1952
- teal: colors.teal,
1953
- orange: colors.orange,
1954
- purple: colors.purple,
1955
- pink: colors.pink,
1956
- fuchsia: colors.fuchsia,
1957
- orangeDark: colors.orangeDark,
1958
- green: colors.green,
1959
- indigo: colors.indigo
1946
+ }
1960
1947
  };
1961
1948
  var radius2 = {
1962
1949
  ...radius,
@@ -1981,10 +1968,10 @@ var text2 = {
1981
1968
  placeholder: colors2.gray[500],
1982
1969
  placeholderSubtle: colors2.gray[300],
1983
1970
  white: colors2.base.white,
1984
- brandPrimary: red[900],
1985
- brandSecondary: red[700],
1986
- brandTertiary: red[600],
1987
- brandTertiaryAlt: red[600],
1971
+ brandPrimary: colors2.brand[900],
1972
+ brandSecondary: colors2.brand[700],
1973
+ brandTertiary: colors2.brand[600],
1974
+ brandTertiaryAlt: colors2.brand[600],
1988
1975
  primaryOnBrand: colors2.base.white,
1989
1976
  secondaryOnBrand: colors2.brand[200],
1990
1977
  tertiaryOnBrand: colors2.brand[200],
@@ -1996,22 +1983,22 @@ var text2 = {
1996
1983
  var bg2 = {
1997
1984
  primary: colors2.gray[50],
1998
1985
  primaryAlt: colors2.gray[50],
1999
- primaryHover: colors2.gray[50],
1986
+ primaryHover: colors2.gray[100],
2000
1987
  primarySolid: colors2.gray[950],
2001
1988
  secondary: colors2.base.white,
2002
1989
  secondaryAlt: colors2.base.white,
2003
1990
  secondarySubtle: colors2.gray[25],
2004
- secondaryHover: colors2.gray[100],
1991
+ secondaryHover: colors2.gray[50],
2005
1992
  secondarySolid: colors2.gray[600],
2006
1993
  tertiary: colors2.gray[100],
2007
1994
  quaternary: colors2.gray[200],
2008
- active: colors2.gray[50],
1995
+ active: colors2.gray[200],
2009
1996
  disabled: colors2.gray[100],
2010
1997
  disabledSubtle: colors2.gray[50],
2011
1998
  overlay: colors2.gray[950],
2012
- brandPrimary: colors2.brand[100],
2013
- brandPrimaryAlt: colors2.brand[100],
2014
- brandSecondary: colors2.brand[200],
1999
+ brandPrimary: colors2.brand[50],
2000
+ brandPrimaryAlt: colors2.brand[50],
2001
+ brandSecondary: colors2.brand[100],
2015
2002
  brandSolid: colors2.brand[600],
2016
2003
  brandSolidHover: colors2.brand[700],
2017
2004
  brandSection: colors2.brand[800],
@@ -2063,7 +2050,6 @@ var border2 = {
2063
2050
  errorSolid: colors2.error[600]
2064
2051
  };
2065
2052
  var buttonColors2 = {
2066
- /** Primary buttons — black */
2067
2053
  primary: {
2068
2054
  bg: colors2.brand[600],
2069
2055
  bgHover: colors2.brand[700],
@@ -2080,7 +2066,6 @@ var buttonColors2 = {
2080
2066
  border: colors2.gray[300],
2081
2067
  borderHover: colors2.gray[300]
2082
2068
  },
2083
- /** Outlined accent buttons — dark */
2084
2069
  secondaryColor: {
2085
2070
  bg: colors2.base.white,
2086
2071
  bgHover: colors2.brand[50],
@@ -2094,11 +2079,10 @@ var buttonColors2 = {
2094
2079
  fgHover: colors2.gray[700],
2095
2080
  bgHover: colors2.gray[50]
2096
2081
  },
2097
- /** Text accent buttons — red */
2098
2082
  tertiaryColor: {
2099
- fg: red[700],
2100
- fgHover: red[800],
2101
- bgHover: red[50]
2083
+ fg: colors2.brand[700],
2084
+ fgHover: colors2.brand[800],
2085
+ bgHover: colors2.brand[50]
2102
2086
  },
2103
2087
  primaryError: {
2104
2088
  bg: colors2.error[600],
@@ -2127,22 +2111,23 @@ var avatarColors2 = {
2127
2111
  contrastBorder: "#00000014",
2128
2112
  profilePhotoBorder: colors2.base.white,
2129
2113
  focusBorder: "#a0a0a624"
2114
+ // gray[400] + 14% alpha
2130
2115
  };
2131
2116
  var breadcrumbColors2 = {
2132
2117
  fg: colors2.gray[600],
2133
2118
  fgHover: colors2.gray[700],
2134
2119
  bgHover: colors2.gray[50],
2135
- brandBgHover: red[50],
2136
- brandFgHover: red[700],
2120
+ brandBgHover: colors2.brand[50],
2121
+ brandFgHover: colors2.brand[700],
2137
2122
  iconFg: colors2.gray[500],
2138
2123
  iconFgHover: colors2.gray[700],
2139
- brandIconFgHover: red[700]
2124
+ brandIconFgHover: colors2.brand[700]
2140
2125
  };
2141
2126
  var iconColors2 = {
2142
- fgBrand: red[600],
2143
- fgBrandOnBrand: red[200],
2127
+ fgBrand: colors2.brand[600],
2128
+ fgBrandOnBrand: colors2.brand[200],
2144
2129
  featuredModernBorder: colors2.gray[200],
2145
- featuredLightFgBrand: red[600],
2130
+ featuredLightFgBrand: colors2.brand[600],
2146
2131
  featuredLightFgGray: colors2.gray[500],
2147
2132
  featuredLightFgError: colors2.error[600],
2148
2133
  featuredLightFgWarning: colors2.warning[600],
@@ -2155,19 +2140,19 @@ var iconColors2 = {
2155
2140
  };
2156
2141
  var navColors2 = {
2157
2142
  itemIconFg: colors2.gray[500],
2158
- itemIconFgActive: colors2.gray[500],
2143
+ itemIconFgActive: colors2.gray[700],
2159
2144
  itemButtonIconFg: colors2.gray[500],
2160
2145
  itemButtonIconFgActive: colors2.gray[700]
2161
2146
  };
2162
2147
  var sliderColors2 = {
2163
- handleBorder: red[600],
2148
+ handleBorder: colors2.brand[600],
2164
2149
  handleBg: colors2.base.white
2165
2150
  };
2166
2151
  var toggleColors2 = {
2167
2152
  buttonFgDisabled: colors2.gray[50]
2168
2153
  };
2169
2154
  var chartColors2 = {
2170
- axisFg: colors2.gray[200],
2155
+ axisFg: colors2.gray[100],
2171
2156
  gridlineFg: colors2.gray[100],
2172
2157
  labelFg: colors2.gray[600],
2173
2158
  labelFgEmphasis: colors2.gray[700],
@@ -2177,52 +2162,25 @@ var chartColors2 = {
2177
2162
  tooltipFg: colors2.base.white,
2178
2163
  crosshairFg: colors2.gray[500],
2179
2164
  legendFg: text2.tertiary,
2180
- categorical: [
2181
- "#7B61FF",
2182
- "#FF7E67",
2183
- "#76DFD5",
2184
- "#F6C343",
2185
- "#B36A6F",
2186
- "#71BCF6",
2187
- "#FFB076",
2188
- "#11819D",
2189
- "#3CB371",
2190
- "#FFBCAE",
2191
- "#C87EED",
2192
- "#76C5AF"
2193
- ],
2194
- vibrant: [
2195
- "#6B38FB",
2196
- "#E85B22",
2197
- "#4AABFF",
2198
- "#E83B1A",
2199
- "#E02088"
2200
- ],
2201
- series6Fg: colors2.brand[400],
2202
- series6FgHover: colors2.brand[500],
2203
- series6Bg: colors2.brand[100],
2204
- series6BgHover: colors2.brand[200],
2205
- series7Fg: colors2.fuchsia[600],
2206
- series7FgHover: colors2.fuchsia[700],
2207
- series7Bg: colors2.fuchsia[100],
2208
- series7BgHover: colors2.fuchsia[200],
2209
- series8Fg: colors2.teal[600],
2210
- series8FgHover: colors2.teal[700],
2211
- series8Bg: colors2.teal[100],
2212
- series8BgHover: colors2.teal[200],
2213
- series9Fg: colors2.indigo[600],
2214
- series9FgHover: colors2.indigo[700],
2215
- series9Bg: colors2.indigo[100],
2216
- series9BgHover: colors2.indigo[200],
2217
- series10Fg: colors2.green[600],
2218
- series10FgHover: colors2.green[700],
2219
- series10Bg: colors2.green[100],
2220
- series10BgHover: colors2.green[200]
2165
+ series: [
2166
+ { fg: colors2.violet[500], fgHover: colors2.violet[600], bg: colors2.violet[100], bgHover: colors2.violet[200] },
2167
+ { fg: colors2.orangeDark[400], fgHover: colors2.orangeDark[500], bg: colors2.orangeDark[100], bgHover: colors2.orangeDark[200] },
2168
+ { fg: colors2.teal[300], fgHover: colors2.teal[400], bg: colors2.teal[50], bgHover: colors2.teal[100] },
2169
+ { fg: colors2.warning[400], fgHover: colors2.warning[500], bg: colors2.warning[100], bgHover: colors2.warning[200] },
2170
+ { fg: colors2.rose[400], fgHover: colors2.rose[500], bg: colors2.rose[100], bgHover: colors2.rose[200] },
2171
+ { fg: colors2.blueLight[400], fgHover: colors2.blueLight[500], bg: colors2.blueLight[100], bgHover: colors2.blueLight[200] },
2172
+ { fg: colors2.orange[300], fgHover: colors2.orange[400], bg: colors2.orange[100], bgHover: colors2.orange[200] },
2173
+ { fg: colors2.cyan[600], fgHover: colors2.cyan[700], bg: colors2.cyan[100], bgHover: colors2.cyan[200] },
2174
+ { fg: colors2.green[500], fgHover: colors2.green[600], bg: colors2.green[100], bgHover: colors2.green[200] },
2175
+ { fg: colors2.pink[400], fgHover: colors2.pink[500], bg: colors2.pink[100], bgHover: colors2.pink[200] },
2176
+ { fg: colors2.fuchsia[400], fgHover: colors2.fuchsia[500], bg: colors2.fuchsia[100], bgHover: colors2.fuchsia[200] },
2177
+ { fg: colors2.teal[600], fgHover: colors2.teal[700], bg: colors2.teal[100], bgHover: colors2.teal[200] }
2178
+ ]
2221
2179
  };
2222
2180
  var focusRings2 = {
2223
- brand: "0px 0px 0px 4px #f040403d",
2224
- brandShadowXs: "0px 1px 2px 0px #1018280d, 0px 0px 0px 4px #f040403d",
2225
- brandShadowSm: "0px 1px 3px 0px #1018281a, 0px 1px 2px 0px #1018280f, 0px 0px 0px 4px #f040403d",
2181
+ brand: "0px 0px 0px 4px #4040403d",
2182
+ brandShadowXs: "0px 1px 2px 0px #1018280d, 0px 0px 0px 4px #4040403d",
2183
+ brandShadowSm: "0px 1px 3px 0px #1018281a, 0px 1px 2px 0px #1018280f, 0px 0px 0px 4px #4040403d",
2226
2184
  gray: "0px 0px 0px 4px #a0a0a624",
2227
2185
  grayShadowXs: "0px 1px 2px 0px #1018280d, 0px 0px 0px 4px #a0a0a624",
2228
2186
  grayShadowSm: "0px 1px 3px 0px #1018281a, 0px 1px 2px 0px #1018280f, 0px 0px 0px 4px #a0a0a624",
@@ -2292,5 +2250,5 @@ var forestThemeOptions = {
2292
2250
  var forestTheme = createTheme(forestThemeOptions);
2293
2251
 
2294
2252
  export { alkemyPlusPreset, alpha, avatarColors, bg, border, breadcrumbColors, buildTheme, buildThemeOptions, buttonColors, chartColors, colors, components, container, display, fg, focusRings, fontFamily, fontSize, fontWeight, forestPreset, forestTheme, forestThemeOptions, getAvailablePresets, getPreset, iconColors, lineHeight, navColors, palette, radius, registerPreset, shadows, shadows2, sliderColors, spacing, text, toggleColors, typography, widths };
2295
- //# sourceMappingURL=chunk-7B6NCKX3.mjs.map
2296
- //# sourceMappingURL=chunk-7B6NCKX3.mjs.map
2253
+ //# sourceMappingURL=chunk-6W3RIXXY.mjs.map
2254
+ //# sourceMappingURL=chunk-6W3RIXXY.mjs.map