mirror of https://github.com/buster-so/buster.git
40 lines
836 B
TypeScript
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']
|
|
}
|
|
]
|
|
}
|
|
]
|
|
*/
|
|
}
|
|
}
|
|
});
|