-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
62 lines (60 loc) · 1.4 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
/*
* @Author: [email protected]
* @Date: 2022-05-28 16:39:52
* @LastEditors: [email protected]
* @LastEditTime: 2022-05-30 13:59:10
* @FilePath: /secure-movie/tailwind.config.js
* @Description:
*/
module.exports = {
mode: 'jit',
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}'
],
theme: {
extend: {
minWidth: {
'0': '0',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
'full': '100%',
},
fontSize: {
font22xl: ['1.45rem']
},
colors: {
gray999: '#999',
gray333: '#333',
gray666: '#666',
gray3d: '#3D3D3D',
grayde: '#DEDEDE',
gray0: '#000',
grayf: '#fff',
grayd8: '#D8D8D8',
grage1: '#E1E1E1',
grage8: '#E82DEF',
gragee: '#EEEEEE',
grag1e: '#1ED663 ',
greenbg: '#405e27',
reded: '#ED1B24',
black33: "333333",
grayc4: "C4C4C4"
},
backgroundImage: {
'nextbg': "url('/assets/image/next.png')",
'prevbg': "url('/assets/image/prev.png')",
'auctionsbg': "url('/assets/image/auctiongbg.png')",
'flower-bg': 'url("/assets/image/flower_bg.jpg")',
'home-bg': 'url("/assets/image/home_bg.png")',
'solid-bg': 'url("/assets/image/solid.png")'
},
},
},
variants: {
extend: {},
},
plugins: [
],
}