forked from sourabhsikarwar/Scene-Movie-Platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (41 loc) · 895 Bytes
/
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
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
darkMode: "class",
theme: {
extend: {
colors: {
primary: "#0D1117",
secondary: "#161B22",
dimWhite: "rgba(255, 255, 255, 0.7)",
dimBlue: "rgba(9, 151, 124, 0.1)",
},
fontFamily: {
poppins: ["Poppins", "sans-serif"],
},
keyframes:{
updown: {
'0%': {
transform: 'translateY(0px)'
},
'25%': {
transform: 'translateY(10px)'
},
'50%': {
transform: 'translateY(0px)'
},
'75%': {
transform: 'translateY(-10px)'
},
'100%': {
transform: 'translateY(0px)'
},
}
},
animation: {
'arrow-updown': 'updown 3s linear infinite',
},
},
},
plugins: [
],
};