-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
67 lines (67 loc) · 1.46 KB
/
tailwind.config.js
File metadata and controls
67 lines (67 loc) · 1.46 KB
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
62
63
64
65
66
67
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./src/lib/**/*.{html,js,svelte,ts}' // Only scan lib components
],
theme: {
extend: {
fontFamily: {
brains: [
'JetBrains Mono',
'ui-monospace',
'SFMono-Regular',
'Menlo',
'Monaco',
'Consolas',
'Liberation Mono',
'Courier New',
'monospace'
],
mono: [
'ui-monospace',
'SFMono-Regular',
'Menlo',
'Monaco',
'Consolas',
'Liberation Mono',
'Courier New',
'monospace'
],
roboto: ['Roboto Mono', 'monospace'],
mont: ['Montserrat', 'sans-serif'],
cprime: ['Courier Prime', 'sans-serif'],
ibm: ['IBM Plex Mono', 'sans-serif'],
euro: ['euro', 'sans-serif'],
din: ['din', 'sans-serif'],
din2014: ['din-2014', 'sans-serif'],
nimbus: ['nimbus', 'sans-serif']
},
animation: {
'flap-down-top': 'flapDownTop var(--duration, 300ms) ease-in forwards',
'flap-down-bottom': 'flapDownBottom var(--duration, 300ms) ease-out forwards'
},
keyframes: {
flapDownTop: {
from: {
transform: 'rotateX(0deg) translateZ(0)'
},
'50%, to': {
transform: 'rotateX(90deg) translateZ(0)'
}
},
flapDownBottom: {
'from, 50%': {
transform: 'rotateX(90deg) translateZ(0)'
},
'90%': {
transform: 'rotateX(20deg) translateZ(0)'
},
to: {
transform: 'rotateX(0deg) translateZ(0)'
}
}
}
}
},
plugins: []
};