How to change text colour to white on all policy pages

I want to change colours of text on my all policy pages I have a background of black so I want white text

URL https://lokel.in/policies/terms-of-service

Hi there,

Add the following code to your theme.liquid file just before the tag to solve that issue.

<style>
  .shopify-policy__title, .shopify-policy__body {
    color: #fff !important;
  }
</style>

This will change the color of the text to white across all of your policy pages.

Thanks,

Blake

This Is Happening On All Pages

I want all pages text to be white not only policy pages

Update the code to this:

<style>
  body {
    color: #fff;
  }
</style>

This will update the text on all pages not just policy pages.

Hope this helps!