-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtailwind.config.js
48 lines (48 loc) · 975 Bytes
/
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
"san-marino": "#4a55a2",
"tea-green": "#bfedc1",
"white": "#fff",
"yellow-tick": "#efead8",
"lime-green": "#C8ECC5",
"aubergine": "#906296",
"light-purple": "#7E94C7",
},
spacing: {
"62px": "62px",
"78px": "78px",
"120px": "120px",
},
padding: {
"350": "350px",
"500": "500px",
"700": "700px",
"200": "-700px",
},
margin: {
"200": "-200px",
},
width: {
"200": "200%",
"30%": "30%",
"23%": "23%",
},
height: {
"89vw": "89vw",
"80vw": "80vw",
},
},
fontFamily: {
"playfair-display": ["Playfair Display"],
"raleway": ["Raleway"],
},
},
plugins: [],
}