-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
72 lines (63 loc) · 1.47 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./public/*.{html,js}"],
darkMode: "class",
theme: {
extend: {
colors: {
"brown": {
100: "#ECE0D1",
300: "#DBC1AC",
600: "#967259",
900: "#634832"
},
},
boxShow: {
"normal": "0px 1px 10px 0px rgba(0, 0, 0, 0.05)",
},
borderRadius: {
"4xl": "2rem"
},
fontFamily: {
"vaziry-bold": "Vazir-Bold",
"Armita-bold": "Armita-Black",
"noto-bold": "noto-bold",
"noto-light": "noto-light",
"noto-medium": "noto-medium",
"noto-regular": "noto-regular"
},
letterSpacing: {
'tightest': '-0.065em',
},
spacing: {
'4.5':'1.125rem',
'30': '7.5rem',
'25': "6.25rem",
'50':"12.5rem"
},
container: {
center: true,
padding: {
DEFAULT: "1rem",
lg:"0.625rem"
}
},
backgroundImage: {
"home-mobile":"url(../images/headerBgMobile.webp)",
"home-desktop":"url(../images/headerBgDesktop.webp)"
},
},
screens: {
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
},
},
plugins: [
function ( { addVariant } ) {
addVariant( 'child', '& > *' );
addVariant( 'child-hover', '& > *:hover' );
}
]
}