-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
60 lines (59 loc) · 1.67 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
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
backgroundImage: {
'upload-background': "url('/upload-bg.png')",
'card-bg-1': "url('/images/bg-1.png')",
'card-bg-2': "url('/images/bg-2.png')",
'round-chain': "url('/images/round-chain.png')",
'staking-1': "url('/images/staking-1.png')",
'staking-2': "url('/images/staking-2.png')",
'step1': "url('/images/step1.png')",
'step2': "url('/images/step2.png')",
'step3': "url('/images/step3.png')",
},
animation: {
marquee: 'marquee 25s linear infinite',
marquee2: 'marquee2 20s linear infinite',
},
keyframes: {
marquee: {
'0%': { transform: 'translateX(100%)' },
'100%': { transform: 'translateX(-100%)' },
},
marquee2: {
'0%': { transform: 'translateX(100%)' },
'100%': { transform: 'translateX(0%)' },
},
},
fontFamily: {
odibee: ["Odibee Sans", "cursive"],
Urbansit: ['Urbansit', 'sans-serif']
},
boxShadow: {
'card': '0px 0px 10px 1px rgba(173, 26, 175, 0.25)'
},
screens: {
'custom-xs': { 'min': '382px' },
'custom-lg': { 'min': '1082px' },
'custom-xl': { 'min': '1400px' },
},
backgroundImage: {
"card": "url('/Card.png')"
}
},
colors: {
"main-bg": "#000C49",
"bg-secondary": "#130B22",
"bg-purple": '#0A0219',
"main-blue": "#1845F3",
"main-box": "#72727219",
"cream": '#E9E1D0',
},
},
plugins: [],
}