-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
48 lines (48 loc) · 1.1 KB
/
Copy pathtailwind.config.js
File metadata and controls
48 lines (48 loc) · 1.1 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
export default {
content: [
'./ui/**/*.html',
],
theme: {
extend: {
colors: {
ink: '#f4f4ef',
paper: '#090909',
elevated: '#141414',
line: '#2a2a2a',
muted: '#9a9a9a',
fog: '#1b1b1b',
accent: '#f5f5f2',
error: '#b2003a',
},
fontFamily: {
sans: ['"Aptos"', '"Segoe UI Variable"', '"Helvetica Neue"', 'sans-serif'],
mono: ['Consolas', 'Monaco', 'monospace'],
},
keyframes: {
settle: {
'0%': {
opacity: '0',
transform: 'translateY(10px)',
},
'100%': {
opacity: '1',
transform: 'translateY(0)',
},
},
pulseLine: {
'0%, 100%': {
boxShadow: '0 0 0 0 rgba(255,255,255,0)',
},
'50%': {
boxShadow: '0 0 0 1px rgba(255,255,255,0.08)',
},
},
},
animation: {
settle: 'settle 280ms cubic-bezier(0.22, 1, 0.36, 1)',
'pulse-line': 'pulseLine 2.8s ease-in-out infinite',
},
},
},
plugins: [],
};