-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
38 lines (38 loc) · 917 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
module.exports = {
mode: "jit",
purge: ["./src/**/*.{html,ts}"],
darkMode: "media", // or 'media' or 'class'
theme: {
fontFamily: {
opensans: "Open Sans",
},
extend: {
boxShadow: {
shadow:
"0px 1px 5px 0px rgba(0, 0, 0, 0.12), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.2)",
},
colors: {
// shortcuts
// n: normal h: hover f: focus a: active i: inverted opacity
primary: {
// based on #0082BB
n: "rgba(0, 130, 187, 1)",
h: "rgba(0, 130, 187, 0.92)",
f: "rgba(0, 130, 187, 0.76)",
a: "rgba(0, 130, 187, 0.76)",
hi: "rgba(0, 130, 187, 0.04)",
},
white: {
n: "rgba(255, 255, 255, 1)",
},
gray: {
n: "#e0e0e0",
},
},
},
},
variants: {
extend: {},
},
plugins: [],
};