-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathtailwind.config.js
44 lines (44 loc) · 1.26 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
darkMode: "class",
theme: {
extend: {
fontFamily: {
"libre-baskerville": ["Libre Baskerville", "serif"],
},
colors: {
primary: "#dd71c6",
secondary: "#73c3f4",
tertiary: "#ffd900",
countdown: "#4D85B0",
customWhite: "#f9f5f6",
},
animation: {
slideInRightSM: "slideInRightSM 1s ease-in-out",
slideInRight: "slideInRight 1s ease-in-out",
slideOutRightSM: "slideOutRightSM 1s ease-in-out",
slideOutRight: "slideOutRight 1s ease-in-out",
},
keyframes: {
slideInRightSM: {
"0%": { transform: "translateX(100%)" },
"100%": { transform: "translateX(-64px)" },
},
slideInRight: {
"0%": { transform: "translateX(100%)" },
"100%": { transform: "translateX(-16px)" },
},
slideOutRightSM: {
"100%": { transform: "translateX(100%)" },
"0%": { transform: "translateX(-64px)" },
},
slideOutRight: {
"100%": { transform: "translateX(100%)" },
"0%": { transform: "translateX(-16px)" },
},
},
},
},
plugins: [],
};