mirror of
https://github.com/TheFunny/ArisuAutoSweeper
synced 2025-12-19 19:25:24 +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',
|
|
};
|