-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
56 lines (56 loc) · 1.26 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
export default {
purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
content: [
'./src/**/*.{js,jsx,ts,tsx,mdx}',
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
honk: ['"Honk"', 'system-ui'],
jersey: ['"Jersey 15"', 'sans-serif'],
gabarito: ['"Gabarito"', 'sans-serif'],
jost: ['"Jost"', 'sans-serif'],
},
fontSize: {
honk: [
'1rem',
{
'font-variation-settings': '"MORF" 15, "SHLN" 50',
fontFamily: '"Honk", system-ui',
},
],
},
spacing: {
15: '3.75rem', // 15 * 0.25rem = 3.75rem
},
translate: {
'-50': '-50%',
},
borderRadius: {
'5xl': '5rem',
},
animation: {
shimmer: 'shimmery 2s linear infinite',
},
keyframes: {
shimmery: {
from: {
backgroundPosition: '0 0',
},
to: {
backgroundPosition: '-200% 0',
},
},
},
},
},
variants: {
extend: {},
},
plugins: [],
};