diff --git a/src/app/components/themeswitcher.tsx b/src/app/components/themeswitcher.tsx index 3896566..df12b99 100644 --- a/src/app/components/themeswitcher.tsx +++ b/src/app/components/themeswitcher.tsx @@ -16,6 +16,8 @@ export default function ThemeSwitcher(){
  • setTheme("valentine")}>Valentine
  • setTheme("pastel")}>Pastel
  • setTheme("aqua")}>Aqua
  • +
  • setTheme("coffee")}>Coffee
  • +
  • setTheme("dim")}>Dim
  • ); } diff --git a/tailwind.config.ts b/tailwind.config.ts index 75e5a7d..55bffe2 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -7,7 +7,7 @@ const config: Config = { }, plugins: [require("daisyui")], daisyui: { - themes: ["light", "dark", "synthwave", "cyberpunk", "valentine", "pastel", "aqua"] + themes: ["light", "dark", "synthwave", "cyberpunk", "valentine", "pastel", "aqua", "coffee", "dim"] } };