forked from ThibautNarivelo/archiveslgbtqi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
65 lines (63 loc) · 1.7 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import type { Config } from "tailwindcss";
import typography from "@tailwindcss/typography";
export default {
content: ["./app/**/*.{ts,tsx}", "./sanity/**/*.{ts,tsx}"],
theme: {
extend: {
fontFamily: {
sans: ["var(--font-inter)"],
tanker: ["var(--font-tanker)"],
cityburn: ["var(--font-cityburn)"],
jetbrains: ["var(--font-jetbrains)"],
},
transitionTimingFunction: {
tamisitée: "cubic-bezier(0.6, 0.01, 0.05, 0.95)",
},
animation: {
marquee: "marquee 10s linear infinite",
"slow-pulse": "slow-pulse 3s ease-in-out infinite",
"translate-squeezed":
"translate-squeezed 0.5s 5s infinite running slidein",
scroll: "scroll 20s linear infinite",
},
keyframes: {
marquee: {
"0%": { transform: "translateX(0%)" },
"100%": { transform: "translateX(-100%)" },
},
scroll: {
"0%": { transform: "translateX(0%)" },
"100%": { transform: "translateX(-100%)" },
},
},
colors: {
"white-primary": "#F7F7F7",
"black-primary": "#121212",
"pink-arch": "#FC5F8C",
},
fontSize: {
"header-mobile": "1.5rem",
"header-desktop": "1rem",
},
height: {
"header-mobile": "1.5rem",
"header-desktop": "1.1875rem",
"header-size-desktop": "6rem",
},
lineHeight: {
"header-mobile": "1.8rem",
"header-desktop": "1rem",
},
margin: {
arch: "17rem",
},
padding: {
bottomPage: "7rem",
},
},
},
future: {
hoverOnlyWhenSupported: true,
},
plugins: [typography],
} satisfies Config;