deb123f283
* restructure * udpate readme links
10 lines
128 B
TypeScript
10 lines
128 B
TypeScript
export enum Theme {
|
|
light = 'light',
|
|
dark = 'dark',
|
|
}
|
|
|
|
export const themeModes = [
|
|
'system',
|
|
...Object.values(Theme),
|
|
]
|