-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.ts
42 lines (41 loc) · 1.08 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
import { withPenumbra, tailwindConfig } from '@penumbra-zone/ui/theme';
export default withPenumbra({
content: ['./src/**/*.{js,ts,jsx,tsx,mdx,css}', './app/**/*.{js,ts,jsx,tsx,mdx,css}'],
theme: {
extend: {
colors: {
...tailwindConfig.theme.extend.colors,
app: {
main: '#0d0d0d',
},
sell: {
bg: 'rgba(175, 38, 38, 0.24)',
},
buy: {
bg: 'rgba(28, 121, 63, 0.24)',
},
border: {
base: '#262626',
faded: 'rgba(250,250,250,0.15)',
},
},
backgroundImage: {
...tailwindConfig.theme.extend.backgroundImage,
shimmer:
'linear-gradient(90deg, rgba(250, 250, 250, 0.05) 0%, rgba(250, 250, 250, 0.10) 100%)',
},
keyframes: {
...tailwindConfig.theme.extend.keyframes,
shimmer: {
'0%': { left: '-50%' },
'100%': { left: '150%' },
},
},
animation: {
...tailwindConfig.theme.extend.animation,
shimmer: 'shimmer 2s infinite',
},
},
},
plugins: [],
});