-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
70 lines (69 loc) · 1.48 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
69
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./client/**/*.html"
],
theme: {
colors: {
"heather": {
50: "#F2F0F5",
100: "#E5E1EA",
200: "#C8BFD4",
300: "#AEA1BF",
400: "#9483AA",
500: "#7A6595",
600: "#5E4F73",
700: "#463A55",
800: "#2D2537",
900: "#120F16",
950: "#0A080C"
},
"red": {
50: "#FFE5E5",
100: "#FFCCCC",
200: "#FF9999",
300: "#FF6666",
400: "#FF3333",
500: "#FF0000",
600: "#CC0000",
700: "#990000",
800: "#660000",
900: "#330000",
950: "#190000"
},
"white": "#FFF",
"black": "#000",
"transparent": "transparent"
},
fontFamily: {
BebasNeue: ["BebasNeueFont", "sans-serif"],
CarroisGothic: ["CarroisGothicFont", "sans-serif"],
},
extend: {
width: {
"wfa": "-webkit-fill-available"
},
spacing: {
112: "28rem",
128: "32rem",
160: "40rem",
192: "48rem"
},
animation: {
longO: "longO 0.8s forwards",
longOPadding: "longOPadding 0.8s forwards"
},
keyframes: {
longO: {
from: { width: "12px" },
to: { width: "86px" }
},
longOPadding: {
from: { padding: "0 calc( (86px - 12px) / 2 )" },
to: { padding: "0" }
}
}
},
},
plugins: [],
}