From 920018027110a12046458c61d27f9b85052c098f Mon Sep 17 00:00:00 2001 From: arxyzan Date: Sun, 20 Aug 2023 20:58:16 +0330 Subject: [PATCH] Update some theming options for docs --- docs/conf.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 0f18720e..54085753 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -43,14 +43,23 @@ ] suppress_warnings = ["myst.header"] +html_title = "Hezar Documentation" html_theme_options = { "source_repository": "https://github.com/hezarai/hezar/", "source_branch": "main", "source_directory": "docs/", + "light_css_variables": { + "color-foreground-primary": "#2C3E50" + }, + "dark_css_variables": { + "color-foreground-primary": "#ceddeb" + } } +pygments_style = "emacs" +pygments_dark_style = "material" html_theme = 'furo' html_static_path = ['_static'] html_logo = "hezar_logo.svg" -html_favicon = "hezar_logo.svg" \ No newline at end of file +html_favicon = "hezar_logo.svg"