-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
89 lines (84 loc) · 1.83 KB
/
tailwind.config.js
File metadata and controls
89 lines (84 loc) · 1.83 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./public/styles/index.html',
"./public/**/*.{html,js}",
],
darkMode : 'class',
theme: {
screens: {
'xs': '480px',
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
},
extend: {
container : {
},
colors: {
"brown" :{
100 : "#ECE0D1",
300 : "#DBC1AC",
600 : "#967259",
900 : "#634832",
}
},
boxShadow :{
"shadow-normal" : "0px 1px 10px rgba(0, 0, 0, 0.05)",
},
borderRadius: {
'4xl' : '2rem'
},
fontFamily :{
"vazir" : "vazir",
"vazirMedium" : "vazir Medium",
"vazirBold" : "vazir Bold",
},
letterSpacing: {
tightest: '-.065em',
},
spacing : {
"25" : "6.25rem",
"30" : "7.5rem",
"50" : "12.5rem",
},
backgroundImage : {
"home-mobile": "url(../images/headerBgMobile.webp)",
"home-desktop": "url(../images/headerBgDesktop.webp)",
},
productsBg : {
"products-bg" : "url(../images/body-bg.png)",
}
},
},
plugins: [
function ({ addVariant }) {
addVariant('child', '& > *');
addVariant('child-hover', '& > *:hover');
},
function ({ addComponents }) {
addComponents({
'.container': {
width: '100%',
// marginLeft: 'auto',
// marginRight: 'auto',
// paddingLeft: '2rem',
// paddingRight: '2rem',
'@screen sm': {
maxWidth: '640px',
},
'@screen md': {
maxWidth: '768px',
},
'@screen lg': {
maxWidth: '1024px',
},
'@screen xl': {
maxWidth: '1280px',
},
}
})
}
],
}