-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
64 lines (64 loc) · 1.68 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
module.exports = {
purge: [
"./resources/**/*.html",
"./resources/**/*.vue",
"./resources/**/*.blade.php",
],
theme: {
extend: {
colors: {
"sky-blue": "#2B74D9",
navy: "#1F2C72",
"baby-blue": "#e0f0ff",
"dark-gray": "#6B7078",
"medium-gray": "#E1E2E3",
"light-gray": "#F5F5F5",
black: "#131A21",
"odd-pink": "#F29072",
orange: "#F49146",
},
zIndex: {
minus: '-1',
},
fontFamily: {
sans: [
"Raleway",
"-apple-system",
"BlinkMacSystemFont",
'"Segoe UI"',
"Roboto",
'"Helvetica Neue"',
"Arial",
"sans-serif",
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"',
],
},
fontSize: {
"6xl": "4.5rem",
},
width: {
"9/10": "90%",
},
spacing: {
80: "20rem",
},
inset: {
8: "2rem",
16: "4rem",
20: "5rem",
50: "50%",
100: "100%",
},
opacity: {
10: "0.05",
},
},
},
variants: {
borderWidth: ["responsive", "last", "hover", "focus"],
},
plugins: [],
};