UNPKG

keep-vue

Version:

Keep Vue is an open-source component library built on top of Vue3 and Tailwind CSS. It offers a collection of pre-designed UI components and styles that you can easily integrate into your web applications.

10 lines (9 loc) 274 B
import type { Config } from 'tailwindcss'; type ColorThemeType = { [key: string]: { [key: number]: string; }; }; declare const colors: ColorThemeType; declare const keepTheme: (config: Config, color?: ColorThemeType) => Config; export { colors, keepTheme };