forked from nekusu/apetype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
37 lines (37 loc) · 967 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
animation: {
caret: 'caret 1s steps(2, jump-none) infinite',
},
colors: {
bg: 'var(--bg-color)',
main: 'var(--main-color)',
caret: 'var(--caret-color)',
sub: 'var(--sub-color)',
'sub-alt': 'var(--sub-alt-color)',
text: 'var(--text-color)',
error: 'var(--error-color)',
'error-extra': 'var(--error-extra-color)',
'colorful-error': 'var(--colorful-error-color)',
'colorful-error-extra': 'var(--colorful-error-extra-color)',
},
fontFamily: {
DEFAULT: 'var(--font)',
},
keyframes: {
caret: {
'0%': { opacity: 1 },
'100%': { opacity: 0 },
},
},
},
},
plugins: [],
};