-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.ts
68 lines (65 loc) · 1.84 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
66
67
68
import twscrollbar from "tailwind-scrollbar";
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{ts,tsx}",
"./src/components/**/*.{ts,tsx}",
"./src/app/**/*.{ts,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
backgroundImage: {
company: "var(--company-bg)",
},
colors: {
text: "var(--text)",
background: "var(--background)",
primary: "var(--primary)",
secondary: "var(--secondary)",
"secondary/40": "var(--secondary-40)",
accent: "var(--accent)",
"accent-alternative": "var(--accent-alternative)",
"company-secondary": "var(--company-secondary)",
"call-to-action": "var(--call-to-action)",
topbar: "var(--topbar)",
},
animation: {
fade: "fade ease-out 1s 1.5s forwards",
"fade-imm": "fade ease-out 200ms",
"bounce-delayed-1": "bounce 1s ease-in-out infinite 50ms",
"bounce-delayed-2": "bounce 1s ease-in-out infinite 100ms",
},
aspectRatio: {
"1080/1080": "1080 / 1080",
},
gridTemplateColumns: {
"responsiveness-180px-columns": "repeat(auto-fit, minmax(250px, 1fr))",
},
keyframes: {
fade: {
from: { opacity: "0" },
to: { opacity: "1" },
},
},
dropShadow: {
"3xl": "2px 2px 0.5px rgba(0, 0, 0, 0.33)",
"4xl": "2px 3px 4px rgba(0, 0, 0, 0.33)",
"fallstack-logo-shadow": "2px 3px 4px #f97316",
"fallstack-text-shadow": "1px 1px 0.5px #f97316",
},
translate: {
200: "200%",
},
height: {
144: "36rem",
168: "42rem",
192: "48rem",
},
},
},
plugins: [twscrollbar({ nocompatible: true })],
};
export default config;