-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
51 lines (51 loc) · 1.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
// eslint-disable-next-line no-undef
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
purge: ['./components/**/*.{js,ts,jsx,tsx}', './pages/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
white: '#fafafa',
'light-button-bg': '#ececec',
'light-button': '#a5a5a5',
'light-text': '#45433F',
'light-aux-button': '#d3d3d3',
'light-aux-text': '#A8A6A2',
'dark-bg': '#1E2633',
'dark-text': '#B7C3D3',
'dark-text-note': '#d3dff2',
'dark-button-bg': '#313A48',
'dark-button': '#566375',
'dark-aux-text': '#65768F',
'dark-aux-button': '#526480',
'light-dark-bg': '#232D3C',
},
spacing: {
72: '18rem',
80: '20rem',
84: '21rem',
88: '22rem',
96: '24rem',
108: '27rem',
120: '30rem',
},
backgroundImage: () => ({
cover: "url('/cover.jpg')",
}),
screens: {
'iphone-8': '375px',
'iphone-8-plus': '413px',
mac: '500px',
},
},
},
variants: {
// all the following default to ['responsive']
mixBlendMode: ['responsive'],
backgroundBlendMode: ['responsive'],
isolation: ['responsive'],
},
}