18 lines
328 B
TypeScript
18 lines
328 B
TypeScript
export const colorVariants = {
|
|
primary: [
|
|
"bg-accent-50",
|
|
"text-primary",
|
|
"hover:bg-accent-100",
|
|
"active:bg-accent-150",
|
|
],
|
|
secondary: [
|
|
"bg-transparent",
|
|
"text-primary",
|
|
"hover:bg-accent-50",
|
|
"border-accent-50",
|
|
"border",
|
|
"hover:bg-accent-100",
|
|
"active:bg-accent-150",
|
|
],
|
|
};
|