Dawn Theme: How do I change text colour of different colour schemes?

My colour set up is quite messy and therefore I need to use “accent 2” colour scheme on my page to get black text on white background.

However, I want to change all of the black text colour to dark blue (#000F46). Please help me with the code for this.

URL: https://pleasedontbetaken.myshopify.com/

Password: lutred

Thanks!

Hi @SebastianL ,

Go to Assets > base.css and paste this at the bottom of the file:

.color-accent-2 {
  --color-foreground: 0, 0, 255 !important;
}
p {
    color: #02e!important;
}

Hope it helps!