mirror of
https://github.com/LeRoid-hub/Bookholder-WEB.git
synced 2025-01-31 11:24:55 +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: [],
|
||
|
}
|
||
|
|