mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-16 14:31:16 +00:00
11 lines
188 B
TypeScript
11 lines
188 B
TypeScript
export const ThemeObj: {[k in string]: 'light' | 'dark'} = {
|
|
default: 'light',
|
|
light: 'light',
|
|
dark: 'dark',
|
|
};
|
|
|
|
export const AlasGuiTheme = {
|
|
light: 'default',
|
|
dark: 'dark',
|
|
};
|