-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
47 lines (41 loc) · 998 Bytes
/
tailwind.config.cjs
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 = {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
colors: {
transparent: "transparent",
main: "#010014",
box: "#0d1b32",
secondary: "#91cde6",
head: "#ccd6f6",
text: "#a3afd1",
mint: "#91cde6",
rose: "#DB2B39",
white: "#FFFFFF",
},
extend: {
height: {
100: "40rem",
},
width: {
100: "30rem",
110: "35rem",
120: "40rem",
},
},
screens: {
xl: { max: "1279px" },
// => @media (max-width: 1279px) { ... }
lg: { max: "1023px" },
// => @media (max-width: 1023px) { ... }
md: { max: "767px" },
// => @media (max-width: 767px) { ... }
sm: { max: "639px" },
// => @media (max-width: 639px) { ... }
},
fontFamily: {
roboto: ["Roboto", "seri"],
},
},
plugins: [require("tailwind-scrollbar")({ nocompatible: true })],
};