Skip to main content

Changing background colors

To change the background colors of your app, simply add the following CSS to either the page or layout you wish to change. Adding this CSS to a page will change the background color for that page while adding it to the layout will change the background color for all pages nested within that layout. 

body {
    background-color: #e6e6e6;
}

When using this exact CSS, the resulting background will appear as such: 

You can replace the hex # to any color you choose.