-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
65 lines (65 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
module.exports = {
content: ["./*.html"],
theme: {
extend: {
colors: {
elephant: {
DEFAULT: "#102F40",
50: "#3A99CE",
100: "#318FC3",
200: "#2877A2",
300: "#205F81",
400: "#184761",
500: "#102F40",
600: "#050E13",
700: "#000000",
800: "#000000",
900: "#000000",
},
casablanca: {
DEFAULT: "#F7B83F",
50: "#FEF9EF",
100: "#FEF2DC",
200: "#FCE3B5",
300: "#FAD58D",
400: "#F9C666",
500: "#F7B83F",
600: "#F4A40A",
700: "#BE8008",
800: "#885B06",
900: "#523703",
},
},
fontFamily: {
inter: ["Inter", "sans-serif"],
montserrat: ["Montserrat", "sans-serif"],
},
animation: {
spin_message: "spin_message 25s infinite",
},
keyframes: {
spin_message: {
"15%": {
transform: "translateY(-112%)",
},
"30%": {
transform: "translateY(-100%)",
},
"40%": {
transform: "translateY(-212%)",
},
"55%": {
transform: "translateY(-200%)",
},
"65%": {
transform: "translateY(-312%)",
},
"80%": {
transform: "translateY(-300%)",
},
},
},
},
},
plugins: [require("tailwind-scrollbar")],
};