-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (33 loc) · 841 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (33 loc) · 841 Bytes
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
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
screens: {
sm1: "700px",
md1: "800px",
md2: "900px",
lg1: "1100px",
lg2: "1200px",
xl: "1280px",
xl1: "1400px",
xl2: "1500px",
},
colors: () => ({
themeBlue1: "#4629DD",
themeViolet1: "#7F2FE6",
transparentBlack1: "rgb(0 0 0 / 30%)",
transparentBlack2: "rgb(0 0 0 / 40%)",
transparentWhite1: "#ffffff30",
transparentWhite2: "#ffffff40",
transparentBlue1: "#4629dd70",
transparentBlue2: "#4629dd90",
buttonCyan: "#4676F5"
}),
boxShadow: {
highlightIconHover: "0 0 10px 0px #00000099",
gallerySearchInput: "0 0 20px 10px #00000030",
},
},
},
plugins: [],
};