Update Tailwind config

This commit is contained in:
Zep Fietje
2022-10-16 11:38:07 +02:00
parent b41ee18254
commit c9e8298fcb

View File

@@ -2,20 +2,20 @@ const colors = require("tailwindcss/colors");
/** @type {import('tailwindcss').Config} */ /** @type {import('tailwindcss').Config} */
module.exports = { module.exports = {
content: ["./resources/views/**/*.blade.php", "./src/**/*.php"], content: ["./resources/views/**/*.blade.php", "./src/**/*.php"],
darkMode: "class", darkMode: "class",
theme: { theme: {
extend: { extend: {
colors: { colors: {
danger: colors.rose, danger: colors.rose,
primary: colors.yellow, primary: colors.amber,
success: colors.green, success: colors.green,
warning: colors.amber, warning: colors.amber,
}, },
},
}, },
}, corePlugins: {
corePlugins: { preflight: false,
preflight: false, },
}, plugins: [],
plugins: [],
}; };