first
This commit is contained in:
@@ -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 };
|
||||
Reference in New Issue
Block a user