-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
43 lines (43 loc) · 1 KB
/
tailwind.config.js
File metadata and controls
43 lines (43 loc) · 1 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
'godwin-blue': '#1e3a8a',
'godwin-gold': '#f59e0b',
'godwin-gray': '#374151',
'godwin-light': '#f8fafc',
},
fontFamily: {
'sans': ['Inter', 'system-ui', 'sans-serif'],
'serif': ['Playfair Display', 'serif'],
},
animation: {
'fade-in-up': 'fadeInUp 0.6s ease-out',
'fade-in': 'fadeIn 0.8s ease-out',
},
keyframes: {
fadeInUp: {
'0%': {
opacity: '0',
transform: 'translateY(30px)',
},
'100%': {
opacity: '1',
transform: 'translateY(0)',
},
},
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
},
},
},
plugins: [],
}