From c4559170afe5ea96252fcd53bb1a8d4b5c9dc14d Mon Sep 17 00:00:00 2001 From: Kye Date: Thu, 31 Aug 2023 17:02:45 -0400 Subject: [PATCH] roboto + custom colors --- docs/stylesheets/extra.css | 4 ++++ mkdocs.yml | 15 ++++++++++++--- 2 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 docs/stylesheets/extra.css diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css new file mode 100644 index 00000000..be1c98e1 --- /dev/null +++ b/docs/stylesheets/extra.css @@ -0,0 +1,4 @@ +:root { + --md-primary-fg-color: #8315F9; + --md-accent-fg-color: #00FFCE; + } \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index a29ecb87..08107b0f 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,4 +1,4 @@ -site_name: Zeta Docs +site_name: Package Docs plugins: - glightbox - search @@ -25,13 +25,13 @@ theme: palette: # Palette toggle for light mode - scheme: default - primary: black + primary: 'custom' toggle: icon: material/brightness-7 name: Switch to dark mode # Palette toggle for dark mode - scheme: slate - primary: black + primary: 'custom' accent: light blue toggle: icon: material/brightness-4 @@ -44,6 +44,13 @@ theme: - navigation.expand - navigation.top - announce.dismiss + font: + text: Roboto + code: Roboto Mono + +extra_css: + - stylesheets/extra.css + markdown_extensions: - pymdownx.highlight: anchor_linenums: true @@ -58,6 +65,8 @@ markdown_extensions: - tables - def_list - footnotes + + nav: - Home: - Overview: "index.md"