-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
46 lines (45 loc) · 1.04 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
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
darkMode: false, // or 'media' or 'class'
theme: {
fontFamily: {
body: ['"Futura PT"', ...defaultTheme.fontFamily.sans],
},
extend: {
colors: {
dark: '#22223B',
navy: '#4A4E69',
lavender: '#9A8C98',
tan: '#C9ADA7',
light: '#F2E9E4',
},
margin: {
'-wrap': '-5.62vw',
'wrap': '5.62vw',
},
maxHeight: {
'screen-1/4': '25vh',
'screen-1/2': '50vh',
'screen-3/4': '75vh',
},
minHeight: {
'screen-1/4': '25vh',
'screen-1/2': '50vh',
'screen-3/4': '75vh',
},
padding: {
'wrap': '5.62vw',
},
},
},
variants: {
extend: {
opacity: ['group-hover', 'group-focus'],
padding: ['group-hover', 'group-focus', 'hover', 'focus'],
},
},
plugins: [
require('@tailwindcss/aspect-ratio'),
],
}