forked from phpx-foundation/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (43 loc) · 826 Bytes
/
tailwind.config.js
File metadata and controls
44 lines (43 loc) · 826 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./app/View/**/*.php",
"./resources/**/*.php",
"./resources/**/*.js",
"./resources/**/*.jsx",
],
darkMode: "selector",
theme: {
extend: {
fontFamily: {
mono: [
'Fira Code',
'ui-monospace',
'SFMono-Regular',
'Menlo',
'Monaco',
'Consolas',
'"Liberation Mono"',
'"Courier New"',
'monospace',
],
},
keyframes: {
cursor: {
'0%, 100%': { backgroundColor: '#000' },
'50%': { backgroundColor: '#fff' },
}
},
animation: {
cursor: 'cursor 1.2s ease-in-out infinite',
'spin-ultra-slow': 'spin 15s linear infinite',
},
boxShadow: {
'sharp': '8px 8px 0px 5px rgba(0,0,0,0.8)',
}
},
},
plugins: [
require('@tailwindcss/typography'),
],
};