-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
48 lines (48 loc) · 1.32 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
fontFamily: {
gelion: ["gelion"],
"dm-sans": ["DM Sans"],
poppins: ["Poppins"],
"hind-siliguri": ["Hind Siliguri"],
epilogue: ['"Epilogue"', "sans-serif"],
gilroy: ["svn-gilroy", "sans-serif"],
inter: ["Inter", "sans-serif"],
},
extend: {
colors: {
primary: "#5B5AD1",
"light-purple": "#F6F6FF",
grey: "#A19A9A",
"black-shade": "#121212",
"dark-blue": "#0B0A29",
"nav-text": "#070F18",
},
keyframes: {
"slide-in": {
"0%": { transform: "translateX(-100%)" },
"100%": { transform: "translateX(0)" },
},
floatAnimation: {
"0%": { transform: "translateY(0)" },
"50%": { transform: "translateY(-20px)" },
"100%": { transform: "translateY(0)" },
},
},
animation: {
"spin-slow": "spin 6s linear infinite",
"slide-in": "slide-in 1s ease-out",
float: "floatAnimation 3s infinite ease-in-out;",
},
screens: {
wideScreen: "1400px",
smallest: "375px",
xmd: "920px",
// => @media (min-width: 1400px) { ... }
},
},
},
plugins: [],
};