-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
75 lines (75 loc) · 1.65 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
height: {
screen: "100dvh",
},
animation: {
float1: "float1 3s infinite linear",
float2: "float2 3.5s infinite linear",
},
keyframes: {
float1: {
"0%": {
transform: "rotate(0deg) translate3d(10px, 0, 0) rotate(0deg)",
},
"100%": {
transform: `rotate(360deg) translate3d(10px, 0, 0) rotate(-360deg)`,
},
},
float2: {
"0%": {
transform: "rotate(0deg) translate3d(10px, 0, 0) rotate(0deg)",
},
"100%": {
transform: `rotate(-360deg) translate3d(10px, 0, 0) rotate(360deg)`,
},
},
},
},
fontFamily: {
sans: "Montserrat, sans-serif",
},
fontWeight: {
thin: "100",
regular: "400",
medium: "500",
semibold: "600",
bold: "700",
},
colors: {
transparent: "transparent",
white: "#ffffff",
red: "#ff0336",
gray: {
50: "#efefef",
100: "#dedede",
150: "#b4b4b4",
200: "#a1a1a1",
250: "#7e7e7e",
300: "#6d6d6d",
350: "#646464",
400: "#595959",
450: "#3f3f3f",
500: "#323232",
550: "#2b2b2b",
600: "#000000",
},
},
container: {
center: true,
},
screens: {
xsm: "375px",
sm: "450px",
md: "540px",
lg: "620px",
xl: "800px",
"2xl": "1000px",
"3xl": "1200px",
},
},
plugins: [],
};