Bläddra i källkod

add PrismThemes as const

Yuki Takei 3 år sedan
förälder
incheckning
04eea1b4ef
1 ändrade filer med 5 tillägg och 0 borttagningar
  1. 5 0
      packages/app/src/interfaces/theme.ts

+ 5 - 0
packages/app/src/interfaces/theme.ts

@@ -16,3 +16,8 @@ export const GrowiThemes = {
   WOOD: 'wood',
   WOOD: 'wood',
 } as const;
 } as const;
 export type GrowiThemes = typeof GrowiThemes[keyof typeof GrowiThemes];
 export type GrowiThemes = typeof GrowiThemes[keyof typeof GrowiThemes];
+
+export const PrismThemes = {
+  OneLight: 'one-light',
+} as const;
+export type PrismThemes = typeof PrismThemes[keyof typeof PrismThemes];