> For the complete documentation index, see [llms.txt](https://docs.digitalsamba.com/reference/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.digitalsamba.com/reference/sdk/methods/changebrandingoptions.md).

# changeBrandingOptions()

Changes the color branding of the room

```javascript
//Changes the palette mode type - dark or light. 
//The palette mode determines mainly the background color of the panels
sambaFrame.changeBrandingOptions({'paletteMode': 'dark'});

//Makes the primary color green - hex code of green color is #00ff00
//Primary color of the theme determines the color of main actions and highlighting
sambaFrame.changeBrandingOptions({'primaryColor': '#0000ff'});

//Makes the toolbar background color green - hex code of green color is #00ff00
sambaFrame.changeBrandingOptions({'toolbarColor': '#00ff00'});

//Makes the room background color red - hex code of red color is #ff0000
sambaFrame.changeBrandingOptions({'roomBackgroundColor': '#ff0000'});
```

**Sample use cases**:&#x20;

* You may want to customize the look & feel of your rooms to match your brand.
