diff --git a/doc/source/_static/synadm.css b/doc/source/_static/synadm.css new file mode 100644 index 00000000..59aa1efb --- /dev/null +++ b/doc/source/_static/synadm.css @@ -0,0 +1,14 @@ +/* +html[data-theme="light"] { + --pst-color-secondary: #a23632; +} +html[data-theme="light"] { + --pst-color-inline-code: #a23632; +} +*/ +table tr:hover td { + background-color: var(--bs-gray-300); +} + +/* pydata teal (primary): #126A7E */ +/* pydata violet (secondary): #7D0E70 */ diff --git a/doc/source/conf.py b/doc/source/conf.py index 1ed9b062..9b0a6390 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -61,6 +61,10 @@ # a list of builtin themes. # html_theme = "sphinx_book_theme" +#html_theme = "pydata_sphinx_theme" +#html_theme = "furo" +#html_theme = "press" +#html_theme = "alabaster" # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, @@ -68,11 +72,16 @@ # html_static_path = ['_static'] html_theme_options = { - 'collapse_navigation': True, - 'navigation_depth': 8, - 'sticky_navigation': False, - 'prev_next_buttons_location': 'bottom' + "collapse_navigation": True, + "logo": { + "text": "synadm - The Synapse Admin CLI", + }, + "pygment_light_style": "bw", } +html_title = "synadm" +#html_logo = "_static/beets_logo_nobg.png" +html_static_path = ["_static"] +html_css_files = ["synadm.css"] # -- Extension configuration -------------------------------------------------