forked from helium/helium-vote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
68 lines (68 loc) · 1.43 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
68
module.exports = {
mode: "jit",
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
"hv-red": {
500: "#FF625A",
600: "#401c2b",
700: "#752e49",
800: "#E43B70",
900: "#1f161d",
},
"hv-green": {
500: "#20DEB0",
800: "#13413e",
900: "#162822",
},
"hv-blue": {
500: "#474DFF",
700: "#009FF9",
},
"hv-turquoise": {
700: "#124b4b",
},
"hv-purple": {
500: "#B14FFF",
},
"hv-gray": {
200: "#737373",
300: "#b4b4b4",
350: "#666666",
375: "#606060",
400: "#535353",
450: "#434343",
475: "#404040",
500: "#343434",
550: "#3f3f3f",
700: "#131419",
750: "#272727",
775: "#2d2d2d",
800: "#2E303B",
900: "#131419",
1000: "#1D1D1D",
1100: "#0D0D0D",
},
},
},
fontFamily: {
sans: ["Inter", "sans-serif"],
mono: [
"ui-monospace",
"SFMono-Regular",
"Menlo",
"Monaco",
"Consolas",
"Liberation Mono",
"Courier New",
"monospace",
],
},
},
variants: {
extend: {},
},
plugins: [],
};