-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
47 lines (47 loc) · 1.12 KB
/
tailwind.config.js
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
42
43
44
45
46
47
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
"natural-1": "#F4F4F4",
"natural-2": "#F1F1F5",
"natural-3": "#FAFAFB",
"natural-4": "#F5F5F8",
"natural-5": "#E2E2EA",
"natural-6": "#92929D",
"natural-7": "#696974",
"natural-8": "#44444F",
primary: "#0BAB7C",
"secondary-1": "#C7F4C2",
"secondary-2": "#D7D0FF",
"secondary-3": "#FDDD8C",
"secondary-4": "#FFBBD7",
"darkBG-1": "#13131A",
"darkBG-2": "#1C1C24",
"darkBG-3": "#21212B",
black: "#171725",
dot: "#d8d8d8",
logoDark: "#2C2C2C",
input: "#e2e2ea",
},
height: {
70: "70px",
100: "100%",
},
boxShadow: {
1: "0px 6px 14px 0px rgba(23, 23, 37, 0.02)",
},
borderRadius: {
jobit: "10px",
input: "20px",
},
},
},
plugins: [],
};