-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.mjs
More file actions
62 lines (62 loc) · 1.72 KB
/
tailwind.config.mjs
File metadata and controls
62 lines (62 loc) · 1.72 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
dark: {
900: '#0a0a0b',
800: '#111113',
700: '#18181b',
600: '#232329',
500: '#2e2e35',
},
accent: {
primary: '#00d4aa',
secondary: '#00b894',
glow: 'rgba(0, 212, 170, 0.15)',
},
text: {
primary: '#f4f4f5',
secondary: '#a1a1aa',
muted: '#71717a',
}
},
fontFamily: {
display: ['Outfit', 'sans-serif'],
body: ['DM Sans', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
},
animation: {
'fade-up': 'fadeUp 0.6s ease-out forwards',
'fade-in': 'fadeIn 0.8s ease-out forwards',
'slide-in': 'slideIn 0.5s ease-out forwards',
'glow-pulse': 'glowPulse 3s ease-in-out infinite',
'float': 'float 6s ease-in-out infinite',
},
keyframes: {
fadeUp: {
'0%': { opacity: '0', transform: 'translateY(30px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
slideIn: {
'0%': { opacity: '0', transform: 'translateX(-20px)' },
'100%': { opacity: '1', transform: 'translateX(0)' },
},
glowPulse: {
'0%, 100%': { opacity: '0.4' },
'50%': { opacity: '0.8' },
},
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px)' },
},
},
},
},
plugins: [],
}