-
Notifications
You must be signed in to change notification settings - Fork 9
/
tailwind.config.js
49 lines (49 loc) · 1.12 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
module.exports = {
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
gridTemplateColumns: {
dashboard: '1fr 7fr;',
list: 'min-content 1fr;',
},
maxHeight: {
95: '95vh',
500: '500px',
},
maxWidth: {
400: '400px',
675: '675px',
80: '80vw',
90: '90vw',
},
minHeight: {
364: '364px',
170: '170px',
},
},
colors: {
primary: 'var(--color-primary)',
secondary: 'var(--color-secondary)',
tertiary: 'var(--color-tertiary)',
quad: 'var(--color-quad)',
darkGreen: 'var(--color-dark-green)',
white: 'var(--color-white)',
error: 'var(--color-error)',
grey: 'var(--color-grey)',
forestGreen: 'var(--color-forest-green)',
},
boxShadow: {
xs: 'var(--shadow-xs)',
light: 'var(--shadow-light)',
base: 'var(--shadow-base)',
},
fontFamily: {
body: ['Poppins', 'sans-serif'],
},
},
variants: {
extend: {},
},
plugins: [],
}