Personalization
There are multiple ways you can customize the look of your blog.
- Layout: We have a few layouts for professional and personal blogs.
- Color: You can change the background color of your blog.
- Font family: You can pick the font family for title and body of your blog text.
Layout
We currently support three layouts that you can pick using the layout
key.
Default Layout: To use this layout, leave the
layout
key empty. See a demo here.Brooklyn: This is a simple layout for personal blogs To use this layout use:
layout:
type: Brooklyn
bannerDescription: >-
This is a sample text for banner.
- Manhattan: This is a fancier layout. See a demo here. To use this layout use
layout:
type: Manhattan
Font Family
We support the following font families for your blog.
type FontFamily =
| "DEFAULT_SANS"
| "DEFAULT_SERIF"
| "LORA"
| "NOTO_SERIF"
| "ROBOTO_MONO"
| "ROBOTO_SLAB"
| "SOURCE_SANS_PRO"
| "SOURCE_SERIF_PRO";
To set the font family, you can use the titleFont
and bodyFont
keys in truegit.yaml
. For example:
titleFont: "DEFAULT_SANS"
bodyFont: "DEFAULT_SERIF"
Background Color
Use the backgroundColor
key in the configuration file to set the background color. It must be a HEX value. The font color is either gray or white based on the contrast.
backgroundColor: "#CCC"