This commit is contained in:
2024-04-15 18:19:49 +05:00
commit e0498a7d25
32 changed files with 2705 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
import { ButtonColor } from "../types/button";
const backgroundColors: ButtonColor = {
cta: "bg-[#00BED7]",
primary: "bg-[#ffffff]",
tertiary: "bg-[#0D192266]",
};
const backgroundHoverColors: ButtonColor = {
cta: "hover:bg-[#00A8BE]",
primary: "hover:bg-[#F3F3F2]",
tertiary: "hover:bg-[#0D192266]",
};
const textColors: ButtonColor = {
cta: "text-[#ffffff]",
primary: "text-[#0D1922]",
tertiary: "text-[#ffffff]",
};
export { textColors, backgroundColors, backgroundHoverColors };