forked from Politiwatch/privacyspy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
67 lines (66 loc) · 1.23 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
const { colors } = require("tailwindcss/defaultTheme");
module.exports = {
purge: false,
important: true,
theme: {
opacity: {
"10": ".1",
"20": ".2",
"30": ".3",
"40": ".4",
"50": ".5",
},
zIndex: {
"-1": "-1",
"1": "1",
},
extend: {
width: {
"60": "15rem",
},
maxHeight: {
"60": "15rem",
},
cursor: {
help: "help",
},
colors: {
black: "#010101",
blue: {
...colors.blue,
"500": "#0366d6",
},
yellow: {
...colors.yellow,
"500": "#F2C602",
},
green: {
...colors.green,
"500": "#1FC142",
},
red: {
...colors.red,
"500": "#f03009",
},
gray: {
"100": "#f5f5f5",
"200": "#eeeeee",
"300": "#e0e0e0",
"400": "#bdbdbd",
"500": "#9e9e9e",
"600": "#757575",
"700": "#616161",
"800": "#424242",
"900": "#212121",
},
},
},
},
variants: {
textColor: ["hover"],
},
future: {
purgeLayersByDefault: true,
removeDeprecatedGapUtilities: true,
},
};