growi-theme-metadata.ts 409 B

1234567891011121314151617
  1. export const GrowiThemeSchemeType = {
  2. BOTH: 'both',
  3. LIGHT: 'light',
  4. DARK: 'dark',
  5. } as const;
  6. export type GrowiThemeSchemeType = typeof GrowiThemeSchemeType[keyof typeof GrowiThemeSchemeType];
  7. export type GrowiThemeMetadata = {
  8. name: string,
  9. manifestKey: string,
  10. schemeType: GrowiThemeSchemeType,
  11. bg: string,
  12. topbar: string,
  13. sidebar: string,
  14. accent: string,
  15. isPresetTheme?: boolean,
  16. };