buster/web/src/styles/busterChartsTwMerge.ts

40 lines
836 B
TypeScript

import { extendTailwindMerge } from 'tailwind-merge';
export const busterChartsTwMerge = extendTailwindMerge({
override: {
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']
}
]
}
]
*/
}
}
});