-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
122 lines (121 loc) · 3.29 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
import type { Config } from "tailwindcss";
import tailwindcssAnimate from "tailwindcss-animate";
export default {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
},
dropShadow: {
outline: [
"-1px -1px var(--title-outline-blur) var(--title-outline-color)",
"-1px 1px var(--title-outline-blur) var(--title-outline-color)",
"1px -1px var(--title-outline-blur) var(--title-outline-color)",
"1px 1px var(--title-outline-blur) var(--title-outline-color)",
],
workNavigation: [
"0 0 6px rgb(0 0 0 / 0.05)",
"0 0 4px rgb(0 0 0 / 0.2)",
],
},
height: {
header: "var(--header-height)",
footer: "var(--footer-height)",
},
spacing: {
header: "var(--header-height)",
footer: "var(--footer-height)",
},
keyframes: {
boldify: {
"0%": {
"font-variation-settings": `"wdth" 150, "wght" 100`,
},
"100%": {
"font-variation-settings": `"wdth" 150, "wght" 600`,
},
},
unboldify: {
"0%": {
"font-variation-settings": `"wdth" 150, "wght" 600`,
},
"100%": {
"font-variation-settings": `"wdth" 150, "wght" 100`,
},
},
glowpulse: {
"0%": {
filter: "drop-shadow(0px 0px 0px #ffffff);",
},
"100%": {
filter: "drop-shadow(0px 0px 0px #ffffff);",
},
"10%": {
filter: "drop-shadow(0px 0px 10px #ffffff);",
stroke: "#FFFFFF",
},
},
scalebounce: {
"0%": {
transform: "scale(1)",
},
"100%": {
transform: "scale(1.1)",
},
},
unscalebounce: {
"0%": {
transform: "scale(1.1)",
},
"100%": {
transform: "scale(1)",
},
},
pulse: {
"0%": {
opacity: "1",
},
"50%": {
opacity: "0",
},
"100%": {
opacity: "1",
},
},
},
animation: {
boldify: "boldify 0.5s linear forwards",
unboldify: "unboldify 0.5s linear forwards",
glowpulse: "glowpulse 1.5s ease-in forwards",
pulse: "pulse 1s ease-in-out forwards infinite",
scalebounce:
"scalebounce 0.25s cubic-bezier(0.355, 0.525, 0.485, 1.650) forwards",
unscalebounce:
"unscalebounce 0.25s cubic-bezier(0.355, 0.525, 0.485, 1.650) forwards",
},
transitionDelay: {
"100": "100ms",
"200": "200ms",
"300": "300ms",
"400": "400ms",
"500": "500ms",
"600": "600ms",
"700": "700ms",
"800": "800ms",
"900": "900ms",
"1000": "1000ms",
},
cursor: {
left: "url(/icons/left-arrow.png) 32 15, move",
right: "url(/icons/right-arrow.png) 32 15, move",
},
},
},
plugins: [tailwindcssAnimate],
} satisfies Config;