-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
108 lines (108 loc) · 2.29 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.tsx'],
future: {
hoverOnlyWhenSupported: true,
},
theme: {
extend: {
boxShadow: {
popover: '0 0 50px -15px rgba(0, 0, 0, 0.3)',
},
fontFamily: {
sans: [
'pp-neue-montreal-regular',
'system-ui',
'-apple-system',
'BlinkMacSystemFont',
'Segoe UI',
'Roboto',
'Oxygen',
'Ubuntu',
'Cantarell',
'Open Sans',
'Helvetica Neue',
'sans-serif',
],
},
fontSize: {
'4.5xl': ['2.5rem', '3rem'],
},
colors: {
gray: '#F7F7F7',
primary: '#1A1A1A',
secondary: '#999999',
tertiary: '#E2E2E2',
},
animation: {
'slide-left': 'moveSlideshow 15s linear infinite',
},
keyframes: {
moveSlideshow: {
'100%': {
transform: 'translateX(-20%)',
},
},
slideLeft: {
'0%': {
transform: 'translateX(100%)',
},
'100%': {
transform: 'translateX(0%)',
},
},
slideRight: {
'0%': {
transform: 'translateX(0%)',
},
'100%': {
transform: 'translateX(100%)',
},
},
},
screens: {
'4xl': '2560px',
xs: '375px',
},
margin: {
15: '3.75rem',
},
padding: {
full: '100%',
},
gridTemplateColumns: {
header: '1fr auto 1fr',
'cart-item': 'auto 1fr 1fr',
article: '33% auto',
},
height: {
7.5: '1.875rem',
8.5: '2.125rem',
'blog-image': '527px',
'caption-image': '815px',
'caption-image-mobile': '500px',
},
width: {
8.5: '2.125rem',
110: '27.5rem',
},
maxHeight: {
full: '100%',
screen: '100vh',
},
maxWidth: {
'3.5xl': '50rem',
full: '100%',
screen: '100vw',
},
backgroundImage: {
'split-white-black':
'linear-gradient(to bottom, white 50% , #1A1A1A 50%);',
},
transitionDuration: {
350: '350ms',
},
},
},
plugins: [],
};