beautifulhugo
beautifulhugo copied to clipboard
Options for fonts and colours
Is there an easy way to change fonts and colours? If so, can these options be added to the config-file.
second this.
Thanks! It's unlikely I'll ever get around to this, but if someone wants to send me a PR I can look at it.
Hi, can we follow this logic
- in
config.toml
file add two parameters
useCustomStyle: true
// and
customFontFamily: <font-css-location> | <cdn-cloudfar-href>
// if self hosting they will give css location
- load
main_style_override.css
be it a standard name and add it tostatic/css/
in user repo - every style component in override file be marked as
!important
like this
.bg-primary {
background-color: #234057 !important;
}
- load the custom css file and font css file around line 46 in head layout file
will this not work?