38 lines
688 B
JavaScript
38 lines
688 B
JavaScript
export default {
|
|
content: ["index.html"],
|
|
theme: {
|
|
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",
|
|
},
|
|
],
|
|
},
|
|
},
|
|
};
|