-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (41 loc) · 1.07 KB
/
tailwind.config.js
File metadata and controls
41 lines (41 loc) · 1.07 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
32
33
34
35
36
37
38
39
40
41
// @type {import('tailwindcss').Config}
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}", // Note the addition of the `app` directory.
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
],
darkMode: "class",
theme: {
extend: {
colors: {
Primary: "#0BAB7C",
Secondary1: "#C7F4C2",
Secondary2: "#D7D0FF",
Secondary3: "FDDD8C",
Secondary4: "FFBBD7",
Natural1: "#F4F4F4",
Natural2: "#F1F1F5",
Natural3: "#FAFAFB",
Natural4: "#F5F5F8",
Natural5: "#E2E2EA",
Natural6: "#92929D",
Natural7: "#696974",
Natural8: "#44444F",
DarkBG1: "#13131A",
DarkBG2: "#1C1C24",
DarkBG3: "#21212B",
White: "#FFFFFF",
Black: "#171725",
},
boxShadow: {
'custom': '0px 23px 30px 0px rgba(226, 226, 234, 0.40), -3px -2px 24px 0px rgba(0, 0, 0, 0.02)',
},
},
fontFamily: {
manrope: ["var(--font-manrope)"],
sans: ["var(--font-dm-sans)"],
},
},
plugins: [],
};