modified customization page
This commit is contained in:
parent
fe1c29e732
commit
85d353f33d
2 changed files with 30 additions and 10 deletions
|
@ -37,9 +37,19 @@ If you need to change this default behavior, create a new file in `layouts/parti
|
||||||
```toml
|
```toml
|
||||||
[params]
|
[params]
|
||||||
# Change default color scheme with a color name or color code.
|
# Change default color scheme with a color name or color code.
|
||||||
primaryColor = "yourColor"
|
primary_color = "#02007e"
|
||||||
secondaryColor = "yourColor"
|
body_color = "#f9f9f9"
|
||||||
textColor = "yourColor"
|
text_color = "#636363"
|
||||||
textColorDark = "yourColor"
|
text_color_dark = "#242738"
|
||||||
whiteColor = "yourColor"
|
white_color = "#ffffff"
|
||||||
|
light_color = "#f8f9fa"
|
||||||
|
```
|
||||||
|
|
||||||
|
### Change default Fonts
|
||||||
|
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[params]
|
||||||
|
# font family
|
||||||
|
font_family = "lato" # Choose font family from : https://fonts.google.com/
|
||||||
```
|
```
|
|
@ -37,9 +37,19 @@ If you need to change this default behavior, create a new file in `layouts/parti
|
||||||
```toml
|
```toml
|
||||||
[params]
|
[params]
|
||||||
# Change default color scheme with a color name or color code.
|
# Change default color scheme with a color name or color code.
|
||||||
primaryColor = "yourColor"
|
primary_color = "#02007e"
|
||||||
secondaryColor = "yourColor"
|
body_color = "#f9f9f9"
|
||||||
textColor = "yourColor"
|
text_color = "#636363"
|
||||||
textColorDark = "yourColor"
|
text_color_dark = "#242738"
|
||||||
whiteColor = "yourColor"
|
white_color = "#ffffff"
|
||||||
|
light_color = "#f8f9fa"
|
||||||
|
```
|
||||||
|
|
||||||
|
### Change default Fonts
|
||||||
|
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[params]
|
||||||
|
# font family
|
||||||
|
font_family = "lato" # Choose font family from : https://fonts.google.com/
|
||||||
```
|
```
|
Loading…
Reference in a new issue