File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 6161# List of patterns, relative to source directory, that match files and directories to
6262# ignore when looking for source files.
6363# This pattern also affects html_static_path and html_extra_path.
64- exclude_patterns = ["_templates" , "_build" , "Thumbs.db" , ".DS_Store" ]
65-
64+ exclude_patterns = [
65+ "_templates" ,
66+ "_build" ,
67+ "Thumbs.db" ,
68+ ".DS_Store" ,
69+ "**.ipynb_checkpoints" ,
70+ ]
6671# HTML Theme
6772# Theme colors and fonts come from https://brand.orange.com
6873html_theme = "furo"
6974html_theme_options = {
7075 "light_css_variables" : {
7176 "color-brand-primary" : "#FF7900" ,
7277 "color-brand-content" : "#F16E00" ,
78+ "color-brand-visited" : "#FF7900" ,
7379 "color-sidebar-background" : "#FFFFFF" ,
7480 "color-highlighted-background" : "#FFD200" ,
7581 "color-admonition-title--note" : "#FF7900" ,
7985 "dark_css_variables" : {
8086 "color-brand-primary" : "#FF7900" ,
8187 "color-brand-content" : "#F16E00" ,
88+ "color-brand-visited" : "#FF7900" ,
8289 "color-sidebar-background" : "#000000" ,
8390 "color-highlighted-background" : "#FFD200" ,
8491 "color-admonition-title--note" : "#FF7900" ,
You can’t perform that action at this time.
0 commit comments