-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
27 lines (27 loc) · 875 Bytes
/
tailwind.config.js
File metadata and controls
27 lines (27 loc) · 875 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
// NOTE: Update this to include the paths to all of your component files.
content: ["./src/**/*.{js,jsx,ts,tsx}"],
presets: [require("nativewind/preset")],
darkMode: "class",
theme: {
extend: {
fontFamily: {
pregular: ["Poppins-Regular", "sans-serif"],
pmedium: ["Poppins-Medium", "sans-serif"],
psemibold: ["Poppins-SemiBold", "sans-serif"],
pbold: ["Poppins-Bold", "sans-serif"],
},
colors: {
// Primary color
primary: "hsl(var(--primary))",
// Typography
foreground: "hsl(var(--foreground))",
"foreground-secondary": "hsl(var(--foreground-secondary))",
background: "hsl(var(--background))",
"background-secondary": "hsl(var(--background-secondary))",
},
},
},
plugins: [],
}