19 lines
555 B
TypeScript
19 lines
555 B
TypeScript
|
import * as tailwindcss_types_config from 'tailwindcss/types/config';
|
||
|
import { variants } from '@catppuccin/palette';
|
||
|
import { Config } from 'tailwindcss';
|
||
|
|
||
|
type CatppuccinFlavor = keyof typeof variants;
|
||
|
type CatppuccinPluginOptions = {
|
||
|
prefix?: string | boolean;
|
||
|
defaultFlavour?: CatppuccinFlavor;
|
||
|
};
|
||
|
declare const _default: {
|
||
|
(options: CatppuccinPluginOptions): {
|
||
|
handler: tailwindcss_types_config.PluginCreator;
|
||
|
config?: Partial<Config> | undefined;
|
||
|
};
|
||
|
__isOptionsFunction: true;
|
||
|
};
|
||
|
|
||
|
export { _default as default };
|