forked from icpay/icpay-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
67 lines (67 loc) · 1.83 KB
/
tailwind.config.js
File metadata and controls
67 lines (67 loc) · 1.83 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
67
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/**/*.{js,ts,jsx,tsx}",
"./examples/**/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {
colors: {
background: '#0b0f1a',
foreground: '#e5e7eb',
card: '#0b0f1a',
'card-foreground': '#e5e7eb',
popover: '#0b0f1a',
'popover-foreground': '#e5e7eb',
primary: '#0066FF',
'primary-foreground': '#ffffff',
secondary: '#1f2937',
'secondary-foreground': '#e5e7eb',
muted: '#1f2937',
'muted-foreground': '#9ca3af',
accent: '#1f2937',
'accent-foreground': '#e5e7eb',
destructive: '#ef4444',
border: '#263042',
input: '#1f2937',
ring: '#0066FF',
sidebar: '#0b0f1a',
'sidebar-foreground': '#e5e7eb',
'sidebar-primary': '#0066FF',
'sidebar-primary-foreground': '#ffffff',
'sidebar-accent': '#1f2937',
'sidebar-accent-foreground': '#e5e7eb',
'sidebar-border': '#263042',
'sidebar-ring': '#0066FF',
},
borderRadius: {
'xs': '0.25rem',
},
animation: {
'fade-in-0': 'fade-in 0.5s ease-out',
'fade-out-0': 'fade-out 0.5s ease-in',
'zoom-in-95': 'zoom-in 0.2s ease-out',
'zoom-out-95': 'zoom-out 0.2s ease-in',
},
keyframes: {
'fade-in': {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
'fade-out': {
'0%': { opacity: '1' },
'100%': { opacity: '0' },
},
'zoom-in': {
'0%': { transform: 'scale(0.95)' },
'100%': { transform: 'scale(1)' },
},
'zoom-out': {
'0%': { transform: 'scale(1)' },
'100%': { transform: 'scale(0.95)' },
},
},
},
},
plugins: [],
}