-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.ts
73 lines (71 loc) · 2.16 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
68
69
70
71
72
73
import type { Config } from 'tailwindcss';
import plugin from 'tailwindcss/plugin';
export default {
content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'],
theme: {
extend: {
fontFamily: {
fredoka: ['var(--font-fredoka)'],
},
colors: {
background: 'hsl(var(--background) / <alpha-value>)',
foreground: 'hsl(var(--foreground) / <alpha-value>)',
card: {
DEFAULT: 'hsl(var(--card) / <alpha-value>)',
foreground: 'hsl(var(--card-foreground) / <alpha-value>)',
},
muted: {
DEFAULT: 'hsl(var(--muted) / <alpha-value>)',
foreground: 'hsl(var(--muted-foreground) / <alpha-value>)',
},
primary: {
DEFAULT: 'hsl(var(--primary) / <alpha-value>)',
foreground: 'hsl(var(--primary-foreground) / <alpha-value>)',
},
secondary: {
DEFAULT: 'hsl(var(--secondary) / <alpha-value>)',
foreground: 'hsl(var(--secondary-foreground) / <alpha-value>)',
},
scrollbar: {
track: 'hsl(var(--scrollbar-track) / <alpha-value>)',
thumb: 'hsl(var(--scrollbar-thumb) / <alpha-value>)',
'thumb-hover': 'hsl(var(--scrollbar-thumb-hover) / <alpha-value>)',
},
border: 'hsl(var(--border) / <alpha-value>)',
ring: 'hsl(var(--ring) / <alpha-value>)',
},
},
},
plugins: [
// eslint-disable-next-line @typescript-eslint/unbound-method
plugin(({ matchUtilities, theme }) => {
matchUtilities(
{
'animation-delay': (value: string) => {
return {
'animation-delay': value,
};
},
},
{
values: theme('transitionDelay'),
},
);
}),
// eslint-disable-next-line @typescript-eslint/unbound-method
plugin(({ matchUtilities, theme }) => {
matchUtilities(
{
'grid-cols-autofill': (value: string) => {
return {
'grid-template-columns': `repeat(auto-fill, minmax(min(${value}, 100%), 1fr))`,
};
},
},
{
values: theme('spacing'),
},
);
}),
],
} satisfies Config;