Bookholder-WEB/tailwind.config.js

16 lines
266 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./views/**/*.{html,js}"],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
},
},
},
plugins: [],
}