college-courses/tailwind.config.js

20 lines
493 B
JavaScript
Raw Permalink Normal View History

2024-10-15 10:15:40 +03:00
const colors = require('tailwindcss/colors')
module.exports = {
content: ['./resources/**/*.blade.php', './vendor/filament/**/*.blade.php'],
theme: {
extend: {
colors: {
danger: colors.rose,
primary: colors.blue,
success: colors.green,
warning: colors.yellow,
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
}