-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (44 loc) · 939 Bytes
/
tailwind.config.js
File metadata and controls
44 lines (44 loc) · 939 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
35
36
37
38
39
40
41
42
43
44
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
boxShadow: {
DEFAULT: "rgba(27, 27, 35, 0.12) 0px 4px 12px",
},
dropShadow: {
DEFAULT: "rgba(27, 27, 35, 0.12) 0px 4px 12px",
},
borderRadius: {
DEFAULT: "7px",
},
colors: {
palette: {
1: "#6f5fc9",
2: "#A084E8",
3: "#E2D6FF",
4: "#EDE8FA",
5: "#8BE8E5",
6: "#D5FFE4",
7: "#9a73fa",
},
bg: {
1: "#fdfdfe",
2: "#F4F4FF",
3: "#9370DB",
4: "#EAF6F6",
},
text: {
1: "#161621 ",
2: "#2f3336",
3: "#55555f",
},
},
},
},
plugins: [],
};