27 lines
470 B
JavaScript
27 lines
470 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./templates/**/*.html',
|
|
],
|
|
safelist: [
|
|
'text-violet-400',
|
|
'text-lime-400',
|
|
'text-cyan-400',
|
|
'text-yellow-400',
|
|
'text-red-400',
|
|
'text-orange-400',
|
|
'text-emerald-400',
|
|
'text-blue-400',
|
|
'text-gray-300',
|
|
'text-pink-400'
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Inter', 'sans-serif'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
],
|
|
} |