-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
43 lines (41 loc) · 968 Bytes
/
Copy pathtailwind.config.ts
File metadata and controls
43 lines (41 loc) · 968 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
36
37
38
39
40
41
42
43
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./src/app/**/*.{ts,tsx}',
'./src/components/**/*.{ts,tsx}',
'./src/lib/**/*.{ts,tsx}',
'./src/data/**/*.{ts,tsx}',
],
theme: {
extend: {
colors: {
win: {
bg: '#c0c0c0',
teal: '#008080',
light: '#fafafa',
dark: '#5a5a5a',
mid: '#808080',
blue: '#000080',
blueLight: '#1084d0',
},
},
boxShadow: {
win: '0.5px 0.5px 0 #000',
},
fontFamily: {
sans: ['var(--font-ms-sans)', 'ui-sans-serif', 'system-ui', 'sans-serif'],
},
keyframes: {
'win-pop': {
'0%': { transform: 'scale(0.98)', opacity: '0' },
'100%': { transform: 'scale(1)', opacity: '1' },
},
},
animation: {
'win-pop': 'win-pop 120ms ease-out',
},
},
},
plugins: [],
};
export default config;