-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
47 lines (47 loc) · 1.08 KB
/
tailwind.config.js
File metadata and controls
47 lines (47 loc) · 1.08 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
42
43
44
45
46
47
module.exports = {
mode: "jit",
content: [
"./components/**/*.{vue,js}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
// SEE https://github.com/nuxt/framework/issues/2886#issuecomment-1020237093
// "./nuxt.config.{js,ts}",
],
darkMode: "class", // or 'media' or 'class'
theme: {
extend: {
colors: {
black1: "#3F3F3F",
gray1: "#F0F1F4",
gray2: "#6A6E78",
blue1: "#0E3552",
blue2: "#7C9BAD",
blue3: "#082942",
beige1: "#fbfbfb",
beige2: "#f5f2f0",
light_gray: "#dbdde1",
pink: "#eb5757",
},
boxShadow: {
"3xl":
"0px 20px 46px rgba(0, 0, 0, 0.12), 0px 4px 16px rgba(0, 0, 0, 0.04)",
},
borderRadius: {
"header-70": "70px",
},
backgroundImage: {
"grad-text":
"linear-gradient(220.58deg, #0E3552 23.07%, #7C9BAD 105.09%)",
},
padding: {
"code-x": "5.44px",
"code-y": "2.72px",
},
},
},
variants: {
extend: {},
},
plugins: [],
};