mirror of
https://github.com/LeRoid-hub/Bookholder-WEB.git
synced 2025-01-30 19:04:56 +00:00
16 lines
266 B
JavaScript
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: [],
|
|
}
|
|
|