1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
# SPDX-FileCopyrightInfo: Copyright © DUNE Project contributors, see file LICENSE.md in module root
# SPDX-License-Identifier: LicenseRef-GPL-2.0-only-with-DUNE-exception
import sys
sys.path.append('@DUNE_SPHINX_EXT_PATH@')
extensions = ['sphinx_cmake_dune']
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = "classic"
html_theme_options = {
"rightsidebar": "true",
"relbarbgcolor": "#eeeeee",
"relbartextcolor": "#353B44",
"relbarlinkcolor": "#353B44",
"headbgcolor": "white",
"headtextcolor": "#353B44",
"linkcolor": "#337AB7",
"visitedlinkcolor": "#337AB7",
"textcolor": "#353B44",
"footerbgcolor": "white",
"footertextcolor": "#353B44",
"codebgcolor": "#eeeeee",
}
html_sidebars = {'**': []}
html_title = ""
|