-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
47 lines (47 loc) · 1.19 KB
/
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
42
43
44
45
46
47
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_50: "#eaecf0",
gray_901: "#17202e",
gray_902: "#0d1624",
gray_900: "#141e2b",
bluegray_100: "#d6dae2",
gray_50: "#f8f9fa",
bluegray_900: "#29313e",
bluegray_700: "#424c5d",
bluegray_600: "#5f6c86",
black_900: "#000919",
bluegray_300: "#9ea8ba",
black_901: "#000000",
white_A700: "#ffffff",
bluegray_901: "#262b35",
},
borderRadius: {
radius5: "5px",
radius8: "8px",
radius12: "12px",
radius14: "14px",
radius15: "15px",
radius20: "20px",
radius23: "23px",
radius50: "50%",
},
fontFamily: {
gilroy: "Gilroy",
spacegrotesk: "Space Grotesk",
opensans: "Open Sans",
publicsans: "Public Sans",
},
letterSpacing: { ls1: "1px" },
},
},
plugins: [require("@tailwindcss/forms")],
};