16 lines
267 B
JavaScript
16 lines
267 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const colors = require('tailwindcss/colors')
|
|
|
|
module.exports = {
|
|
content: ["./routes/templates/**/*.gohtml"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'main': colors.orange,
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|