www_circl/tailwind.config.js
2025-05-02 15:42:14 +02:00

19 lines
340 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
'opensauce': ['Open Sauce', 'sans-serif'],
},
colors: {
'brown': {
DEFAULT: '#5A401D',
},
},
},
},
plugins: [],
}