Files
feedmee/feedmee/tailwind.config.mjs
2025-10-01 20:49:02 +02:00

20 lines
400 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
brand: {
DEFAULT: "#d35400", // dark orange
light: "#e67e22", // lighter orange
dark: "#a84300", // darker hover
},
},
},
},
plugins: [],
}