-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (34 loc) · 929 Bytes
/
tailwind.config.js
File metadata and controls
34 lines (34 loc) · 929 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
28
29
30
31
32
33
34
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./app/**/*.{js,jsx,ts,tsx}", "./components/**/*.{js,jsx,ts,tsx}"],
presets: [require("nativewind/preset")],
theme: {
extend: {
colors: {
primary: "#FE8C00",
white: {
DEFAULT: "#ffffff",
100: "#fafafa",
200: "#FE8C00",
},
gray: {
100: "#878787",
200: "#878787",
},
dark: {
100: "#181C2E",
},
error: "#F14141",
success: "#2F9B65",
},
fontFamily: {
quicksand: ["Quicksand-Regular", "sans-serif"],
"quicksand-bold": ["Quicksand-Bold", "sans-serif"],
"quicksand-semibold": ["Quicksand-SemiBold", "sans-serif"],
"quicksand-light": ["Quicksand-Light", "sans-serif"],
"quicksand-medium": ["Quicksand-Medium", "sans-serif"],
},
},
},
plugins: [],
};