-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
59 lines (58 loc) · 1.24 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
letterSpacing: {
DEFAULT: '-3.36px',
},
extend: {
keyframes: {
blink: {
'0%, 100%': { opacity: '1' },
'50%': { opacity: '0' },
},
softBlink: {
'0%, 100%': { opacity: '1' },
'50%': {
opacity: '0.7',
background: 'hsla(0,0%,18%,0.2)',
},
},
},
borderColor: {
DEFAULT: '#1f1f1f',
},
borderOpacity: {
DEFAULT: '1',
},
borderWidth: {
DEFAULT: '1px',
},
ringColor: {
DEFAULT: '#1f1f1f',
},
ringOpacity: {
DEFAULT: '1',
},
ringWidth: {
DEFAULT: '1px',
},
colors: {
primary: 'rgb(150, 208, 255)',
background: '#0a0a0a',
default: 'hsla( 0,0%,63% ,1)',
white: '#ededed',
gray: '#1f1f1f',
'gray-soft': 'hsla(0,0%,18%,1)',
},
animation: {
blink: 'blink 1s infinite',
'soft-blink': 'softBlink 1s infinite',
},
},
},
};
export default config;