From 89ddd589358729e8d5f8002bb55ec7637c6c6a7c Mon Sep 17 00:00:00 2001 From: Rune Harlyk Date: Sat, 17 Aug 2024 19:27:47 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=AA=B4=20Updates=20dark=20theme=20primary?= =?UTF-8?q?=20color?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/tailwind.config.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/app/tailwind.config.js b/app/tailwind.config.js index a18583e..de1f09d 100644 --- a/app/tailwind.config.js +++ b/app/tailwind.config.js @@ -6,7 +6,16 @@ export default { }, plugins: [require('daisyui')], daisyui: { - themes: ['light', 'dark'], + themes: [ + 'light', + { + dark: { + ...require('daisyui/src/theming/themes')['dark'], + primary: '#00bfff', + accent: '#3c00ff' + } + } + ], darkTheme: 'dark' } };