Created
September 11, 2023 16:23
-
-
Save NandoKstroNet/ade7bd5d3a273af39c800e3c87c54a36 to your computer and use it in GitHub Desktop.
Conteúdos sobre as customizações no FilamentPHP - https://codeexperts.com.br/curso/filament-php-na-pratica
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm install tailwindcss @tailwindcss/forms @tailwindcss/typography autoprefixer tippy.js --save-dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import colors from "tailwindcss/colors"; | |
import forms from "@tailwindcss/forms"; | |
import typography from "@tailwindcss/typography"; | |
/** @type {import('tailwindcss').Config} */ | |
module.exports = { | |
content: ["./resources/**/*.blade.php", "./vendor/filament/**/*.blade.php"], | |
theme: { | |
extend: { | |
colors: { | |
danger: colors.rose, | |
primary: colors.purple, | |
success: colors.green, | |
warning: colors.yellow, | |
}, | |
}, | |
}, | |
plugins: [forms, typography], | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment