recipe_app/frontend/tailwind.config.js

18 lines
373 B
JavaScript
Raw Normal View History

2025-07-11 17:06:41 -07:00
/** @type {import('tailwindcss').Config} */
export default {
2025-08-20 10:06:23 -07:00
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
2025-07-11 17:06:41 -07:00
theme: {
2025-08-20 10:06:23 -07:00
extend: {
colors: {
primaryBg: "#fff8dc",
secondaryBg: "#87a96b",
buttonBg: "#d2691e",
darkText: "#2f2f2f",
primaryTextColor: "#87a96b",
},
},
2025-07-11 17:06:41 -07:00
extend: {},
},
plugins: [],
2025-08-20 10:06:23 -07:00
};