-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
32 lines (32 loc) · 892 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
32 lines (32 loc) · 892 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
module.exports = {
mode: "jit",
content: [
"./src/**/**/*.{js,ts,jsx,tsx,html,mdx}",
"./src/**/*.{js,ts,jsx,tsx,html,mdx}",
],
darkMode: "class",
theme: {
screens: { lg: "1120px", xl: "1281px", "2xl": "1441px", "3xl": "1729px" },
extend: {
colors: {
bluegray_900: "#2b303f",
black_900: "#000000",
blue_A400: "#167dff",
bluegray_400: "#7f8395",
bluegray_101: "#d6d8e5",
bluegray_100: "#d9d9d9",
black_900_19: "#00000019",
white_A700: "#ffffff",
gray_50: "#f8f9fa",
},
fontFamily: {
lato: "Lato",
jetbrainsmono: "JetBrains Mono",
opensans: "Open Sans",
},
borderRadius: { radius10: "10px", radius30: "30px", radius50: "50%" },
boxShadow: { bs: "4px 4px 10px 2px #00000019" },
},
},
plugins: [require("@tailwindcss/forms")],
};