Skip to main content
Breeze Breeze Breeze
    Search Ctrl+K
    • English
    • Français
    • 中文
    • User Guide
    • Examples
    • Extensions
    • Contributing
    • Changelog

      Getting Started

      • Quickstart
      • Markup
      • Accessibility
      • Theme layout
        • Edit this page
        • External links
        • Language switcher
        • Page actions
        • Repository stats
        • Version switcher

      Customisation

      • Announcement
      • Branding and logo
      • CSS theme variables
      • Light and dark mode
      1. User Guide
      2. Branding and logo
      • Copy page
      • View source

      • Open in ChatGPT
      • Open in Claude
      • Open in Perplexity

      đź”– Branding and logo#

      Customize your documentation’s logo, title, and favicon.

      Logo#

      Set your logo using the standard Sphinx html_logo option in conf.py:

      html_logo = "_static/logo.png"
      

      The logo appears in the header alongside your site title.

      Light and dark logos#

      Use different logos for light and dark themes via html_theme_options:

      html_theme_options = {
          "light_logo": "logo-light.png",
          "dark_logo": "logo-dark.png",
      }
      

      Option

      Description

      light_logo

      Logo shown in light mode

      dark_logo

      Logo shown in dark mode

      Both options support local paths (relative to _static/) or full URLs. If only one is set, the other falls back to html_logo.

      Site Title#

      Set the site title with html_title:

      html_title = "My Project"
      

      The title appears next to the logo in the header and is used as the default page title suffix.

      Favicon#

      Add a favicon with html_favicon:

      html_favicon = "_static/favicon.ico"
      

      Supported formats: .ico, .png, .svg.

      Brand Typography#

      Customize the brand font family with CSS:

      :root {
        --bz-font-brand: "Inter", sans-serif;
      }
      

      Header Brand Styling#

      Additional CSS variables for the header brand:

      :root {
        --bz-header-brand-font-size: 1.75rem;
        --bz-header-brand-color: var(--bz-header-color);
        --bz-header-brand-color-hover: var(--bz-link-color-hover);
        --bz-header-brand-font-family: var(--bz-font-brand);
      }
      
      Previous Announcement Next CSS theme variables

      On this page

      • Logo
        • Light and dark logos
      • Site Title
      • Favicon
      • Brand Typography
      • Header Brand Styling
      aksiome/breeze
      - -
      Edit this page

      © Copyright 2026, Aksiome

      Made with Sphinx and Breeze theme.

      Back to top