@awal-solution/tailwind-theming
Version:
<div align="left"> <h1>Tailwind theming</h1> <p>The <b>TailwindCSS Multi-Theming Plugin</b> is a utility for creating and managing multiple themes in your TailwindCSS-based projects. With this library, you can define, add, update, and remove themes dyn
10 lines (9 loc) • 333 B
TypeScript
import { MultiThemePluginOptions } from '../types';
declare const themePlugin: {
(options: Partial<MultiThemePluginOptions>): {
handler: import('tailwindcss/types/config').PluginCreator;
config?: Partial<import('tailwindcss/types/config').Config>;
};
__isOptionsFunction: true;
};
export { themePlugin };