fix: added constants for theme variables (#777)

fixes: #776
This commit is contained in:
Apoorv Taneja
2023-12-26 05:19:27 +05:30
committed by GitHub
parent e9312ada51
commit 5a32b5cafd
3 changed files with 17 additions and 9 deletions

View File

@@ -0,0 +1,5 @@
export const THEMES_TYPE = {
DARK: 'dark',
LIGHT: 'light',
SYSTEM: 'system'
};