Files
vacancies-trends-front/app/lib/tremor/tremorTwMerge.ts
2024-08-29 02:32:30 +02:00

37 lines
745 B
TypeScript

import { extendTailwindMerge } from "tailwind-merge";
export const tremorTwMerge = extendTailwindMerge({
classGroups: {
boxShadow: [
{
shadow: [
{
tremor: ["input", "card", "dropdown"],
"dark-tremor": ["input", "card", "dropdown"],
},
],
},
],
borderRadius: [
{
rounded: [
{
tremor: ["small", "default", "full"],
"dark-tremor": ["small", "default", "full"],
},
],
},
],
fontSize: [
{
text: [
{
tremor: ["default", "title", "metric"],
"dark-tremor": ["default", "title", "metric"],
},
],
},
],
},
});