-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
52 lines (52 loc) · 1.2 KB
/
Copy pathtailwind.config.js
File metadata and controls
52 lines (52 loc) · 1.2 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
48
49
50
51
52
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./*.{html,md}",
"./_layouts/**/*.{html,md}",
"./_includes/**/*.{html,md}",
"./assets/js/**/*.js"
],
theme: {
extend: {
colors: {
navy: {
950: "#031529",
900: "#062847",
800: "#073c68"
},
signal: "#3eae2b",
ocean: "#0875d1"
},
fontFamily: {
sans: ["Inter", "ui-sans-serif", "system-ui", "sans-serif"]
},
boxShadow: {
panel: "0 24px 70px rgba(2, 18, 35, 0.18)"
}
}
},
plugins: [require("@tailwindcss/typography"), require("daisyui")],
daisyui: {
themes: [
{
marina: {
primary: "#3eae2b",
"primary-content": "#031529",
secondary: "#0875d1",
"secondary-content": "#ffffff",
accent: "#30a8e8",
neutral: "#031529",
"neutral-content": "#ffffff",
"base-100": "#ffffff",
"base-200": "#f4f6f8",
"base-300": "#dce2e8",
"base-content": "#17202a",
info: "#0875d1",
success: "#4cc43b",
warning: "#f3b33d",
error: "#dc4c64"
}
}
]
}
};