update: configure tailwind and daisyui black theme
This commit is contained in:
17
tailwind.config.js
Normal file
17
tailwind.config.js
Normal file
@@ -0,0 +1,17 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: ["./src/**/*.{js,html}"],
|
||||
theme: {
|
||||
extend: {
|
||||
fontFamily: {
|
||||
sans: ['"Inter"', "sans-serif"],
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [require("daisyui")],
|
||||
daisyui: {
|
||||
themes: ["black", "light"], // black is default dark, light is fallback
|
||||
darkTheme: "black",
|
||||
logs: false,
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user