forked from AdvisorySG/dawn-advisory-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (37 loc) · 777 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
37 lines (37 loc) · 777 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
module.exports = {
mode: "jit",
content: [
"*.hbs",
"**/*.hbs",
"assets/built/**/*.js",
"!node_modules/**/*.hbs",
"./node_modules/flowbite/**/*.js",
],
safelist: [
"bg-amber-300",
"text-sm",
"text-gray-800",
"h-6",
"capitalize",
"mr-1",
],
theme: {
colors: {
brand: {
light: "#ffad33",
DEFAULT: "#f49200",
},
},
extend: {
boxShadow: {
"featured-article": "0px 10px 50px -6px rgb(0 0 0 / 25%)",
},
},
},
variants: {
extend: {
padding: ["hover"],
},
},
plugins: [require("flowbite/plugin")],
};