-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
33 lines (33 loc) · 921 Bytes
/
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
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./Components/**/*.{js,ts,jsx,tsx}'
],
darkMode:'class',
theme: {
screens:{
sm:{'max':'600px'},
md:{'min':'601px'},
lg:{'min':'1400px'}
},
extend: {
fontFamily:{
'superMercado':['Supermercado One', 'cursive'],
'Acme': ['Acme', 'sans-serif'],
'Amiri': ['Amiri', 'serif'],
'Creep': ['Creepster', 'cursive'],
'Great': ['Great Vibes', 'cursive'],
'Hahmlet': ['Hahmlet', 'serif'],
'web': ['Istok Web', 'sans-serif'],
'lob': ['Lobster', 'cursive'],
'Meri': ['Merienda', 'cursive'],
'Marker': ['Permanent Marker', 'cursive'],
'play': ['Play', 'sans-serif'],
'Teko': ['Teko', 'sans-serif'],
'Yellowtail': ['Yellowtail', 'cursive'],
'BioRhyme':['BioRhyme', 'serif']
}
},
},
plugins: [],
}