-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (44 loc) · 1.09 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} */ export default {
content: ["./src/**/*.{js,jsx}"],
mode: "jit",
theme: {
extend: {
keyframes: {
"gradient-anim": {
"0%": { "background-size": "150% 150%" },
"50%": { "background-size": "200% 200%" },
"100%": { "background-size": "150% 150%" },
},
},
animation: {
"gradient-anim": "gradient-anim 6s linear infinite",
},
colors: {
primary: "#050816",
secondary: "#6a8faf", // bluish-grey
tertiary: "#123055", // deeper blue
"black-100": "#0a1f33", // dark blue
"black-200": "#050b19", // very dark blue
"white-100": "#f3f3f3",
},
fontFamily: {
sans: ["Poppins", "sans-serif"],
},
boxShadow: {
card: "0px 35px 120px -15px #0a1f33", //dark blue shadow
},
screens: {
xs: "450px",
},
// backgroundImage: {
// topbg: "url('/src/assets/animebg.jpg')",
// },
},
},
variants: {
extend: {
animation: ["hover"],
},
},
plugins: [],
};