Configure Your Theme

Last modified: April 20, 2023

1 Introduction

This document describes how to configure the styling of your page in Studio Pro.

2 Configuring Your Theme

The styling that is loaded when opening your Mendix application in a web browser is configured in the HTML of your index pages.

To ensure that the same styling is loaded when viewing your page in Studio Pro, you can configure the "cssFiles" property in settings.json in the theme folder of your app. For example, in this configuration, theme/web/main.scss is loaded when viewing a page in Studio Pro:

1
2
3
{
    "cssFiles": [ "theme/web/css/main.scss" ]
}

To avoid having to maintain the styling that is loaded in the client and Studio Pro separately, you can use the following token in your index pages to load the same styling in the client: {{themecss}}.

1
2
3
<head>
    {{themecss}}
</head>