-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
46 lines (44 loc) · 927 Bytes
/
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 colors = require('tailwindcss/colors')
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
padding: {
'p-r': '40vh',
'plr' : '18vw',
'ptt': '8vh'
},
backgroundImage: {
},
height: {
'1080': '1080px',
'hs': '20vh',
'hm': '50vh',
'hl': '80vh'
},
colors: {
custom: {
DEFAULT: '#10B981',
light: '#D1FAE5'
},
neutral: colors.neutral,
'neon-blue': "#2dfcfc",
cyan: colors.cyan,
},
animation: {
fadeIn: "fadeIn 2s ease-in forwards"
},
keyframes: {
fadeIn: {
"50%": { opacity: 0 },
"100%": { opacity: 1 },
}
}
},
},
variants: {},
plugins: [
require('tailwind-scrollbar')
],
}