centralize the theming

This commit is contained in:
fred 2025-08-20 10:06:23 -07:00
parent 30b28056de
commit db8b20ee71
20 changed files with 183 additions and 114 deletions

View file

@ -1,12 +1,17 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
primaryBg: "#fff8dc",
secondaryBg: "#87a96b",
buttonBg: "#d2691e",
darkText: "#2f2f2f",
primaryTextColor: "#87a96b",
},
},
extend: {},
},
plugins: [],
}
};