Background color of all pages

White would be #ffffff, not #f0f0f0.

  • Launch your project and use your browser's Development Tools (F12).
  • Use the Inspection Tool (top left on the Developer toolbar) and click the page background.
  • In the Styles tab you will find the following:
.ia_container--root {
    background-color: var(--containerRoot);
}

You could hard-code your #ffffff or white in there but I recommend that you use a built-in theme color such as --neutral-10 which is very close to white but will adjust automatically if you change your theme.

2 Likes