This repository has been archived by the owner on Jan 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathtailwind.config.js
72 lines (71 loc) · 1.59 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
const colors = require("tailwindcss/colors");
const typography = require("./tailwind.typography.config");
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
typography,
colors: {
gray: {
...colors.zinc,
750: "#333338",
850: "#202023",
950: "#0C0C0E",
},
pink: {
50: "#FEE6F0",
100: "#FDCDE1",
200: "#F1A5C6",
300: "#ED8AB5",
400: "#E96EA4",
500: "#E24A8D",
600: "#DB1D70",
700: "#C01A62",
800: "#A41654",
900: "#6E0F38",
},
},
keyframes: {
"fade-in": {
"0%": {
opacity: "0",
},
"100%": {
opacity: "1",
},
},
"fade-in-delay": {
"0%": {
opacity: "0",
},
"50%": {
opacity: "0",
},
"100%": {
opacity: "1",
},
},
"fade-in-down": {
"0%": {
opacity: "0",
transform: "translateY(-10px)",
},
"100%": {
opacity: "1",
transform: "translateY(0)",
},
},
},
animation: {
"fade-in-down": "fade-in-down 0.5s ease-out",
"fade-in": "fade-in 0.2s ease-out",
"fade-in-delay": "fade-in-delay 1s ease-out",
},
backgroundSize: {
landing: "120rem",
},
},
},
plugins: [require("@tailwindcss/typography")],
};