From bfd6810f166abb187f5b29ec50eae81e1ab2dd26 Mon Sep 17 00:00:00 2001 From: Muhammad Rais Ramadhani Date: Sun, 21 Sep 2025 17:24:55 +0700 Subject: [PATCH] Add Tailwind CSS configuration file --- tailwind.config.js | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 tailwind.config.js diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..629640c --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,25 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: [ + "./src/pages/**/*.{js,ts,jsx,tsx,mdx}", + "./src/components/**/*.{js,ts,jsx,tsx,mdx}", + "./src/app/**/*.{js,ts,jsx,tsx,mdx}", + ], + theme: { + extend: { + colors: { + primary: "#ff9900", + secondary: "#1a140b", + }, + }, + }, + safelist: [ + "grid-cols-4", + "grid-cols-3", + "grid-cols-2", + { + pattern: /bg-(red|blue|yellow|green)/, + }, + ], + plugins: [], +}