-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
50 lines (50 loc) · 1.48 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
// Tailwind Configuration for PyFunc Website
module.exports = {
darkMode: 'class',
content: [
'./index.html',
'./js/*.js'
],
theme: {
extend: {
colors: {
'pyfunc-green': {
50: '#e8f5e9',
100: '#c8e6c9',
200: '#a5d6a7',
300: '#81c784',
400: '#66bb6a',
500: '#4caf50',
600: '#43a047',
700: '#388e3c',
800: '#2e7d32',
900: '#1b5e20'
},
'dark': {
50: '#1a202c',
100: '#171923',
200: '#2d3748',
300: '#4a5568',
400: '#718096',
500: '#4a5568',
600: '#2d3748',
700: '#1a202c',
800: '#171923',
900: '#0d1117'
}
},
animation: {
'float': 'float 3s ease-in-out infinite',
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'spin-slow': 'spin 10s linear infinite'
},
keyframes: {
'float': {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px)' }
}
}
}
},
plugins: []
};