| 1234567891011121314151617 |
- export const GrowiThemeSchemeType = {
- BOTH: 'both',
- LIGHT: 'light',
- DARK: 'dark',
- } as const;
- export type GrowiThemeSchemeType = typeof GrowiThemeSchemeType[keyof typeof GrowiThemeSchemeType];
- export type GrowiThemeMetadata = {
- name: string,
- manifestKey: string,
- schemeType: GrowiThemeSchemeType,
- bg: string,
- topbar: string,
- sidebar: string,
- accent: string,
- isPresetTheme?: boolean,
- };
|