-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
56 lines (55 loc) · 1.54 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.{js,jsx,ts,tsx}',
],
theme: {
screens: {
'phone': '250px',
'tablet': '750px',
'laptop': '1024px',
'desktop': '1280px',
},
extend: {
colors: {
'shadow': 'rgba(25, 25, 25, 0.67)',
'dark': 'rgba(34, 34, 46)',
'computer-bg': '#44445e',
'section-bg': '#292930'
},
backgroundImage: {
'hero-img': 'radial-gradient(circle, rgba(247,246,157,0.006039915966386533) 22%, rgba(18,18,18,0.6474964985994398) 60%), url("/public/images/cover.png")',
'computer-img': 'radial-gradient(circle, rgba(247,246,157,0.006039915966386533) 22%, rgba(18,18,18,0.6474964985994398) 60%)'
},
fontFamily: {
'vt323': ['VT323', 'monospace'],
'ibm-sans': ['IBM Plex Sans', 'sans-serif'],
'ibm-mono': ['IBM Plex Sans', 'monospace'],
'roboto-mono': ['Roboto Mono', 'monospace']
},
animation: {
'bg-fade-out-1.5': 'bgFadeOut 1.5s ease-in-out',
'fade-in-2': 'fadeIn 2s ease-in-out',
},
width: {
'computer-size': '350px'
},
keyframes: theme => ({
bgFadeOut: {
'0%': { backgroundColor: theme('colors.black') },
'100%': { backgroundColor: theme('colors.transparent') },
},
fadeIn: {
'0%': { opacity: '0'},
'100%': { opacity: '1'},
}
}),
},
},
variants: {
extend: {
animation: ['group-hover'],
},
},
plugins: [],
}