mirror of
https://github.com/pawroman/zola-theme-terminimal.git
synced 2025-02-22 13:14:35 +01:00
fix: Fix default color in config.toml and examples
This commit is contained in:
parent
c365a2373e
commit
4f96dd4da5
11
README.md
11
README.md
|
@ -149,13 +149,14 @@ of your `config.toml`:
|
||||||
[extra]
|
[extra]
|
||||||
|
|
||||||
# One of: blue, green, orange, pink, red.
|
# One of: blue, green, orange, pink, red.
|
||||||
# Defaults to blue.
|
# Defaults to blue.
|
||||||
|
# Append -light for light themes, e.g. blue-light
|
||||||
|
# Or append -auto, e.g. blue-auto
|
||||||
accent_color = "green"
|
accent_color = "green"
|
||||||
|
|
||||||
# One of: blue, dark, green, orange, pink, red.
|
# One of: blue, dark, green, orange, pink, red, light, auto
|
||||||
# Enabling dark background will also modify primary font color
|
# Enabling dark background will also modify primary font color to be darker.
|
||||||
# to be darker.
|
# Defaults to accent color (or, if not accent color specified, to blue).
|
||||||
# Defaults to accent color (or, if not accent color specified, to blue).
|
|
||||||
background_color = "dark"
|
background_color = "dark"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -21,12 +21,12 @@ highlight_theme = "boron"
|
||||||
# Defaults to blue.
|
# Defaults to blue.
|
||||||
# Append -light for light themes, e.g. blue-light
|
# Append -light for light themes, e.g. blue-light
|
||||||
# Or append -auto, e.g. blue-auto
|
# Or append -auto, e.g. blue-auto
|
||||||
accent_color = "blue-auto"
|
accent_color = "blue"
|
||||||
|
|
||||||
# One of: blue, dark, green, orange, pink, red, light, auto
|
# One of: blue, dark, green, orange, pink, red, light, auto
|
||||||
# Enabling dark background will also modify primary font color to be darker.
|
# Enabling dark background will also modify primary font color to be darker.
|
||||||
# Defaults to accent color (or, if not accent color specified, to blue).
|
# Defaults to accent color (or, if not accent color specified, to blue).
|
||||||
background_color = "auto"
|
background_color = "blue"
|
||||||
|
|
||||||
# The logo text - defaults to "Terminimal theme"
|
# The logo text - defaults to "Terminimal theme"
|
||||||
logo_text = "Terminimal theme"
|
logo_text = "Terminimal theme"
|
||||||
|
|
|
@ -20,11 +20,13 @@ repo = "https://github.com/panr/hugo-theme-terminal"
|
||||||
[extra]
|
[extra]
|
||||||
|
|
||||||
# One of: blue, green, orange, pink, red.
|
# One of: blue, green, orange, pink, red.
|
||||||
|
# Defaults to blue.
|
||||||
|
# Append -light for light themes, e.g. blue-light
|
||||||
|
# Or append -auto, e.g. blue-auto
|
||||||
accent_color = "blue"
|
accent_color = "blue"
|
||||||
|
|
||||||
# One of: blue, dark, green, orange, pink, red.
|
# One of: blue, dark, green, orange, pink, red, light, auto
|
||||||
# Enabling dark background will also modify primary font color
|
# Enabling dark background will also modify primary font color to be darker.
|
||||||
# to be darker.
|
|
||||||
# Defaults to accent color (or, if not accent color specified, to blue).
|
# Defaults to accent color (or, if not accent color specified, to blue).
|
||||||
background_color = "blue"
|
background_color = "blue"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue