disclaimer + map

This commit is contained in:
2024-04-24 18:16:55 +05:00
parent cb40040c8a
commit a5a0453c93
22 changed files with 359 additions and 64 deletions
+31
View File
@@ -0,0 +1,31 @@
import { ButtonStyle } from "../types/button";
const backgroundColors: ButtonStyle = {
cta: "bg-[#00BED7] hover:bg-[#00A8BE]",
primary: "bg-[#ffffff] hover:bg-[#F3F3F2]",
tertiary: "bg-[#0D192266] hover:bg-[#0D1922B2]",
fab: "bg-[#ffffff] hover:bg-[#F3F3F2]",
};
const textColors: ButtonStyle = {
cta: "text-[#ffffff]",
primary: "text-[#0D1922]",
tertiary: "text-[#ffffff]",
fab: "text-[#ffffff]",
};
const borders: ButtonStyle = {
cta: "rounded-lg",
primary: "rounded-lg",
tertiary: "rounded-full",
fab: "rounded-full",
};
const paddings = {
cta: "py-3 px-6",
primary: "py-3 px-6",
tertiary: "py-1 px-3",
fab: "py-3 px-6",
};
export { textColors, backgroundColors, borders, paddings };