-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.ts
37 lines (37 loc) · 1022 Bytes
/
tailwind.config.ts
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} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
sans: ['Verdana', 'sans-serif'],
},
colors: {
background: 'var(--background)',
text: 'var(--text)',
subtitle: 'var(--subtitle)',
card: 'var(--card)',
border: 'var(--border)',
primary: 'var(--primary)',
secondary: 'var(--secondary)',
errorBackground: '#ff000011',
errorBorder: '#ff0000',
successBackground: '#00ff0011',
successBorder: '#00ff00',
warningBackground: '#ffff0011',
warningBorder: '#ffff00',
},
keyframes: {
"caret-blink": {
"0%,70%,100%": { opacity: "1" },
"20%,50%": { opacity: "0" },
},
},
animation: {
"caret-blink": "caret-blink 1.25s ease-out infinite",
},
},
},
plugins: [require('@tailwindcss/typography')],
darkMode: 'class',
};