| 123456789101112131415161718 |
- import { ColorScheme } from './color-scheme';
- export const GrowiThemeSchemeType = {
- ...ColorScheme,
- BOTH: 'both',
- } 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,
- };
|