-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
77 lines (77 loc) · 1.75 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
76
77
module.exports = {
mode: 'jit',
purge: ['./src/**/*.{js,ts,jsx,tsx}'],
darkMode: false,
theme: {
fontFamily: {
sans: ['ui-sans-serif', 'system-ui'],
whyte: ['Whyte'],
poppins: ['Poppins', 'normal'],
},
fontSize: {
xs: '0.75rem',
sm: '0.875rem',
base: '1rem',
lg: '1.125rem',
xl: '1.25rem',
'2xl': '1.5rem',
'3xl': '1.875rem',
'4xl': '2.25rem',
'5xl': '3rem',
'6xl': '4rem',
},
backgroundSize: {
auto: 'auto',
cover: 'cover',
contain: 'contain',
mobile: '700px',
desktop: '1330px',
},
extend: {
colors: {
whiteCustom: '#F2F2F2',
whiteCustom2: '#FCFCFC',
blackCustom: '#000514',
primary: '#ec4755',
secondary: '#a12c34',
tertiary: '#99a0a3',
border: '#1a2e35',
background: '#000514',
background2: '#E9E9E9',
},
height: {
'65vh': '65vh',
},
animation: {
vote: 'vote 1s ease-in-out',
},
backgroundImage: {
test: '#ec4755',
'hero-pattern': "url('/assets/images/background.png')",
product: "url('/assets/images/Product1.png')",
footer: "url('/assets/images/backgroundFooter.png')",
},
backgroundPosition: {
'bottom-custom': 'center bottom -7rem',
},
boxShadow: {
productInfo: '0px 40px 32px -24px rgba(15, 15, 15, 0.12)',
},
keyframes: {
vote: {
'0%, 100%': {
transform: 'rotate(0deg)',
},
'25%': {
transform: 'rotate(-30deg)',
},
'75%': {
transform: 'rotate(30deg)',
},
},
},
},
},
variants: {},
plugins: [],
}