Description
Better Sphinx Theme.
This is a modified version of the default Sphinx theme with the following goals:
- Remove frivolous colors, especially hard-coded ones
- Improve readability by limiting width and using more whitespace
- Encourage visual customization through CSS, not themeconf
- Use semantic markup
v0.1 meets goals one and two. Goal three is partially complete; it's simple to add your own CSS file without creating a whole new theme. you'd like something changed.
To use the theme, set html_theme_path
to contain better.better_theme_path
, and set html_theme
to 'better'
::
from better import better_theme_path
html_theme_path = [better_theme_path]
html_theme = 'better'