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.
32 lines (31 loc) • 598 B
TypeScript
export interface ColorVariant {
primary: string;
secondary: string;
success: string;
warning: string;
error: string;
}
interface KeepAlertTheme {
colorWithBg: ColorVariant;
colorWithOutBg: ColorVariant;
root: {
base: string;
};
container: {
base: string;
};
description: {
base: string;
color: ColorVariant;
};
link: {
base: string;
color: ColorVariant;
};
title: {
base: string;
color: ColorVariant;
};
}
export declare const alertTheme: KeepAlertTheme;
export {};