forked from amanjaiman1/Product_3D
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
51 lines (51 loc) · 1.98 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
49
50
51
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
backgroundImage: {
"hero-pattern": "url('../src/assets/svg/customizer.svg')",
},
colors: {
primary: "#293FCC",
secondary: "#63657E",
"hero-badge-color": "#293FCC",
"hero-badge-bg": "#F8FAFF",
heading: "#090F4E",
},
keyframes: {
lights: {
"0%": {
color: "hsl(230, 40%, 80%)",
textShadow:
"0 0 1em hsla(320, 100%, 50%, 0.2), 0 0 0.125em hsla(320, 100%, 60%, 0.3), -1em -0.125em 0.5em hsla(40, 100%, 60%, 0), 1em 0.125em 0.5em hsla(200, 100%, 60%, 0)",
},
"30%": {
color: "hsl(230, 80%, 90%)",
textShadow:
"0 0 1em hsla(320, 100%, 50%, 0.5), 0 0 0.125em hsla(320, 100%, 60%, 0.5), -0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2), 0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4)",
},
"40%": {
color: "hsl(230, 100%, 95%)",
textShadow:
"0 0 1em hsla(320, 100%, 50%, 0.5), 0 0 0.125em hsla(320, 100%, 90%, 0.5), -0.25em -0.125em 0.125em hsla(40, 100%, 60%, 0.2), 0.25em 0.125em 0.125em hsla(200, 100%, 60%, 0.4)",
},
"70%": {
color: "hsl(230, 80%, 90%)",
textShadow:
"0 0 1em hsla(320, 100%, 50%, 0.5), 0 0 0.125em hsla(320, 100%, 60%, 0.5), 0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2), -0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4)",
},
"100%": {
color: "hsl(230, 40%, 80%)",
textShadow:
"0 0 1em hsla(320, 100%, 50%, 0.2), 0 0 0.125em hsla(320, 100%, 60%, 0.3), 1em -0.125em 0.5em hsla(40, 100%, 60%, 0), -1em 0.125em 0.5em hsla(200, 100%, 60%, 0)",
},
},
},
animation: {
lights: "lights 5s 750ms linear infinite",
},
},
},
plugins: [require("tailwind-scrollbar")],
};