5 lines
80 B
TypeScript
5 lines
80 B
TypeScript
|
export enum COLOR_SCHEMA {
|
||
|
亮色模式 = 'light',
|
||
|
暗色模式 = 'dark',
|
||
|
}
|