-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
31 lines (31 loc) · 1.27 KB
/
tailwind.config.js
File metadata and controls
31 lines (31 loc) · 1.27 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
// NOTE: Update this to include the paths to all of your component files.
content: [
"./src/app/**/*.{js,jsx,ts,tsx}",
"./src/components/**/*.{js,jsx,ts,tsx}",
],
presets: [require("nativewind/preset")],
theme: {
extend: {
fontFamily: {
"playfair-regular": ["PlayfairDisplay-Regular", "serif"],
"playfair-medium": ["PlayfairDisplay-Medium", "serif"],
"playfair-semibold": ["PlayfairDisplay-SemiBold", "serif"],
"playfair-bold": ["PlayfairDisplay-Bold", "serif"],
"playfair-extrabold": ["PlayfairDisplay-ExtraBold", "serif"],
"playfair-black": ["PlayfairDisplay-Black", "serif"],
"poppins-thin": ["Poppins-Thin", "sans-serif"],
"poppins-extralight": ["Poppins-ExtraLight", "sans-serif"],
"poppins-light": ["Poppins-Light", "sans-serif"],
"poppins-regular": ["Poppins-Regular", "sans-serif"],
"poppins-medium": ["Poppins-Medium", "sans-serif"],
"poppins-semibold": ["Poppins-SemiBold", "sans-serif"],
"poppins-bold": ["Poppins-Bold", "sans-serif"],
"poppins-extrabold": ["Poppins-ExtraBold", "sans-serif"],
"poppins-black": ["Poppins-Black", "sans-serif"],
},
},
},
plugins: [],
};