-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
66 lines (66 loc) · 1.95 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
module.exports = {
purge: ["./resources/**/*.blade.php", "./resources/**/*.vue"],
theme: {
extend: {
spacing: {
28: "7rem",
68: "17rem",
80: "20rem",
100: "25rem",
"3/4": "75%"
},
height: {
80: "20rem"
},
fontFamily: {
sans: [
'"Noto Sans"',
"-apple-system",
"BlinkMacSystemFont",
'"Segoe UI"',
"Roboto",
'"Helvetica Neue"',
"Arial",
"sans-serif",
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"'
]
},
fontSize: {
base: "1.0625rem",
xl: "1.1875rem",
"5xl": "3.25rem"
},
boxShadow: {
card: "5px 5px 9px rgba(0,0,0,.1)",
button: "5px 5px 8px rgba(0,0,0,.2)"
},
inset: {
20: "5rem",
40: "10rem"
},
colors: {
black: "#232a34",
"hms-navy": "#354066",
"deep-navy": "#1a2547",
"shady-blue": "#F1F8FF",
"mild-yellow": "#FFF9E0",
"cardy-blue": "#f5f9fa",
"form-grey": "#f1f1f1",
"border-grey": "#dcdcdc",
"hard-ass-grey": "#a3a8b9",
"sky-blue": "#91c8ff",
"sunny-yellow": "#ffdf56",
"teesav-blue": "#5a6282",
mustard: "#ffb40a",
opaque: "rgba(255,255,255,.8)"
}
}
},
variants: {
display: ["responsive", "hover", "focus", "group-hover"]
},
plugins: []
};