2025-12-28 19:12:32 +08:00
|
|
|
export type {
|
|
|
|
|
DesktopTheme,
|
2026-03-09 08:28:58 +08:00
|
|
|
ThemePaletteColors,
|
2025-12-28 19:12:32 +08:00
|
|
|
ThemeSeedColors,
|
|
|
|
|
ThemeVariant,
|
|
|
|
|
HexColor,
|
|
|
|
|
OklchColor,
|
|
|
|
|
ResolvedTheme,
|
|
|
|
|
ColorValue,
|
|
|
|
|
CssVarRef,
|
|
|
|
|
} from "./types"
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
hexToRgb,
|
|
|
|
|
rgbToHex,
|
|
|
|
|
hexToOklch,
|
|
|
|
|
oklchToHex,
|
|
|
|
|
rgbToOklch,
|
|
|
|
|
oklchToRgb,
|
|
|
|
|
generateScale,
|
|
|
|
|
generateNeutralScale,
|
|
|
|
|
generateAlphaScale,
|
2026-03-09 08:28:58 +08:00
|
|
|
fitOklch,
|
|
|
|
|
blend,
|
2025-12-28 19:12:32 +08:00
|
|
|
mixColors,
|
2026-03-09 08:28:58 +08:00
|
|
|
shift,
|
2025-12-28 19:12:32 +08:00
|
|
|
lighten,
|
|
|
|
|
darken,
|
|
|
|
|
withAlpha,
|
|
|
|
|
} from "./color"
|
|
|
|
|
|
|
|
|
|
export { resolveThemeVariant, resolveTheme, themeToCss } from "./resolve"
|
|
|
|
|
export { applyTheme, loadThemeFromUrl, getActiveTheme, removeTheme, setColorScheme } from "./loader"
|
|
|
|
|
export { ThemeProvider, useTheme, type ColorScheme } from "./context"
|
|
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
DEFAULT_THEMES,
|
2026-02-19 00:36:30 +08:00
|
|
|
oc2Theme,
|
2026-03-13 11:21:02 +08:00
|
|
|
amoledTheme,
|
|
|
|
|
auraTheme,
|
|
|
|
|
ayuTheme,
|
|
|
|
|
carbonfoxTheme,
|
|
|
|
|
catppuccinTheme,
|
|
|
|
|
catppuccinFrappeTheme,
|
|
|
|
|
catppuccinMacchiatoTheme,
|
|
|
|
|
cobalt2Theme,
|
|
|
|
|
cursorTheme,
|
2025-12-28 19:12:32 +08:00
|
|
|
draculaTheme,
|
2026-03-13 11:21:02 +08:00
|
|
|
everforestTheme,
|
|
|
|
|
flexokiTheme,
|
|
|
|
|
githubTheme,
|
|
|
|
|
gruvboxTheme,
|
|
|
|
|
kanagawaTheme,
|
|
|
|
|
lucentOrngTheme,
|
|
|
|
|
materialTheme,
|
|
|
|
|
matrixTheme,
|
|
|
|
|
mercuryTheme,
|
2025-12-28 19:12:32 +08:00
|
|
|
monokaiTheme,
|
2026-03-13 11:21:02 +08:00
|
|
|
nightowlTheme,
|
2025-12-28 19:12:32 +08:00
|
|
|
nordTheme,
|
2026-03-13 11:21:02 +08:00
|
|
|
oneDarkTheme,
|
2025-12-28 19:12:32 +08:00
|
|
|
oneDarkProTheme,
|
2026-03-13 11:21:02 +08:00
|
|
|
opencodeTheme,
|
|
|
|
|
orngTheme,
|
|
|
|
|
osakaJadeTheme,
|
|
|
|
|
palenightTheme,
|
|
|
|
|
rosepineTheme,
|
2025-12-28 19:12:32 +08:00
|
|
|
shadesOfPurpleTheme,
|
2026-03-13 11:21:02 +08:00
|
|
|
solarizedTheme,
|
|
|
|
|
synthwave84Theme,
|
|
|
|
|
tokyonightTheme,
|
|
|
|
|
vercelTheme,
|
2026-01-09 07:48:57 +08:00
|
|
|
vesperTheme,
|
2026-03-13 11:21:02 +08:00
|
|
|
zenburnTheme,
|
2025-12-28 19:12:32 +08:00
|
|
|
} from "./default-themes"
|