-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
35 lines (33 loc) · 834 Bytes
/
tailwind.config.ts
File metadata and controls
35 lines (33 loc) · 834 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
import type { Config } from 'tailwindcss';
const config: Config = {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx,css,md,mdx,html,json,scss}'],
darkMode: 'class',
theme: {
extend: {
colors: {
'burnt-orange': {
DEFAULT: '#CC5500',
},
},
fontSize: {
'2xs': '0.625rem',
},
animation: {
fade: 'fadeIn .5s ease-in-out',
flash: 'flash 500ms ease-in-out',
},
keyframes: {
fadeIn: {
from: { opacity: '0' },
to: { opacity: '100' },
},
flash: {
'0%': { color: 'rgb(34 197 94)', opacity: '100' }, // Tailwind's green-500
'100%': { color: 'inherit', opacity: '100' }, // Back to the original color
},
},
},
},
plugins: [],
};
export default config;