2023-03-01 09:32:51 -05:00
|
|
|
# Adding A Custom Theme
|
|
|
|
|
|
|
|
1. Open the Settings Dialog
|
|
|
|
2. Navigate to the System Tab
|
|
|
|
3. In the "Additional Styles" box add these lines of code:
|
|
|
|
|
2023-03-18 23:07:40 +08:00
|
|
|
```css
|
|
|
|
.memo-list-container {
|
|
|
|
background-color: #INSERT COLOR HERE;
|
|
|
|
}
|
|
|
|
.page-container {
|
|
|
|
background-color: #INSERT COLOR HERE;
|
|
|
|
}
|
|
|
|
```
|
2023-03-01 09:32:51 -05:00
|
|
|
|
2023-03-18 23:07:40 +08:00
|
|
|
It is recommended that you choose the same color for both options
|
2023-03-01 09:32:51 -05:00
|
|
|
|
|
|
|
4. Refresh the page and the background color of your memos app will successfully update to reflect your changes
|