-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
41 lines (40 loc) · 1005 Bytes
/
tailwind.config.js
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
const resolve = require("path").resolve;
const { createThemes } = require("tw-colors");
module.exports = {
content: [
resolve(__dirname, "index.html"),
resolve(__dirname, "src/**/*.{vue,ts}"),
],
theme: {
extend: {
colors: {
"gitstatus-new": "#22a81b",
"gitstatus-modified": "#b57219",
"gitstatus-deleted": "#bf1b1b",
"gitstatus-unknown": "#9ca3af",
},
},
},
plugins: [
createThemes({
"github-dimmed": {
primary: "#f33d60",
background: "#22272e",
"text-area-background": "#4c4653",
text: "white",
"text-hover": "#a3a3a3",
"red-deletion": "#cb2431",
"green-addition": "#22863a",
},
"github-light": {
primary: "#f33d60",
background: "#e7e5e4",
"text-area-background": "#f6f8fa",
text: "#22272e",
"text-hover": "#404040",
"red-deletion": "#b91c1c",
"green-addition": "#166534",
},
}),
],
};