-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
70 lines (69 loc) · 1.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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
screens: {
s: "320px",
sm: "480px",
md: "768px",
l: "1000px",
xl: "1280px",
xxl: "1440px",
},
colors: {
white: "#fff",
red: "#FF5757",
light1: "rgba(255, 255, 255, 0.1)",
light2: "rgba(255, 255, 255, 0.2)",
backgroundInput: "rgba(255, 255, 255, 0.05)",
},
fontFamily: {
inter: ["Inter", " sans-serif"],
},
fontSize: {
10: "10px",
12: "12px",
13: "13px",
14: "14px",
16: "16px",
18: "18px",
20: "20px",
22: "22px",
28: "28px",
30: "30px",
32: "32px",
33: "33px",
37: "37px",
40: "40px",
43: "43px",
67: "67px",
98: "98px",
},
fontWeight: {
100: "100",
200: "200",
300: "300",
400: "400",
500: "500",
600: "600",
700: "700",
800: "800",
900: "900",
},
backgroundColor: {
white: "#fff",
black: "rgba(0,0,0,0.9)",
overlay: "rgba(1, 10, 5, 0.92)",
unActiveImage: "rgba(9, 20, 16, 0.25)",
light1: "rgba(255, 255, 255, 0.1)",
light2: "rgba(255, 255, 255, 0.2)",
input: "rgba(255, 255, 255, 0.05)",
},
},
plugins: [],
};
export default config;