mirror of
https://github.com/filamentphp/plugin-skeleton.git
synced 2025-12-06 21:48:53 +08:00
Merge pull request #13 from filamentphp/update-tailwind-config
Update Tailwind config
This commit is contained in:
@@ -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: [],
|
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user