homepage/tailwind.config.js

17 lines
347 B
JavaScript
Raw Normal View History

2024-02-25 13:20:06 +01:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./templates/**/*.html"],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
white: '#ffffff',
primary: "#601237",
background: "#290718",
},
},
plugins: [],
}