This is properly doing my head in - I didn't think I would find customising grav so challenging.
I have setup a theme inheritance and I would like to change the value of $showcase-bg and $showcase-text to white and some shade of blue respectively (these are the colours of the showcase bit in the blog part of afterburner). I have done the following:
- Made the custom scss folder:
mytheme/scss/template - Copied over
themes/afterburner2/scss/template.scsstothemes/mythem/template.scss - I made a file called
_custom.scsswith the following contents:SCSS// Showcase $showcase-bg: #FFFFFF; $showcase-text: rgb(18,21,40); - Eventually I manage to get the following command (run in
`themes/mytheme) to work:scss --load-path ../afterburner2/scss --watch scss:css-compiled - This produces the following message, which seems iffy:
>>> Sass is watching for changes. Press Ctrl-C to stop.
But obviously this does not do what I want. Any help?