Can I alter Accent 1 text color to white on my website?

Topic summary

A user needed to change their website’s Accent 1 text color from #FCFCFC (nearly white) to pure white, as it was blending with the background.

Solution provided:

  • Navigate to Online Store → Theme → Edit code
  • Locate the base.css file
  • Add CSS code at the bottom targeting .color-accent-1 h2, .color-accent-1 p with color: #FCFCFC !important;
  • Save the file

Outcome: The solution was successfully implemented and resolved the visibility issue.

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

Currently my font almost blends in with the background colour. I’m wondering if it’s possible at all to change the colour of the font to white, atm its #FCFCFC

Link to web: https://fleurelleflowers.myshopify.com/

Hi @Smander,

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file base.css,

Step 3: Paste the below code at bottom of the file → Save

.color-accent-1 h2,.color-accent-1 p{
        color:#FCFCFC !important
    }

Hope my solution works perfectly for you!

Best regards,

Victor | PageFly

@PageFly-Victor thanks, worked perfectly!

@smander ,

You are welcome, I’m glad when I can help you :heart_eyes: