-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
46 lines (46 loc) · 1.46 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
/** @type {import('tailwindcss').Config} */
export default {
darkMode: "class",
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontSize: {
"4.5xl": "2.5rem",
},
colors: {
accent: {
50: "hsl(151.8, 81%, 95.9%)",
100: "hsl(149.3, 80.4%, 90%)",
200: "hsl(152.39999999999998, 76%, 80.4%)",
300: "hsl(156.20000000000005, 71.6%, 66.9%)",
400: "hsl(158.10000000000002, 64.4%, 51.6%)",
500: "hsl(160.10000000000002, 84.1%, 39.4%)",
600: "hsl(161.39999999999998, 93.5%, 30.4%)",
700: "hsl(161.39999999999998, 93.5%, 30.4%)",
800: "hsl(161.39999999999998, 93.5%, 30.4%)",
900: "hsl(164.20000000000005, 85.7%, 16.5%)",
950: "hsl(165.70000000000005, 91.3%, 9%)",
},
},
keyframes: {
wiggle: {
"0%,100%": { transform: "traslateY(0%)" },
"50%": { transform: "translateY(-100%)" },
},
updown: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px) scale(120%)' },
},
},
animation: {
wiggle: "wiggle 15s linear infinite",
"ping-slow": "ping 1.5s linear infinite",
'hover-bounce': 'updown 1s infinite',
},
backgroundImage: {
'red-glow': 'radial-gradient(circle, rgba(217, 249, 230, 0.7) 0%, transparent 55%)',
},
},
},
plugins: [],
};