-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
67 lines (66 loc) · 1.26 KB
/
tailwind.config.ts
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
import type {Config} from 'tailwindcss';
export default {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./node_modules/@solana/wallet-adapter-react-ui/**/*.js'
],
theme: {
extend: {
colors: {
background: 'var(--background)',
foreground: 'var(--foreground)',
white: '#fff',
black: '#000',
'violet-light': '#6120FD',
'violet-dark': '#5000FF',
accent: '#33FFEE',
'accent-hover': '#E64DFF'
},
keyframes: {
circlePulse: {
'0%': {
strokeWidth: '24'
},
'50%': {
strokeWidth: '40'
},
'100%': {
strokeWidth: '24'
}
},
largeCirclePulse: {
'0%': {
strokeWidth: '48'
},
'50%': {
strokeWidth: '80'
},
'100%': {
strokeWidth: '48'
}
}
},
screens: {
xs: '376px',
lg: '1300px',
xl: '2560px'
},
animation: {
'circle-pulse': 'circlePulse 1.5s ease-in-out infinite',
'large-circle-pulse': 'largeCirclePulse 1.5s ease-in-out infinite'
},
transitionProperty: {
transform: 'transform'
},
perspective: {
'1000': '1000px'
},
backfaceVisibility: {
hidden: 'hidden'
}
}
},
plugins: []
} satisfies Config;