-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (42 loc) · 1.12 KB
/
tailwind.config.js
File metadata and controls
42 lines (42 loc) · 1.12 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
background: '#09090b',
surface: '#121214',
primary: '#f5f5f5',
secondary: '#a3a3a3',
accent: '#3b82f6',
'safe-green': '#10b981',
'caution-amber': '#f59e0b',
'concern-red': '#ef4444',
},
fontFamily: {
sans: ['Outfit', 'sans-serif'],
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'active-bubble': 'linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%)',
},
animation: {
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'spin-reverse': 'spin-reverse 1s linear infinite',
},
keyframes: {
'spin-reverse': {
from: { transform: 'rotate(360deg)' },
to: { transform: 'rotate(0deg)' },
},
},
boxShadow: {
'glow-green': '0 0 20px rgba(16, 185, 129, 0.3)',
}
},
},
plugins: [],
}