# Light & Dark Layout

To make a Light / dark layout in the theme change value in **"/src/lib/store/layoutStore.js".**

**To make Dark Layout in the theme change given below**

```cshtml
themeMode: 'dark'
```

**To make Light Layout in the theme change given below**

```cshtml
themeMode: 'dark'
```

**To make the Layout theme depend on the user's operating system**

```cshtml
themeMode: 'light' //["light","dark"]
```

Automatically sets the **theme** based on the **user's operating system's color scheme.**

{% hint style="info" %}
**Light** layout is our **default** layout so if you want to use it then no need to change anything
{% endhint %}
