From c9e8298fcb503b1aa90b2221b0911632100885a7 Mon Sep 17 00:00:00 2001 From: Zep Fietje Date: Sun, 16 Oct 2022 11:38:07 +0200 Subject: [PATCH] Update Tailwind config --- tailwind.config.js | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/tailwind.config.js b/tailwind.config.js index 96ce29b..8037ca9 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -2,20 +2,20 @@ const colors = require("tailwindcss/colors"); /** @type {import('tailwindcss').Config} */ module.exports = { - content: ["./resources/views/**/*.blade.php", "./src/**/*.php"], - darkMode: "class", - theme: { - extend: { - colors: { - danger: colors.rose, - primary: colors.yellow, - success: colors.green, - warning: colors.amber, - }, + content: ["./resources/views/**/*.blade.php", "./src/**/*.php"], + darkMode: "class", + theme: { + extend: { + colors: { + danger: colors.rose, + primary: colors.amber, + success: colors.green, + warning: colors.amber, + }, + }, }, - }, - corePlugins: { - preflight: false, - }, - plugins: [], + corePlugins: { + preflight: false, + }, + plugins: [], };