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.
contact-form/tailwind.config.js

62 lines
1.1 KiB
JavaScript
Raw Normal View History

2024-06-05 02:26:49 +00:00
export default {
content: ["./index.html", "./src/**/*.jsx"],
theme: {
colors: {
2024-06-05 21:59:03 +00:00
transparent: "rgba(0, 0, 0, 0)",
2024-06-05 02:26:49 +00:00
white: "#FFFFFF",
red: "#D73C3C",
grey: {
500: "#86A2A5",
900: "#2A4144",
},
green: {
200: "#E0F1E8",
600: "#0C7D69",
},
},
fontFamily: {
sans: ["Karla", "sans-serif"],
},
fontWeight: {
regular: "400",
bold: "700",
},
fontSize: {
heading: [
"2rem",
{
lineHeight: 1,
letterSpacing: "-0.03125em",
fontWeight: "700",
},
],
"body-md": [
"1.125rem",
{
lineHeight: 1.5,
letterSpacing: "0",
fontWeight: "400",
},
],
"body-sm": [
"1rem",
{
lineHeight: 1.5,
letterSpacing: "0",
fontWeight: "400",
},
],
},
spacing: {
2024-06-08 06:44:17 +00:00
0: "0",
2024-06-05 02:26:49 +00:00
100: "0.5rem",
2024-06-05 21:59:03 +00:00
150: "0.75rem",
2024-06-05 02:26:49 +00:00
200: "1rem",
300: "1.5rem",
400: "2rem",
500: "2.5rem",
1600: "8rem",
},
},
};