-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
60 lines (60 loc) · 1.45 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
module.exports = {
purge: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
fontFamily: {
sans: ['"Proxima Nova Black"', "sans-serif"],
body: ["Montserrat", "sans-serif"],
},
zIndex: {
100: "100",
},
rotate: {
"-15": "-15deg",
"-10": "-10deg",
10: "10deg",
15: "15deg",
30: "30deg",
51: "51deg",
},
translate: {
"3/2": "150%",
},
colors: {
// This is so we can reference data driven colours in class declarations
"3DB4F5": "#3DB4F5",
"1E44A7": "#1E44A7",
343434: "#343434",
EFEFEF: "#EFEFEF",
D1D1D1: "#D1D1D1",
"6C6C6C": "#6C6C6C",
"4E4E4E": "#4E4E4E",
FFFFFF: "#FFFFFF",
black: "#343434",
impact: {
grey: {
1: "#EFEFEF",
2: "#D1D1D1",
3: "#6C6C6C",
4: "#4E4E4E",
},
blue: {
1: "#3DB4F5",
2: "#007BB8",
3: "#005C96",
},
darkBlue: {
1: "#1E44A7",
2: "#003696",
3: "#001167",
},
},
},
},
},
variants: {
backgroundColor: ["responsive", "dark", "group-hover", "focus-within", "hover", "focus", "before"],
backgroundPosition: ["responsive", "before"],
},
plugins: [require("tailwindcss-textshadow"), require("tailwindcss-pseudo-elements")],
}