How can I adjust the link text color in the Dawn theme?

Hi I need help my dawn theme login page link text are dark nobody can see if wanted to create an account or log out because it’s dark, how do I change the colour

  • How do I change the link text colour
  • How do I change the whole page to white

Hi @skullwired , can you share your login page URL so that I can write the CSS code for you?

Sure thanks this is the link

https://caravaz.com/account/login

Please add this code to your theme’s CSS file to change the text color from black to white.

.customer.login a {
    color: #fff !important;
}

Thank u it’s working, but however when I’m login on the account page, the logout link is dark, can you direct me how to change it to white

Sure, please replace the above code with this,

.customer.login a, .customer.account a {
    color: #fff !important;
}

Thank u sir it’s working you have been a great help