-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
91 lines (89 loc) · 2.73 KB
/
tailwind.config.ts
File metadata and controls
91 lines (89 loc) · 2.73 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
background: 'var(--background)',
foreground: 'var(--foreground)',
'brand-dark': '#1E1E1E',
'brand-orange': {
DEFAULT: '#FB4D01',
50: '#FEF2EE',
100: '#FDE5DD',
200: '#FBCBBB',
300: '#F9B199',
400: '#F79777',
500: '#FB4D01',
600: '#E04401',
700: '#C63B01',
800: '#AB3301',
900: '#912A01',
},
},
animation: {
'marquee': 'marquee 60s linear infinite',
'marquee-fast': 'marquee 12s linear infinite',
'aurora-spin': 'aurora-spin 20s linear infinite',
'aurora-spin-reverse': 'aurora-spin 15s linear infinite reverse',
'cyber-spin': 'cyber-spin 12s linear infinite',
'cyber-scan': 'cyber-scan 3s ease-in-out infinite',
'equalizer': 'equalizer 1.5s ease-in-out infinite',
'blink': 'blink 2s ease-in-out infinite',
'glitch': 'glitch 2s linear infinite',
'float-diagonal': 'float-diagonal 3s ease-in-out infinite',
'tick-wave': 'tick-wave 1.4s ease-in-out infinite',
},
keyframes: {
marquee: {
'0%': { transform: 'translate3d(0, 0, 0)' },
'100%': { transform: 'translate3d(-12.5%, 0, 0)' },
},
'aurora-spin': {
'0%': { transform: 'rotate(0deg)' },
'100%': { transform: 'rotate(360deg)' },
},
'cyber-spin': {
'0%': { transform: 'rotate(0deg)' },
'100%': { transform: 'rotate(360deg)' },
},
'cyber-scan': {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(100%)' },
},
'equalizer': {
'0%, 100%': { height: '20%' },
'50%': { height: '100%' },
},
'blink': {
'0%, 100%': { opacity: '1' },
'50%': { opacity: '0.3' },
},
'glitch': {
'0%': { opacity: '1' },
'20%': { opacity: '1' },
'21%': { opacity: '0' },
'22%': { opacity: '1' },
'69%': { opacity: '1' },
'70%': { opacity: '0' },
'71%': { opacity: '1' },
'100%': { opacity: '1' },
},
'float-diagonal': {
'0%, 100%': { transform: 'translate(0, 0)' },
'50%': { transform: 'translate(10px, -10px)' },
},
'tick-wave': {
'0%, 100%': { height: '4px' },
'50%': { height: '16px' },
},
},
},
},
plugins: [],
};
export default config;