-
Notifications
You must be signed in to change notification settings - Fork 10
/
tailwind.config.js
47 lines (45 loc) · 1.09 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: ["./src/**/*.{js,jsx,ts,tsx, md, mdx}"],
theme: {
extend: {
screens: {
lg: { min: "1024px" },
// => @media (max-width: 1023px) { ... }
md: { min: "640px", max: "1023px" },
// => @media (max-width: 767px) { ... }
sm: { max: "639px" },
},
fontFamily: {
Inter: ["Inter", "sans-serif"],
monty: ["Montserrat", "sans-serif"],
Plex: ["IBM Plex Sans", "sans-serif"],
},
colors: {
primary: "#31CE9F",
sideColors: {
1: "#00B3A2",
3: "#00989B",
},
darkshades: {
active: "#202020",
// active: "#0f0f0f",
// passive: "#0f0f0f",
passive: "#111111",
// passive: "#202124",
},
textcolors: {
active: "#FFFFFF",
passive: "#B1B1B1",
boundary: "#D9D9D9",
},
gradients: {
green: "#00C180",
logo: "#31CE9F",
},
},
},
},
plugins: [],
};