beautifulhugo icon indicating copy to clipboard operation
beautifulhugo copied to clipboard

Options for fonts and colours

Open oschoudhury opened this issue 6 years ago • 3 comments

Is there an easy way to change fonts and colours? If so, can these options be added to the config-file.

oschoudhury avatar Mar 13 '18 14:03 oschoudhury

second this.

norayr avatar Jul 18 '18 15:07 norayr

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.

halogenica avatar Nov 08 '18 07:11 halogenica

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 to static/css/ in user repo
  • every style component in override file be marked as !important like this
.bg-primary {
  background-color: #234057 !important;
}

will this not work?

nidhi-wgl avatar May 30 '20 13:05 nidhi-wgl