Skip to content
Snippets Groups Projects
Commit 560f4657 authored by Aggarwal Himanshu's avatar Aggarwal Himanshu
Browse files

Configure tailwind with additional CSS properties

parent 9d01ffb2
No related branches found
No related tags found
No related merge requests found
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
......@@ -4,7 +4,28 @@ module.exports = {
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
extend: {
fontFamily: {
poppins: "'Poppins', sans-serif",
dm: "'DM Sans', sans-serif",
inter: "'Inter', sans-serif",
},
borderRadius: {
"4xl": "2rem",
"5xl": "3rem",
"6xl": "4rem",
},
borderWidth: {
1: "1px",
},
colors: {
dark: {
700: "#242731",
800: "#1f2128",
900: "#191b20",
},
},
},
},
plugins: [],
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment