mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-18 23:36:00 +00:00
20 lines
459 B
TypeScript
20 lines
459 B
TypeScript
// 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 })],
|
|
};
|