-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
41 lines (40 loc) · 1.27 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
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: {
screens: {
"4xl": "1920px",
},
fontFamily: {
Outreque: ["var(--outreque)"],
SfPro: ["var(--sfPro)"],
},
fontSize: {
"8xl": "5.75rem",
},
keyframes: {
herobackground: {
"0%": {
clipPath:
"polygon(74.1% 44.1%, 100% 61.6%, 97.5% 26.9%, 90% 14%, 75% 18%, 72.5% 32.5%, 60.2% 62.4%, 52.4% 68.1%, 47.5% 58.3%, 36% 43%, 22% 66%, 0 66%, 17.9% 100%, 34% 87%, 76.1% 97.7%, 74.1% 44.1%)",
},
"50%": {
clipPath:
"polygon(87% 76%, 100% 70%, 100% 53%, 91% 45%, 81% 38%, 72.5% 32.5%, 62% 28%, 59% 39%, 49% 37%, 36% 43%, 18% 35%, 0 52%, 9% 72%, 34% 71%, 54% 100%, 73% 79%)",
},
"100%": {
clipPath:
"polygon(74.1% 44.1%, 100% 61.6%, 97.5% 26.9%, 90% 14%, 75% 18%, 72.5% 32.5%, 60.2% 62.4%, 52.4% 68.1%, 47.5% 58.3%, 36% 43%, 22% 66%, 0 66%, 17.9% 100%, 34% 87%, 76.1% 97.7%, 74.1% 44.1%)",
},
},
},
},
},
plugins: [],
};
export default config;