-
Notifications
You must be signed in to change notification settings - Fork 183
/
tailwind.config.ts
49 lines (48 loc) · 1.24 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
animation: {
// Bounces 5 times 1s equals 5 seconds
"ping-short": "ping 1s ease-in-out 5",
},
screens: {
betterhover: { raw: "(hover: hover)" },
},
transitionProperty: {
height: "height",
width: "width",
},
dropShadow: {
glowBlue: [
"0px 0px 2px #000",
"0px 0px 4px #000",
"0px 0px 30px #0141ff",
"0px 0px 100px #0141ff80",
],
glowRed: [
"0px 0px 2px #f00",
"0px 0px 4px #000",
"0px 0px 15px #ff000040",
"0px 0px 30px #f00",
"0px 0px 100px #ff000080",
],
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
fontFamily: {
favorit: ["var(--font-favorit)"],
inter: ["Inter", "Arial", "sans serif"],
},
},
},
};
export default config;