From 6a9b3e2af96ee55c77bc56b91633e39526d6811f Mon Sep 17 00:00:00 2001 From: datalore Date: Thu, 16 Nov 2023 02:46:22 +0100 Subject: [PATCH] Added themes coffee and dim --- src/app/components/themeswitcher.tsx | 2 ++ tailwind.config.ts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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"] } };