How can I add hover color to the sign-in button in Dawn theme?

Topic summary

A user seeks to add hover color effects to the sign-in button in Shopify’s Dawn theme.

Desired styling:

  • Text color: #FFFFFF (white)
  • Button background color on hover: #000000 (black)

Solution provided:
Add custom CSS code through the theme customizer’s ‘Custom CSS’ settings:

#customer_login button:hover {
  color: #ffffff;
  background-color: #000000;
}

The original poster confirmed the solution worked with a brief thank you response.

Summarized with AI on November 16. AI used: claude-sonnet-4-5-20250929.

I use dawn theme and how can i put hover color on button sign in

Text color: #FFFFFF

Button backround color : #000000

1 Like

Hey @VisarK !

To accomplish this, you can add the following CSS code into the ‘Custom CSS’ settings in your theme customizer.

#customer_login button:hover {
  color: #ffffff;
  background-color: #000000;
}

Thanks a lot