centralize the theming
This commit is contained in:
parent
30b28056de
commit
db8b20ee71
20 changed files with 183 additions and 114 deletions
|
@ -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: [],
|
||||
}
|
||||
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue