forked from cerc-io/snowballtools-base
13 lines
274 B
TypeScript
13 lines
274 B
TypeScript
import { tv, type VariantProps } from 'tailwind-variants';
|
|
|
|
export const headingTheme = tv({
|
|
base: [
|
|
'text-elements-high-em',
|
|
'dark:text-foreground',
|
|
'font-display',
|
|
'font-normal',
|
|
],
|
|
});
|
|
|
|
export type HeadingVariants = VariantProps<typeof headingTheme>;
|