diff options
Diffstat (limited to 'tailwind.config.js')
| -rw-r--r-- | tailwind.config.js | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/tailwind.config.js b/tailwind.config.js index ad61c55..f7d82ce 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -17,5 +17,28 @@ module.exports = { extend: {}, }, darkMode: "class", - plugins: [nextui()], + plugins: [ + nextui({ + themes: { + light: { + colors: { + background: "#FFFFFF", // or DEFAULT + foreground: "#11181C", // or 50 to 900 DEFAULT + primary: { + //... 50 to 900 + foreground: "#FFFFFF", + DEFAULT: "#006FEE", + }, + }, + }, + + dark: { + colors: { + background: "#1f1f1f", // or DEFAULT + foreground: "#ECEDEE", // or 50 to 900 DEFAULT + }, + }, + }, + }), + ], }; |