cooked/tailwind.config.js
2024-10-22 15:18:23 +02:00

24 lines
579 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./templates/**/*.html"],
darkMode: true,
theme: {
extend: {
colors: {
primary: '#FF6363',
secondary: {
100: '#E2E2D5',
200: '#888883'
}
},
fontFamily: {
body: ['Nunito']
}
},
},
variants: {
extend: {},
},
plugins: [],
};