From adeebf56c033993ac18b47f64777017c5b1bb84a Mon Sep 17 00:00:00 2001 From: Owski <149725877+hyperficial@users.noreply.github.com> Date: Mon, 17 Mar 2025 21:48:31 -0500 Subject: [PATCH] Update theme-provider.tsx --- src/components/theme-provider.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/theme-provider.tsx b/src/components/theme-provider.tsx index cca71f1..a577a39 100644 --- a/src/components/theme-provider.tsx +++ b/src/components/theme-provider.tsx @@ -5,12 +5,14 @@ type Theme = | 'cyberpunk' | 'bluelight' | 'midnight' + | 'catppuccin' | 'system'; const themes: Theme[] = [ 'radius', 'cyberpunk', 'bluelight', 'midnight', + 'catppuccin', 'system', ]; type ThemeProviderProps = {