-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
65 lines (65 loc) · 1.97 KB
/
Copy pathtailwind.config.js
File metadata and controls
65 lines (65 loc) · 1.97 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
63
64
65
/** @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}',
'./src/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
github: {
bg: '#0d1117',
card: '#161b22',
border: '#30363d',
text: '#c9d1d9',
muted: '#8b949e',
accent: '#58a6ff',
success: '#3fb950',
warning: '#d29922',
danger: '#f85149',
},
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
'github-dark': 'linear-gradient(135deg, #0d1117 0%, #161b22 100%)',
'hero-gradient': 'linear-gradient(135deg, #667eea 0%, #764ba2 100%)',
},
animation: {
'fade-in': 'fadeIn 0.5s ease-in-out',
'slide-up': 'slideUp 0.5s ease-out',
'bounce-soft': 'bounceSoft 2s infinite',
'pulse-soft': 'pulseSoft 2s ease-in-out infinite',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
slideUp: {
'0%': { transform: 'translateY(20px)', opacity: '0' },
'100%': { transform: 'translateY(0)', opacity: '1' },
},
bounceSoft: {
'0%, 20%, 50%, 80%, 100%': { transform: 'translateY(0)' },
'40%': { transform: 'translateY(-10px)' },
'60%': { transform: 'translateY(-5px)' },
},
pulseSoft: {
'0%, 100%': { opacity: '0.8' },
'50%': { opacity: '1' },
},
},
fontFamily: {
mono: ['JetBrains Mono', 'Monaco', 'Consolas', 'monospace'],
},
boxShadow: {
'github': '0 8px 32px rgba(139, 148, 158, 0.1)',
'glow': '0 0 20px rgba(88, 166, 255, 0.3)',
},
},
},
plugins: [],
}