update: configure tailwind and daisyui black theme

This commit is contained in:
Codex
2026-02-18 15:05:47 +00:00
parent 76f991e690
commit fa2ee57595
2 changed files with 26 additions and 5 deletions

17
tailwind.config.js Normal file
View 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,
},
};