mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-17 09:50:31 +08:00
6 lines
184 B
TypeScript
6 lines
184 B
TypeScript
export const LIGHT_THEME_NAME = "BlueBusinessTheme";
|
|
export const DARK_THEME_NAME = "BlueBusinessDarkTheme";
|
|
|
|
// Theme related types
|
|
export type ThemeMode = "light" | "dark" | "auto";
|