-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
40 lines (40 loc) · 946 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
module.exports = {
future: {},
content: ["./src/**/*.{js,jsx,ts,tsx,vue}"],
theme: {
extend: {
fontSize: {
"2xs": "0.5rem",
},
maxWidth: {
"1/4": "25%",
"1/2": "50%",
"3/4": "75%",
},
maxHeight: {
review: "calc(100vh - 10rem)",
},
boxShadow: {
DEFAULT:
"0 2px 5px 0 rgba(60, 66, 87, 0.08), 0 0 0 1px rgba(60, 66, 87, 0.16), 0 1px 1px rgba(0, 0, 0, 0.12)",
error:
"0 2px 5px 0 rgba(255, 155, 155, 0.08), 0 0 0 1px rgba(255, 155, 155, 0.70), 0 1px 1px rgba(0, 0, 0, 0.12)",
},
colors: {
green: {
DEFAULT: "#56FBB1",
},
blue: {
DEFAULT: "#0A3149",
},
ui: {
light: "#F7F7FA",
DEFAULT: "#EEF0F5",
medium: "#D9DFE8",
dark: "#89959C",
},
},
},
},
plugins: [require("@tailwindcss/forms")],
}