Hey denis g., if you’re using Relume’s Tailwind config and you want to change the button’s background color, you just need to change the background’s alternative color here:
background: {
DEFAULT: "#ffffff", // bg-background, text-background, border-background,
primary: "#ffffff", // bg-background-primary, text-background-primary, border-background-primary,
secondary: "#eeeeee",
tertiary: "#666666",
alternative: "#000000",
success: "#ecfdf3",
error: "#fef3f2",
}
If you want to change more than the background color, you can copy paste the Button’s source code from the docs here and paste it in a file in your codebase and import it in the components that are using the Button element.