blob: 2a05cd74252ea195a1f4fdc8e48dbb934c56491d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Import the existing Tailwind config from your shared repository
const sharedConfig = require("@repo/tailwind-config/tailwind.config");
module.exports = {
presets: [sharedConfig],
theme: {
extend: {
colors: {
scrollbar: {
// thumb: "#d1d5db",
// thumbHover: "#1D4ED8",
thumb: "#303c4c",
thumbHover: "#2E3A48",
track: "#1F2937",
},
},
},
},
plugins: [require("tailwind-scrollbar")({ nocompatible: true })],
};
|