mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
19 lines
411 B
JavaScript
19 lines
411 B
JavaScript
|
|
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,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
}
|