-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
37 lines (36 loc) · 1.21 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
],
darkMode: 'false',
theme: {
extend: {
colors: {
'app-color': 'orange',
},
fontFamily: {
heading: ['Catamaran', 'sans-serif'],
// body: ['Roboto Condensed', 'sans-serif'],
},
keyframes: {
'sloganReveal': {
'0%': { opacity: 0, 'text-shadow': 'none' },
'70%': { opacity: 1, 'text-shadow': 'none' },
'100%': { opacity: 1, 'text-shadow': ' -5px 5px 5px hsla(0, 0%, 100%, .5)' }
},
'particleReveal': {
'0%': { opacity: 0 },
'100%': { opacity: 1 }
},
},
animation: {
sloganReveal: 'sloganReveal 2s linear 1s 1 normal forwards',
particleReveal: 'particleReveal 2s linear 1s 1 normal forwards',
}
},
},
plugins: [],
}