-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
45 lines (40 loc) · 1.15 KB
/
tailwind.config.js
File metadata and controls
45 lines (40 loc) · 1.15 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: [ "./apps/www/src/**/*.{html,js,astro,jsx,ts,tsx}" ],
theme: {
extend: {
colors: {
background: '#FFFCF3',
focus: '#D2273D',
primary: {
1: '#FFFCF3',
2: '#D2273D'
},
accent: {
1: '#00AEB9',
2: '#383838',
3: '#000017'
},
},
fontFamily: {
primary: ['"Primary Font"', 'sans-serif'],
secondary: ['"Secondary Font"', 'sans-serif'],
},
fontWeight: {
regular: '400',
medium: '500',
bold: '700',
},
keyframes: {
flip: {
'0%': { transform: 'rotateX(0deg)' },
'100%': { transform: 'rotateX(360deg)' }
}
},
animation: {
'flip': 'flip 0.5s ease-in-out'
}
},
},
plugins: [],
}