-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (42 loc) · 1.02 KB
/
tailwind.config.js
File metadata and controls
42 lines (42 loc) · 1.02 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
module.exports = {
purge: ["./index.html", "./src/**/*{.vue,js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
header: "#F3D7C8",
body: "#FDF6E7",
footer: "#F3D7C8",
open: {
DEFAULT: "#FD591F",
dark: "#FF1100",
}, ///////Hamburger button
text: {
DEFAULT: "#075063",
dark: "#05333F",
},
button: {
light: "#C7DFDB",
DEFAULT: "#A7BCB9",
dark: "#86A7A2",
},
// backgroundImage: {
// "b-normal": "url('./buttons/bookmark_default.png')",
// "b-pressed": "url('./buttons/bookmark_pressed.png')",
// "b-selected": "url('./buttons/bookmark_selected.png')",
// },
},
boxShadow: {
plus: "0px 0px 11px 3px rgba(253,89,31,0.25)",
},
minWidth: {
12: "3rem",
24: "6rem",
},
},
},
variants: {
extend: {},
},
plugins: [require("@tailwindcss/forms")],
};