---
title: Custom
---

# Customize your theme

You can alter the full basic theme using css custom properties. All settings can be found in the defaults and be used as the following;

```css
--coat-[VARIABLE]: [YOUR_VALUE];
```

Load your own stylesheet and define custom properties;

**Custom property example**

```css
:root {
	--coat-background-color: red;
}
```
