Beginner here: How would I change the background color(s) and text color? #645
-
Hey folks, dipping my toe into making a website for the first time using Hugo + Papermod. I'm really grateful to have such a nice jumping-off point with Papermod for starting to shape my website, but I'm having trouble trying to learn how to change the default background colors and font colors for light & dark themes. I've browsed through the first handful of discussions here without any luck. I'm trying to make both the light & dark themes a bit more warm and "sepia" - or at least I'd like to try that out - but I'm not sure what I need to edit in order to do that properly. Should I be editing the theme's .css files? Should I be making my own .css files somewhere else for the site to use instead of the default theme ones? What do I even write in the .css to tweak colors like that? Any help would be massively appreciated - Cheers & Thanks! ~M |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
In your site (not the theme) create a file such as containing something like:
Adjusted to your preferred colours of course. Also I'd recommend not using rgba (transparency) due to issues with it; I just haven't gotten around to changing it for this site as of yet. |
Beta Was this translation helpful? Give feedback.
In your site (not the theme) create a file such as
assets/css/extended/theme-vars-override.css
containing something like:
Adjusted to yo…