-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.js
More file actions
58 lines (58 loc) · 1.89 KB
/
tailwind.config.js
File metadata and controls
58 lines (58 loc) · 1.89 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
// Tokyo Night theme colors - using CSS variables for dynamic theming
'tokyo-bg': 'var(--tokyo-bg)',
'tokyo-bg-dark': 'var(--tokyo-bg-dark)',
'tokyo-bg-hl': 'var(--tokyo-bg-hl)',
'tokyo-fg': 'var(--tokyo-fg)',
'tokyo-fg-dark': 'var(--tokyo-fg-dark)',
'tokyo-selection': 'var(--tokyo-selection)',
'tokyo-comment': 'var(--tokyo-comment)',
'tokyo-red': 'var(--tokyo-red)',
'tokyo-green': 'var(--tokyo-green)',
'tokyo-yellow': 'var(--tokyo-yellow)',
'tokyo-blue': 'var(--tokyo-blue)',
'tokyo-magenta': 'var(--tokyo-magenta)',
'tokyo-cyan': 'var(--tokyo-cyan)',
'tokyo-orange': 'var(--tokyo-orange)',
},
animation: {
'fade-in': 'fadeIn 0.15s ease-out forwards',
'slide-in-right': 'slideInRight 0.3s ease-out',
'in': 'animateIn 0.15s ease-out',
'zoom-in-95': 'zoomIn95 0.15s ease-out',
'slide-in-from-bottom-2': 'slideInFromBottom 0.15s ease-out',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0', transform: 'scale(0.95)' },
'100%': { opacity: '1', transform: 'scale(1)' },
},
slideInRight: {
'0%': { opacity: '0', transform: 'translateX(1rem)' },
'100%': { opacity: '1', transform: 'translateX(0)' },
},
animateIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
zoomIn95: {
'0%': { transform: 'scale(0.95)' },
'100%': { transform: 'scale(1)' },
},
slideInFromBottom: {
'0%': { transform: 'translateY(0.5rem)' },
'100%': { transform: 'translateY(0)' },
},
},
},
},
plugins: [],
}