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.
product-preview-card/tailwind.config.js

45 lines
776 B
JavaScript
Raw Normal View History

2024-07-04 11:45:56 +00:00
export default {
content: ["index.html"],
2024-07-04 17:06:57 +00:00
theme: {
colors: {
white: "#FFFFFF",
cream: "#F2EAE2",
metal: {
400: "#6C7289",
700: "#1C232B",
},
aquamarine: {
400: "#3D8168",
700: "#1A4032",
},
},
fontFamily: {
sans: ["Montserrat", "sans-serif"],
serif: ["Fraunces", "serif"],
},
fontSize: {
category: [
"0.75rem",
{
fontWeight: 500,
letterSpacing: "5px",
},
],
heading: [
"2rem",
{
fontWeight: 700,
lineHeight: "2rem",
},
],
body: [
"0.875rem",
{
fontWeight: 500,
2024-07-05 00:31:54 +00:00
lineHeight: "1.5rem",
2024-07-04 17:06:57 +00:00
},
],
},
},
2024-07-04 11:45:56 +00:00
};