import daisyui from "daisyui"; /** @type {import('tailwindcss').Config} */ export default { content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"], theme: { extend: { colors: {}, }, colors: {}, }, plugins: [daisyui], daisyui: { // themes: ["light", "dark"], themes: [ { light: { ...require("daisyui/src/theming/themes")["light"], primary: "#99d2fd", test: "#76beee", }, dark: { ...require("daisyui/src/theming/themes")["dark"], primary: "#34a6fc", test: "#1f5078", }, }, ], }, };