1
Fork 0
This repository has been archived on 2024-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
recipe-page/tailwind.config.js

20 lines
427 B
JavaScript
Raw Normal View History

2024-07-01 23:37:54 +00:00
export default {
content: ["index.html"],
2024-07-02 19:15:21 +00:00
theme: {
colors: {
"brandy-red": "#854632",
"dark-charcoal": "#312E2C",
"dark-raspberry": "#7A284E",
"wenge-brown": "#5F564D",
"white-coffee": "#E3DDD7",
eggshell: "#F3E5D7",
snow: "#FFF7FB",
white: "#FFFFFF",
},
fontFamily: {
sans: ["Outfit", "sans-serif"],
serif: ["Young\\ Serif", "serif"],
},
},
2024-07-01 23:37:54 +00:00
};