-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
44 lines (43 loc) · 964 Bytes
/
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
import plugin from "tailwindcss/plugin";
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {
colors: {
primary: {
// 100: "",
// 200: "",
300: "#6b7280",
400: "#3a4352",
500: "#293340",
600: "#253043",
700: "#2a3441",
800: "#1f2937",
900: "#192231",
},
},
screens: {
"2xl": "1320px",
},
},
fontFamily: {
roboto: ["Roboto"],
source: ["Source Code Pro"],
},
},
plugins: [
plugin(({ addUtilities }) => {
const newUtilities = {
".no-scrollbar::-webkit-scrollbar": {
display: "none",
},
".no-scrollbar": {
MsOverflowStyle: "none" /* IE and Edge */,
scrollbarWidth: "none" /* Firefox */,
},
};
addUtilities(newUtilities);
}),
],
};