-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (39 loc) · 985 Bytes
/
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
fontSize: {
sm: "0.750rem",
base: "1rem",
xl: "1.333rem",
"2xl": "1.777rem",
"3xl": "2.369rem",
"4xl": "3.158rem",
"5xl": "4.210rem",
},
extend: {
colors: {
blue: "var(--blue)",
green: "var(--green)",
purple: "var(--purple)",
red: "var(--red)",
yellow: "var(--yellow)",
background: "var(--background)",
Blob: "var(--blob-bg)",
line: "var(--line)",
menuBlock: "var(--menu-block)",
navMenuBg: "var(--navMenuBg)",
aboutContainer: "var(--aboutContainer)",
cardTagBg: "var(--cardTagBg)",
text: "var(--text)",
item7: "var(--)",
},
screens: {
nsm: { max: "639px" },
nlg: { max: "1023px" },
},
transitionProperty: {},
},
},
plugins: [],
};