From 6213c773c3838b06cdcbbfd4765fa496404da331 Mon Sep 17 00:00:00 2001 From: Josh Creek <8179928+jcreek@users.noreply.github.com> Date: Wed, 10 Apr 2024 21:50:43 +0100 Subject: [PATCH] feat(*): Add custom pokeball theme --- tailwind.config.js | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/tailwind.config.js b/tailwind.config.js index a9ca35a..fa67f4f 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -6,6 +6,22 @@ export default { }, plugins: [require('daisyui')], daisyui: { - themes: ['light', 'dark', 'dracula'] + themes: [ + 'light', + 'dark', + 'dracula', + { + pokeball: { + primary: '#ee1515', + 'primary-content': '#ffffff', + secondary: '#3b82c4', + 'secondary-content': '#ffffff', + accent: '#7e308e', + neutral: '#ffffff', + 'base-100': '#f0f0f0', + 'base-content': '#222224' + } + } + ] } };