From 045ab4df227f43d2c567fa412ea8b558de7e0459 Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Fri, 20 Aug 2021 23:44:53 +0530 Subject: [PATCH] fix: Aqua dark --- src/lib/util/theme.ts | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/lib/util/theme.ts b/src/lib/util/theme.ts index 91e955ef..940c66b7 100644 --- a/src/lib/util/theme.ts +++ b/src/lib/util/theme.ts @@ -10,7 +10,16 @@ export const themeStore = persist( 'themeStore' ); -const darkThemes = ['dark', 'synthwave', 'halloween', 'forest', 'luxury', 'black', 'dracula']; +const darkThemes = [ + 'dark', + 'synthwave', + 'halloween', + 'aqua', + 'forest', + 'luxury', + 'black', + 'dracula' +]; export const setTheme = (theme: string): void => { if (theme.includes(' ')) {