-
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) · 916 Bytes
/
tailwind.config.js
File metadata and controls
34 lines (34 loc) · 916 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}",
"./app/**/*.{js,jsx,ts,tsx}",
"./components/**/*.{js,jsx,ts,tsx}",
],
presets: [require("nativewind/preset")],
theme: {
extend: {
colors: {
brand: {
primary: "#7F3DFF",
disabled_primary: "#9b6ff4",
secondary: "#7461c3",
disabled_secondary: "#9c87d0",
},
text: {
body: "#36313d",
},
default_bg: "#e6e6e6"
},
fontFamily: {
spaceMono: ["SpaceMono", "monospace"],
dmSansLight: ["DMSansLight", "sans-serif"],
dmSansRegular: ["DMSansRegular", "sans-serif"],
dmSansMedium: ["DMSansMedium", "sans-serif"],
dmSansBold: ["DMSansBold", "sans-serif"],
dmSansExtraBold: ["DMSansExtraBold", "sans-serif"],
},
},
},
plugins: [],
}