-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtailwind.config.js
More file actions
66 lines (65 loc) · 1.74 KB
/
tailwind.config.js
File metadata and controls
66 lines (65 loc) · 1.74 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
66
import heroui from "./hero.ts";
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./node_modules/@heroui/react/dist/**/*.{js,ts,jsx,tsx}"
],
darkMode: 'class',
theme: {
extend: {
colors: {
gray: {
950: '#0a0a0a',
900: '#111111',
850: '#1a1a1a',
800: '#1f1f1f',
750: '#262626',
700: '#2a2a2a',
600: '#404040',
500: '#525252',
},
primary: {
400: '#4ade80',
500: '#22c55e',
600: '#16a34a',
700: '#15803d',
},
accent: {
emerald: '#10b981',
teal: '#14b8a6',
green: '#22c55e',
}
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
'mesh-gradient': 'linear-gradient(135deg, #667eea 0%, #764ba2 100%)',
'dark-gradient': 'linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #1a1a1a 100%)',
},
animation: {
'fade-in': 'fadeIn 0.5s ease-in-out',
'slide-up': 'slideUp 0.3s ease-out',
'pulse-soft': 'pulseSoft 2s infinite',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0', transform: 'translateY(10px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
slideUp: {
'0%': { transform: 'translateY(100%)' },
'100%': { transform: 'translateY(0)' },
},
pulseSoft: {
'0%, 100%': { opacity: '0.8' },
'50%': { opacity: '1' },
}
}
},
},
plugins: [
heroui
],
}