I am trying to implement my own custom theme for sphinx locally. I keep running into this error:
no theme named 'custom_theme' found (missing theme.conf?)
.
I have a theme.conf
in my custom_theme/
directory. Which looks like:
[theme]
inherit = basic
stylesheet = styles/site.min.css
In my conf.py I have these following relevant settings:
html_theme = 'custom_theme'
html_theme_path = ["."]
For reference I have been trying to kind of mirror the setup on this theme's repo https://github.com/snide/sphinx_rtd_theme. Using grunt to build my styles and such. But still getting that error. I was hoping someone had found some detailed docs as to how to create your own sphinx themes and templates. Thank you.
I ended up just overriding everything and putting my theme in source/