I saw that this Jekyll based theme provides an option in the config file to change the colors of the theme globally. This is done by inserting the defined hex-codes in a css file.
It looks like this:
# Color settings (hex-codes without the leading hash-tag)
color:
primary: 18bc9c
secondary: 2c3e50
secondary-dark: 233140
This will even give you star rating at Google Speed – but I would just have used it for a few key CSS elements, as I would loose the great benefit of “soft reloading” of CSS in Hugo.
If you change a stylesheet in /static when running with server --watch (livereload), you see the changes without needing the browser to reload. Works with images and stylesheets. It’s almost magic.
but I would just have used it for a few key CSS elements,
Is there any specific reason for that? I grabbd the hole CSS file from the original Jeykll theme and but them into the style tags. I just needed to convert Jeykll’s template slightly to make it compatible with Go’s.