-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
40 lines (40 loc) · 1.05 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
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: {
green_300: "#6ccb9c",
bluegray_50: "#eaecf0",
gray_901: "#121b29",
blue_500: "#18a0fb",
gray_900: "#0d1624",
bluegray_100: "#d6dae2",
blue_A200: "#4f80e1",
bluegray_900: "#1f2735",
black_900_99: "#090b0d99",
black_900: "#000919",
bluegray_200: "#bac1ce",
blue_400: "#37aee2",
white_A700: "#ffffff",
cyan_400: "#18cdca",
bluegray_902: "#262f3b",
bluegray_901: "#29313e",
},
borderRadius: {
radius2: "2px",
radius6: "6px",
radius8: "8px",
radius12: "12px",
radius50: "50%",
},
fontFamily: { spacegrotesk: "Space Grotesk", opensans: "Open Sans" },
},
},
plugins: [require("@tailwindcss/forms")],
};