change theme enum to correspond with themes classnames

This commit is contained in:
Baptiste Lemoine 2020-04-20 18:12:24 +02:00
parent 86ada008c5
commit 60b4bfb619
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
export enum Theme {
LIGHT = 'LIGHT',
DARK = 'DARK',
RED = 'RED',
LIGHT = 'light-watermelon',
DARK = 'dark-crystal',
RED = 'hot-covid',
}