-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
60 lines (60 loc) · 1.45 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
56
57
58
59
60
module.exports = {
content: [
'./index.html',
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
'./vendor/filament/**/*.blade.php',
],
theme: {
extend: {
animation: {
'fade-in': 'fadeIn 0.15s ease-in-out forwards',
'fade-out': 'fadeOut 0.15s ease-in-out forwards',
},
keyframes: {
fadeIn: {
'0%': { height: 'initial' },
'1%': { opacity: '0', display: 'block' },
'100%': { opacity: '1' },
},
fadeOut: {
'0%': { opacity: '1' },
'99%': { opacity: '0', height: 'initial' },
'100%': { height: '0px', opacity: '0', display: 'none' },
},
},
colors: {
kula: {
light: {
50: '#eef2ff',
100: '#e0e5ff',
200: '#c7ceff',
300: '#aeb7ff',
400: '#7d8eff',
500: '#4c65ff',
600: '#445bff',
700: '#3a50f1',
800: '#303ce0',
900: '#1d1a4b',
950: '#1a1744',
},
dark: {
50: '#1a1744',
100: '#1d1a4b',
200: '#303ce0',
300: '#3a50f1',
400: '#445bff',
500: '#4c65ff',
600: '#7d8eff',
700: '#aeb7ff',
800: '#c7ceff',
900: '#e0e5ff',
950: '#eef2ff',
},
},
},
},
},
plugins: [],
}