-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
46 lines (46 loc) · 1.05 KB
/
tailwind.config.js
File metadata and controls
46 lines (46 loc) · 1.05 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
tech: {
bg: '#0a0e1a',
surface: '#111827',
border: '#374151',
primary: '#3b82f6',
secondary: '#8b5cf6',
cyan: '#06b6d4',
green: '#10b981',
}
},
fontFamily: {
mono: ['"JetBrains Mono"', 'monospace'],
},
animation: {
'pulse-glow': 'pulse-glow 2s ease-in-out infinite',
'slide-up': 'slide-up 0.6s ease-out',
'spin-slow': 'spin 3s linear infinite',
},
keyframes: {
'pulse-glow': {
'0%, 100%': { opacity: 0.5 },
'50%': { opacity: 1 },
},
'slide-up': {
'0%': { opacity: 0, transform: 'translateY(20px)' },
'100%': { opacity: 1, transform: 'translateY(0)' },
}
},
blur: {
'3xl': '40px',
}
},
},
plugins: [
require('@tailwindcss/typography'),
],
}