Skip to main content

Void Logo

mkdocs-void

Glass + NothingOS Design Language for MkDocs

Python MkDocs Version License Made by rkriad585


Overview

Void is a custom MkDocs theme that blends the translucent, layered aesthetics of Glass design system with the minimal, industrial clarity of NothingOS. It combines pure black canvas, glass morphism panels, dot-matrix typography, and Nothing Red accents into a cohesive documentation experience.

Screenshot

Void home screen

More screenshots: View all screenshots


Table of Contents


Key Features

  • Glass Morphism — Translucent glass panels with backdrop-filter blur and configurable intensity (light / medium / heavy)
  • NothingOS Canvas — Pure black (#000000) background with monochrome palette and Nothing Red (#ff3030) accents
  • Dot-Matrix Overlay — Subtle dot pattern texture inspired by NothingOS
  • Dark & Light Modes — Toggle between slate (dark) and default (light) color schemes
  • Typography — Space Grotesk for display/body, Space Mono for code/labels via Google Fonts
  • Responsive Layout — Sidebar navigation, sticky header, and mobile-friendly drawer
  • Table of Contents — Auto-generated TOC with active section tracking
  • Full-Screen Search — Instant search with keyboard shortcut (/) and result highlighting
  • Code Blocks — Syntax highlighting with one-click copy button
  • Admonitions — Styled note, warning, tip, and danger callouts
  • Tabbed Content — Alternating-style tabs for grouped content
  • Task Lists — Interactive checkbox lists
  • Reading Progress Bar — Visual indicator of scroll position
  • Back-to-Top Button — Appears on scroll for quick navigation
  • Page Feedback — "Was this page helpful?" widget that opens a prefilled GitHub issue (no analytics, no tracking)
  • Announcement Bar — Dismissable one-line banner above the header, remembered per site
  • Privacy-First Cookie Consent — Banner appears only when a real integration is configured; a single accept/decline flag, nothing tracked
  • Opt-in Comments (giscus) — Consent-gated comments with palette-synced theme
  • Keyboard Navigation — Shortcuts for search (/), help (?), and close (Esc)
  • Reduced Motion Support — Animations disabled when prefers-reduced-motion is active
  • SCSS Build Pipeline — Sass compilation with PostCSS autoprefixer and cssnano minification

Installation

pip install mkdocs-void

This installs both the Void theme and the companion MkDocs plugin automatically.


Quick Start

  1. Install the package:

    pip install mkdocs-void
    
  2. Create a new MkDocs project:

    mkdocs new my-docs
    cd my-docs
    
  3. Set the theme in mkdocs.yml:

    site_name: My Docs
    theme:
      name: void
    
  4. Start the dev server:

    mkdocs serve
    
  5. Open http://127.0.0.1:8000 in your browser.


Configuration

Minimal

theme:
  name: void

Full

theme:
  name: void
  favicon: assets/images/favicon.svg
  language: en
  palette:
    - scheme: slate
      primary: black
      accent: red
      toggle:
        name: Switch to light mode
    - scheme: default
      primary: white
      accent: red
      toggle:
        name: Switch to dark mode
  font:
    text: Space Grotesk
    code: Space Mono
  features:            # Material-compatible passthrough (always-on, no gating)
    - navigation.sections
    - navigation.top
    - navigation.footer
    - content.code.copy
    - search.suggest
    - search.highlight
  void:
    glass: medium
    dot_matrix: true
    animation: normal
    border: thin

plugins:
  - search
  - void

Theme Options

Option Values Default Description
void.glass "light", "medium", "heavy" "medium" Glass panel blur intensity
void.dot_matrix true, false true Dot-matrix background pattern
void.animation "normal", "none" "normal" Entrance and hover animations
void.border "thin", "thick", "none" "thin" Glass panel border style

Usage Examples

Admonitions

!!! note "Glass Note"
    This is a styled admonition with the Void design.

!!! warning "Accent Warning"
    This uses the Nothing Red accent color.

!!! tip "Pro Tip"
    Glass effects adapt to your color scheme choice.

Code Blocks

```python
def hello():
    print("Hello from Void")
```

Tabs

=== "Python"

    ```python
    pip install mkdocs-void
    ```

=== "Node.js"

    Not applicable — Void is a Python package.

Task Lists

- [x] Install Void
- [x] Configure mkdocs.yml
- [ ] Deploy documentation

Documentation

Page Description
Getting Started Installation and setup guide
Configuration Full theme configuration reference
Design System Overview How the design language works
Colors Color tokens and palette reference
Typography Font system and type scale
Glass Effects Glass morphism implementation details
Buttons Button component variants
Cards Card component with glass effects
Forms Form elements and validation
Void Plugin Plugin configuration and options
Architecture Project structure and internals
Development Contributing and dev workflow
Deployment Build and deployment guide
Troubleshooting Common issues and fixes
Benchmarks CI-regenerated page-weight + Lighthouse receipts
FAQ Frequently asked questions
Screenshots Visual gallery of the theme
About Credits and license

Interface

Void is a MkDocs theme — it provides HTML templates, CSS, and JavaScript that render your Markdown documentation as a styled website.

Header

  • Logo and site name (left)
  • Hamburger menu toggle (mobile)
  • Dark/light mode toggle
  • Search button
  • Repository link

Sidebar

  • Collapsible navigation tree with section grouping
  • Active page highlighting
  • Toggle buttons for expanding/collapsing sections

Content

  • Markdown content with typeset typography
  • Code blocks with syntax highlighting and copy button
  • Admonitions, tabs, tables, task lists
  • Table of contents (right side on wide screens)

Keyboard Shortcuts

Key Action
/ Open search
? Show keyboard shortcuts
Esc Close overlay

Architecture

mkdocs-void/
├── void/                          # Python package
│   ├── __init__.py                  # Version (0.1.2)
│   ├── plugins/
│   │   └── void_plugin.py         # MkDocs plugin (theme defaults)
│   ├── templates/
│   │   ├── base.html                # Root HTML template
│   │   ├── main.html                # Content wrapper
│   │   ├── 404.html                 # Error page
│   │   ├── mkdocs_theme.yml         # Theme registration
│   │   ├── partials/
│   │   │   ├── header.html          # Sticky header
│   │   │   ├── nav.html             # Sidebar navigation
│   │   │   ├── content.html         # Content renderer
│   │   │   ├── toc.html             # Table of contents
│   │   │   ├── footer.html          # Prev/next + copyright
│   │   │   ├── palette.html         # Dark/light toggle
│   │   │   ├── search.html          # Search modal
│   │   │   ├── progress.html        # Reading progress bar
│   │   │   └── javascripts/
│   │   │       └── palette.html     # FOUC prevention script
│   │   └── assets/
│   │       ├── void.css           # Compiled CSS
│   │       ├── stylesheets/
│   │       │   ├── void.scss      # Design tokens + base
│   │       │   └── components.scss  # Component styles
│   │       ├── javascripts/
│   │       │   └── void.js        # Theme JS (vanilla ES6+)
│   │       └── images/
│   │           ├── logo.svg         # Theme logo
│   │           └── favicon.svg      # Browser favicon
│   ├── extensions/                  # Reserved for future use
│   └── utilities/                   # Reserved for future use
├── docs/                            # Documentation source
├── logo/
│   └── logo.svg                     # Project logo (512x512)
├── tools/
│   ├── build.js                     # SCSS build pipeline
│   └── screenshots_gen.py           # Screenshot generator
├── Screenshots/                     # Generated screenshots
├── mkdocs.yml                       # MkDocs configuration
├── pyproject.toml                   # Python package config
├── package.json                     # Node.js dependencies
└── requirements.txt                 # Python dependencies

Data Flow

graph TD
    A[Markdown Files] --> B[MkDocs]
    B --> C[void_plugin.py]
    C --> D[HTML Templates]
    D --> E[base.html]
    E --> F[partials/header.html]
    E --> G[partials/nav.html]
    E --> H[partials/content.html]
    E --> I[partials/toc.html]
    E --> J[partials/footer.html]
    E --> K[partials/search.html]
    E --> L[assets/void.css]
    E --> M[assets/javascripts/void.js]
    N[void.scss] --> O[tools/build.js]
    O --> P[void.css]

CSS Architecture

The stylesheet is organized in layers:

  1. Design Tokens (void.scss :root) — CSS custom properties for colors, spacing, typography, glass, shadows, z-index, animations
  2. Light Mode Overrides ([data-md-color-scheme="default"]) — Token overrides for light theme
  3. Glass Intensity Variants — Light/medium/heavy glass via data-md-void-glass attribute
  4. Base Resets — Box-sizing, font smoothing, reduced motion
  5. Dot Matrix Overlay — Radial gradient pattern
  6. Glass Components.void-glass, .void-card
  7. Typography — Display, labels, body, code
  8. Components (components.scss) — Layout, header, nav, content, TOC, footer, search, tabs, admonitions, code blocks, tables, and more

Requirements

  • Python 3.8 or higher
  • MkDocs 1.5 or higher
  • Node.js 18 or higher (for building CSS)
  • A modern browser with support for backdrop-filter

Prerequisites

  • pip (Python package manager)
  • npm (Node.js package manager)
  • A text editor or IDE

Development

Clone and Install

git clone https://github.com/rkriad585/mkdocs-void.git
cd mkdocs-void
pip install -e .
npm install

Build CSS

npm run build

Watch Mode

npm run start

Dev Mode

npm run dev

Serve Documentation

mkdocs serve

Lint

ruff check void/

Clean

rm -rf site/ dist/ build/ *.egg-info .ruff_cache/
find . -type d -name __pycache__ -exec rm -rf {} +

Or use Make:

make install    # Install dependencies
make build      # Build CSS
make dev        # Dev mode
make serve      # Serve docs
make lint       # Run linter
make clean      # Remove build artifacts
make help       # Show all commands

Community


Acknowledgments

  • MkDocs — the static site generator this theme is built for
  • Space Grotesk and Space Mono — the typefaces used throughout the theme
  • Nothing Technology — for the NothingOS design identity

Developed with ♥ by rkriad585

Make documentation feel app-like — fast, private, distinctive.

GitHub · Docs · Changelog · Discussions

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mkdocs_void-0.2.0.tar.gz (177.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mkdocs_void-0.2.0-py3-none-any.whl (154.7 kB view details)

Uploaded Python 3

File details

Details for the file mkdocs_void-0.2.0.tar.gz.

File metadata

  • Download URL: mkdocs_void-0.2.0.tar.gz
  • Upload date:
  • Size: 177.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mkdocs_void-0.2.0.tar.gz
Algorithm Hash digest
SHA256 d84e5fc79c0ebeea0458c4a5655672662489973db5064341c733cfa45ec91e47
MD5 54c08bfcb83eeae3dbda04f60a31ff96
BLAKE2b-256 b54ee8c60c128cbb99f9671133298d86d0e9ace488b514941a825922d522305f

See more details on using hashes here.

File details

Details for the file mkdocs_void-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: mkdocs_void-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 154.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for mkdocs_void-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a4d73dddac47ad2b4d961906bf0be950d9ad5e339df50627ce07e4caf5452b18
MD5 1878a77bf1d6196520442f63f9e12cc8
BLAKE2b-256 906fc333453e33521b44c84127a6b62c200d11302ad6852fac8b60239669c182

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.2.0 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page