-
Notifications
You must be signed in to change notification settings - Fork 73
/
tailwind.config.js
104 lines (104 loc) · 2.21 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
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
screens: {
xs: "375px",
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1536px",
},
extend: {
colors: {
drop: "#5dadec",
fire: "#f4900c",
mediumspring: "#00ffa3",
slateus: {
800: "#131827",
700: "#1b2236",
600: "#2d344a",
500: "#464b6f",
450: "#8888af",
400: "#8991ad",
200: "#b5bddb",
100: "#c8cbd9",
},
},
width: {
"w-34": "34%",
"w-32": "30%",
"w-55": "55%",
},
lineHeight: {
2: "2",
card: "3.3",
18: "1.18",
loose1: "2.95",
},
fontFamily: {
roboto: ["Roboto Mono", "monospace"],
inter: ["Inter", "sans-serif"],
},
fontSize: {
"2xs": "0.65rem",
"41xl": "2.5rem",
"21xl": "1.87rem",
"32xl": "2rem",
"28xl": "1.75rem",
},
animation: {
"fade-in": "fade-in 1s ease-in 0s",
"slow-pulse": "pulse 4s ease-in-out infinite",
"flash-orange": "to-orange-400 0.8s",
"flash-blue": "to-blue-400 0.8s",
"dolphin-flip": "dolphin-flip 1s ease-in-out",
},
keyframes: {
"fade-in": {
"0%": {
opacity: 0,
},
"100%": {
opacity: 100,
},
},
"dolphin-flip": {
"0%": {
transform: "rotate(0deg)",
},
"50%": {
transform: "rotate(-30deg)",
},
"100%": {
transform: "rotate(0deg)",
},
},
"to-orange-400": {
"0%": {
color: "white",
},
"50%": {
color: "#fb923c",
},
"100%": {
color: "white",
},
},
"to-blue-400": {
"0%": {
color: "white",
},
"50%": {
color: "#60a5fa",
},
"100%": {
color: "white",
},
},
},
},
},
plugins: [],
};