-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathtailwind.config.ts
70 lines (68 loc) · 1.66 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
import type { Config } from 'tailwindcss';
import plugin from 'tailwindcss/plugin';
import daisyui from 'daisyui';
const config = {
darkMode: ['class'],
content: ['./src/**/*.{js,ts,jsx,tsx}'],
media: false, // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
sans: ['var(--font-space-grotesk)', 'ui-sans-serif', 'system-ui']
},
backgroundImage: {
'gradient-radial':
'radial-gradient(30% 50% at center 50%, var(--tw-gradient-stops))'
},
backgroundSize: {
'50': '50%',
'75': '75%'
},
textShadow: {
sm: '0 1px 2px var(--tw-shadow-color)',
DEFAULT:
'0 0 10px var(--tw-shadow-color), 0 0 20px var(--tw-shadow-color)',
lg: '0 8px 16px var(--tw-shadow-color)'
},
colors: {
hacktoberfest: {
black: '#1C1C1C',
green: '#50DA4C',
pink: '#FF8BFF',
light: '#FEFDF8',
beige: '#F3F0E0',
'dark-green': '#183717',
'light-green': '#D8FFD8',
'deep-pink': '#C401C4',
'light-pink': '#FFDBFF'
}
},
borderRadius: {
lg: 'var(--radius)',
md: 'calc(var(--radius) - 2px)',
sm: 'calc(var(--radius) - 4px)'
}
}
},
variants: {
extend: {}
},
plugins: [
daisyui,
plugin(function ({ matchUtilities, theme }) {
matchUtilities(
{
'text-shadow': value => ({
textShadow: value
})
},
{ values: theme('textShadow') }
);
}),
require('tailwindcss-animate')
],
daisyui: {
base: false
}
} satisfies Config;
export default config;