-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
37 lines (36 loc) · 1.24 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./layouts/**/*.{js,ts,jsx,tsx}",
"./lib/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ["Inter", "sans-serif"],
gochi: ["Gochi Hand", "cursive"],
roboto: ["Roboto", "sans-serif"],
montserrat: ["Montserrat", "sans-serif"],
lato: ["Lato", "sans-serif"],
poppins: ["Poppins", "sans-serif"],
raleway: ["Raleway", "sans-serif"],
openSans: ["Open Sans", "sans-serif"],
lora: ["Lora", "sans-serif"],
merriweather: ["Merriweather", "sans-serif"],
playfair: ["Playfair Display", "sans-serif"],
sourceSans: ["Source Sans Pro", "sans-serif"],
sourceSerif: ["Source Serif Pro", "sans-serif"],
sourceCode: ["Source Code Pro", "sans-serif"],
ubuntu: ["Ubuntu", "sans-serif"],
notoSans: ["Noto Sans", "sans-serif"],
notoSerif: ["Noto Serif", "sans-serif"],
notoMono: ["Noto Mono", "sans-serif"],
robotoMono: ["Roboto Mono", "sans-serif"],
robotoCondensed: ["Roboto Condensed", "sans-serif"],
},
},
},
plugins: [],
}