-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
47 lines (47 loc) · 1.01 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
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
fontFamily: {
serif: "DM Serif Display",
body: "Rubik",
},
container: {
padding: {
DEFAULT: "1rem",
lg: "0",
},
},
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1120px",
},
extend: {
colors: {
page: "#FEF8F5",
primary: "#402B2B",
accent: {
DEFAULT: "#EE4D47",
hover: "#DA423D",
},
tint: "#FDEDE8",
darkblue: "#0F264C",
},
dropShadow: {
primary: "0 20px 40px rgba(238, 77, 71, 0.1)",
secondary: "0px 30px 40px rgba(244, 125, 103, 0.2)",
tertiary: "0 20px 40px rgba(32, 56, 100, 0.3);",
},
backgroundImage: {
hero: "url('/images/hero/scene.svg')",
faq: "url('/images/faq/bg.svg')",
footer: "url('/images/footer/bg.svg')",
},
},
},
plugins: [],
};