mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
30 lines
532 B
Plaintext
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'
|
|
```
|