2022-06-24 01:43:34 +00:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
sys.path.insert(0, os.path.abspath('../..'))
|
|
|
|
extensions = [
|
|
|
|
'sphinx_click',
|
|
|
|
'sphinx.ext.autosummary', # Create neat summary tables
|
|
|
|
]
|
|
|
|
templates_path = ['templates']
|
|
|
|
project = 'Kupfer👢strap'
|
|
|
|
html_title = 'Kupferbootstrap'
|
|
|
|
html_theme = 'furo'
|
|
|
|
html_static_path = ['static']
|
|
|
|
html_css_files = ['kupfer_docs.css']
|
|
|
|
html_favicon = 'static/kupfer-white-filled.svg'
|
|
|
|
html_theme_options = {
|
|
|
|
"globaltoc_maxdepth": 5,
|
|
|
|
"globaltoc_collapse": True,
|
|
|
|
"light_logo": "kupfer-black-transparent.svg",
|
|
|
|
"dark_logo": "kupfer-white-transparent.svg",
|
2022-10-04 15:48:15 +02:00
|
|
|
"light_css_variables": {
|
|
|
|
"color-brand-primary": "#882a1a",
|
|
|
|
"color-brand-content": "#882a1a",
|
|
|
|
},
|
|
|
|
"dark_css_variables": {
|
|
|
|
"color-brand-primary": "#eba38d",
|
|
|
|
"color-brand-content": "#eba38d",
|
|
|
|
"color-problematic": "#ff7564",
|
|
|
|
},
|
2022-06-24 01:43:34 +00:00
|
|
|
}
|