I use css variables as outlined here: https://pydata-sphinx-theme.readthedocs.io/en/latest/user_guide/customizing.html#css-theme-variables My customs.css looks like this ```css :root { --pst-color-navbar-link: 255, 255, 255; --pst-color-navbar-link-hover: 192, 192, 192; --pst-color-navbar-link-active: 203, 86, 40; } #navbar-main { background-color: #2f4858 !important; } i.fa-github-square:before { color: #ffffffff; } ``` I wondered if you could add a css variable for customizing the navbar background. It could be called `--pst-color-navbar-background`.