-
You can color your site differently from the default palette, use any accent you like: Default colors accent='#ff0000' accent='#0000ff' SmallWeb uses CSS variables to build the palette: :root { --accent-color: hsl( var(--accent-hue), var(--accent-saturation), var(--accent-lightness) ); /* rgb(242,106,61) */ --accent-color-darker: hsl( var(--accent-hue), calc(var(--accent-saturation) - 27 … -
SmallWeb: installation and usage
This theme is installable via PyPI: $ pip install pelican-theme-smallweb Latest development version is also installable: $ pip install git+https://github.com/sio/pelican-smallweb/ Import it in your pelicanconf.py: from pelican.themes import smallweb THEME = smallweb.path()