-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (35 loc) · 856 Bytes
/
tailwind.config.js
File metadata and controls
35 lines (35 loc) · 856 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
main: "#050f24",
// "secondary" : "#245d5b",
},
fontFamily: {
poppins: ["Poppins", "sans-serif"],
},
animation: {
handshake: "handshake 2s cubic-bezier(0.4, 0, 0.6, 1) 1 ",
},
keyframes: {
handshake: {
"10%, 90%": {
transform: "translate3d(-1px, 0, 0)",
},
"20%, 80%": {
transform: "translate3d(2px, 0, 0)",
},
"30%, 50%": {
transform: "translate3d(-4px, 0, 0)",
},
"40%, 60%": {
transform: "translate3d(4px, 0, 0)",
},
},
},
},
},
plugins: [require("@tailwindcss/line-clamp")],
};