-
Notifications
You must be signed in to change notification settings - Fork 11
/
tailwind.config.ts
63 lines (59 loc) · 1.98 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
import type { Config } from 'tailwindcss'
import colors from 'tailwindcss/colors'
import plugin from 'tailwindcss/plugin'
import radix from 'tailwindcss-radix'
export default {
content: ['./src/{app,components}/**/*.{ts,tsx}'],
theme: {
extend: {
colors: {
accent: colors.emerald,
main: colors.slate,
pageBg: colors.white,
},
minWidth: {
content: 'var(--min-content-width)',
},
maxWidth: {
content: 'var(--max-content-width)',
},
boxShadow: {
overlay: 'rgb(14 18 22 / 0.2) 0 6px 38px -10px, rgb(14 18 22 / 0.3) 0 8px 20px -15px',
tooltip:
'hsl(206 22% 7% / 35%) 0px 10px 38px -10px, hsl(206 22% 7% / 20%) 0px 10px 20px -15px',
},
keyframes: {
// For radix tooltip
'slide-up-fade': {
'0%': { opacity: '0', transform: 'translateY(2px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
'slide-right-fade': {
'0%': { opacity: '0', transform: 'translateX(-2px)' },
'100%': { opacity: '1', transform: 'translateX(0)' },
},
'slide-down-fade': {
'0%': { opacity: '0', transform: 'translateY(-2px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
'slide-left-fade': {
'0%': { opacity: '0', transform: 'translateX(2px)' },
'100%': { opacity: '1', transform: 'translateX(0)' },
},
},
animation: {
// For radix tooltip
'slide-up-fade': 'slide-up-fade 0.4s cubic-bezier(0.16, 1, 0.3, 1)',
'slide-right-fade': 'slide-right-fade 0.4s cubic-bezier(0.16, 1, 0.3, 1)',
'slide-down-fade': 'slide-down-fade 0.4s cubic-bezier(0.16, 1, 0.3, 1)',
'slide-left-fade': 'slide-left-fade 0.4s cubic-bezier(0.16, 1, 0.3, 1)',
},
},
},
plugins: [
radix,
plugin(function ({ addVariant }) {
addVariant('toggle-on', ['&[data-state=on]'])
}),
],
} satisfies Config