Skip to content

Instantly share code, notes, and snippets.

@NandoKstroNet
Created September 11, 2023 16:23
Show Gist options
  • Save NandoKstroNet/ade7bd5d3a273af39c800e3c87c54a36 to your computer and use it in GitHub Desktop.
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
npm install tailwindcss @tailwindcss/forms @tailwindcss/typography autoprefixer tippy.js --save-dev
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