-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
43 lines (41 loc) · 961 Bytes
/
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
import forms from '@tailwindcss/forms';
import type { Config } from 'tailwindcss';
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
corePlugins: {
container: false
},
theme: {
extend: {
fontSize: {
'4.5xl': ['2.625rem', '3rem'],
'5.5xl': ['3.375rem', '1']
},
fontFamily: {
retina: ['Retina, Tahoma Fallback, Arial Retina Fallback, sans-serif'],
mallory: ['Mallory, Arial Mallory Fallback, sans-serif']
},
letterSpacing: {
'medium-wide': '0.015em'
},
colors: {
'german-red': '#e2001a',
'german-gold': '#f8d100'
},
borderWidth: {
'3': '3px'
},
boxShadow: {
'inner-strong': 'inset 0 0px 12px 0px rgb(0 0 0 / 0.25)',
'3xl': '0 10px 30px 0px rgb(0 0 0 / 0.25)'
},
display: ['group-hover']
}
},
plugins: [
forms,
function ({ addVariant }) {
addVariant('hover', '@media (any-hover: hover) and (any-pointer: fine) { &:hover }');
}
]
} satisfies Config;