-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
51 lines (51 loc) · 1.32 KB
/
tailwind.config.js
File metadata and controls
51 lines (51 loc) · 1.32 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
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
cyscom: '#FFFFFF',
pagebg: '#0D1117',
cyberblue: {
100: '#F8F9FA',
200: '#E9ECEF',
300: '#DEE2E6',
400: '#CED4DA',
500: '#ADB5BD',
600: '#6C757D',
700: '#495057',
800: '#343A40',
900: '#212529'
},
cyberdark: {
700: '#1A2130',
800: '#131A24',
900: '#0D1117'
}
},
animation: {
'fadeIn': 'fadeIn 0.5s ease-in-out',
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'float': 'float 6s ease-in-out infinite',
'glow': 'glow 2s ease-in-out infinite alternate'
},
keyframes: {
fadeIn: {
'0%': { opacity: '0', transform: 'translateY(10px)' },
'100%': { opacity: '1', transform: 'translateY(0)' }
},
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px)' }
},
glow: {
'0%': { boxShadow: '0 0 5px rgba(255, 255, 255, 0.3)' },
'100%': { boxShadow: '0 0 20px rgba(255, 255, 255, 0.7)' }
}
},
},
},
plugins: [],
}