-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
76 lines (65 loc) · 1.45 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./templates/**/*.html',
'**/templates/**/*.html'],
darkMode: "class",
theme: {
extend: {
colors: {
"brown": {
100: "#ECE0D1",
300: "#DBC1AC",
600: "#967259",
900: "#634832"
}
},
boxShadow: {
"normal": "0px 1px 10px rgba(0, 0, 0, 0.05)",
},
borderRadius: {
"4xl": "2rem",
},
fontFamily: {
"Dana": "Dana",
"DanaMedium": "Dana Medium",
"DanaDemiBold": "Dana DemiBold",
"Morabba": "Morabba Light",
"MorabbaMedium": "Morabba Medium",
"MorabbaBold": "Morabba Bold"
},
letterSpacing: {
"tightest": "-0.65"
},
spacing: {
"4.5": "1.125rem",
"30": "7.5rem",
"25": "6.25rem",
"50": "12.5rem",
},
container: {
center: true,
padding: {
DEFAULT: "1rem",
lg: "0.625rem",
}
}
},
screens: {
'xs': '480px',
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
},
backgroundImage: {
"home-mobile": "url(../images/headerBgMobile.webp)",
"home-desktop": "url(../images/headerBgDesktop.webp)",
}
},
plugins: [
function ({addVariant}) {
addVariant('child', '& > *');
addVariant('child-hove', '& > *:hover');
}
],
}