-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
55 lines (55 loc) · 1.21 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/Components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
fontSize: {
sm: "0.8rem",
base: "1rem",
xl: "1.25rem",
"2xl": "1.563rem",
"3xl": "1.953rem",
"4xl": "2.441rem",
"5xl": "3.052rem",
40: ["40px", "normal"],
45: ["45px", "normal"],
},
extend: {
padding: {
30: "30px",
50: "50px",
15: "60px",
70: "70px",
90: "90px",
120: "120px",
130: "130px",
},
margin: {
30: "30px",
50: "50px",
15: "60px",
70: "70px",
},
fontFamily: {
inter: ["Inter", "sans-serif"],
cinzel: ["Cinzel", "serif"],
},
colors: {
brandDark: "#151515",
brandPrimary: "#D1A054",
brandSecoundry: "#1F2937",
brandLite: "#BB8506",
menuCardBg: "#F3F3F3",
tinyHeading: "#D99904",
navActive: "#EEFF25",
},
boxShadow: {
"loginBoxShadow": "10px 10px 10px 10px rgba(0, 0, 0, 0.25)",
},
},
},
plugins: [],
};