1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
Files
checktheroads-hyperglass/docs/pages/configuration/examples/customize-the-ui.mdx
2022-12-19 14:57:20 -05:00

30 lines
532 B
Plaintext

---
description: Customize hyperglass to fit your needs.
---
### Change the title and organization name
```yaml filename="config.yaml"
site_title: Our super neat looking glass
org_name: Cool Company
```
### Change the logo
```yaml filename="config.yaml"
web:
logo:
light: <path to logo image file to use in light mode>
dark: <path to logo image file to use in dark mode>
```
### Change the color scheme
```yaml filename="config.yaml"
web:
theme:
colors:
primary: '#d84b4b'
secondary: '#118ab2'
```