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.
social-links-profile/tailwind.config.js

39 lines
688 B
JavaScript
Raw Normal View History

2024-07-01 13:32:22 +00:00
export default {
content: ["index.html"],
theme: {
2024-07-01 15:45:44 +00:00
colors: {
"dark-grey": "#1F1F1F",
"neon-green": "#C4F82A",
black: "#141414",
grey: "#333333",
white: "#FFFFFF",
},
fontFamily: {
sans: ["Inter", "sans-serif"],
},
fontSize: {
heading: [
"1.5rem",
{
lineHeight: "150%",
fontWeight: "600",
},
],
"body-regular": [
"0.875rem",
{
lineHeight: "150%",
fontWeight: "400",
},
],
"body-bold": [
"0.875rem",
{
lineHeight: "150%",
fontWeight: "700",
},
],
},
2024-07-01 13:32:22 +00:00
},
};