diff --git a/CODEOWNERS b/CODEOWNERS index aef4bb3107..1de3baaf0d 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -27,6 +27,7 @@ /src/components/Text @IsaevAlexandr #/src/components/TextInput @dustyo-O /src/components/Toaster @korvin89 +/src/components/theme @resure # Allow everyone to publish releases /package.json /package-lock.json diff --git a/src/components/theme/types.ts b/src/components/theme/types.ts index e33b5c4713..3b311cf5c3 100644 --- a/src/components/theme/types.ts +++ b/src/components/theme/types.ts @@ -1,4 +1,4 @@ -export type RealTheme = 'light' | 'light-hc' | 'dark' | 'dark-hc'; +export type RealTheme = 'light' | 'light-hc' | 'dark' | 'dark-hc' | string; export type ThemeType = 'light' | 'dark'; export type Theme = 'system' | RealTheme;