-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
61 lines (58 loc) · 2.05 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
61
import defaultTheme from "tailwindcss/defaultTheme";
import forms from "@tailwindcss/forms";
import typography from "@tailwindcss/typography";
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./app/Filament/**/*.php',
'./resources/views/filament/**/*.blade.php',
'./vendor/filament/**/*.blade.php',
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./vendor/laravel/jetstream/**/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.vue',
],
theme: {
extend: {
colors: {
global: {
blue: {
100: 'rgb(111, 163, 240)',
}
}
},
animation: {
'loader-bar-1': 'loader-bar 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s infinite',
'loader-bar-2': 'loader-bar 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 200ms infinite',
'loader-bar-3': 'loader-bar 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 400ms infinite',
},
keyframes: {
'loader-bar': {
'0%': {
height: '80px',
backgroundColor: 'rgb(111, 163, 240)',
},
'20%': {
height: '80px',
},
'40%': {
height: '120px',
backgroundColor: 'rgb(111, 200, 240)',
},
'80%': {
height: '80px',
},
'100%': {
height: '80px',
backgroundColor: 'rgb(111, 163, 240)',
},
}
},
fontFamily: {
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [forms, typography],
};