-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
39 lines (37 loc) · 971 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
retro: {
pink: '#ff6b97',
blue: '#4d9de0',
green: '#3eef7d',
yellow: '#fff700',
orange: '#ff8c00',
purple: '#9b5de5',
cyan: '#00fff5',
},
},
fontFamily: {
pixel: ['VT323', 'monospace'],
},
animation: {
'pulse-fast': 'pulse 0.5s linear infinite',
'beam-fast': 'beam 5s linear infinite',
},
keyframes: {
beam: {
'0%, 100%': { transform: 'translateX(-100%) rotate(45deg)' },
'50%': { transform: 'translateX(100%) rotate(45deg)' },
},
},
},
},
plugins: [],
}