RingCentral 2026 brand layer plugin for MkDocs Material
Project description
mkdocs-material-ringcentral
A self-contained MkDocs plugin that applies the RingCentral 2026 brand layer to MkDocs Material sites. Install the plugin, add two lines to mkdocs.yml, and your documentation site gets the full RingCentral visual identity — header gradient, sidebar styling, footer, homepage sections, and brand card variants — with no CSS or template files to maintain.
What it does
The plugin injects everything at build time through MkDocs hooks:
- Brand CSS — Inter Tight typography, orange primary colour, sidebar gradient, dark mode, RC Labs footer, and the complete homepage section system
- Brand JS — animated logo ticker, footer behaviour, and GitHub Pages redirect
- Jinja2 template — overrides MkDocs Material's
main.htmlto add the RC Labs announce banner and dynamic footer without requiring acustom_dir - Logo — the RingCentral colour logo is bundled and set automatically
Installation
pip install mkdocs-material-ringcentral
Requires Python ≥ 3.9, MkDocs ≥ 1.5, and MkDocs Material ≥ 9.0.
Usage
Add the plugin to your mkdocs.yml:
theme:
name: material
font:
text: Inter Tight
code: Roboto Mono
palette:
- scheme: default
primary: custom # required — the plugin sets #FF8800 via CSS variables
accent: indigo
plugins:
- material-ringcentral:
- search:
That's it. Run mkdocs serve to preview.
Configuration
The plugin accepts one optional key:
plugins:
- material-ringcentral:
labs_project: app-connect # optional — see footer section below
| Key | Type | Default | Description |
|---|---|---|---|
labs_project |
string |
"" |
Canonical key of the active Labs project. Used to highlight "You are here" in the footer. |
Resolving the active project
The plugin resolves the active project in this order:
labs_projectplugin config — highest priority, explicitextra.labs_project— set alongside other extra vars inmkdocs.ymlsite_urlauto-detection — matches the hostname against known Labs project URLs
If no project is resolved (e.g. local development), the footer renders all projects as links with no "You are here" highlight.
Homepage sections
For full-bleed homepage layouts, wrap all sections in .ac-home and add front matter to hide the sidebar and TOC:
---
hide:
- navigation
- toc
---
<div class="ac-home">
<!-- Hero -->
<div class="ac-v5-hero">
<div class="ac-v5-hero__copy">
<p class="ac-v5-hero__eyebrow">RingCentral Labs</p>
<h1 class="ac-v5-hero__title">Your headline here.</h1>
<p class="ac-v5-hero__sub">Supporting description text.</p>
<div class="ac-v5-hero__cta">
<a href="/getting-started/" class="ac-v5-btn ac-v5-btn--navy">Get started</a>
<a href="/docs/" class="ac-v5-btn ac-v5-btn--glass">Documentation</a>
</div>
</div>
</div>
<!-- Feature cards -->
<div class="ac-v5-features">
<p class="ac-v5-features__title">What's included.</p>
<div class="ac-v5-features__grid">
<div class="ac-v5-fc">
<p class="ac-v5-fc__title">Feature name</p>
<hr class="ac-v5-fc__sep">
<p class="ac-v5-fc__desc">Brief description.</p>
<a href="/feature/" class="ac-v5-fc__link">Learn more →</a>
</div>
</div>
</div>
</div>
See the HTML Recipes for the full set of available sections.
Grid card variants
The plugin extends MkDocs Material's built-in grid cards with three brand variants. Add a class alongside grid cards:
<div class="grid cards rc-bar" markdown>
- :material-shield-lock-outline: **Authentication**
---
OAuth 2.0 flows and SSO integration patterns.
[:octicons-arrow-right-24: Read the guide](auth.md)
</div>
| Class | Style | Best for |
|---|---|---|
| (none) | Muted surface, orange hover ring | Neutral reference navigation |
rc-bar |
Left orange accent bar | Inline grids alongside body text |
rc-navy |
Dark navy surface, orange accents | High-emphasis landing pages |
rc-gradient |
Orange-to-lavender gradient border | Design system and brand documentation |
All variants include auto-numbered decimal counters (01, 02, …) via CSS counter() — no markup required.
RC Labs footer
The footer lists RingCentral Labs projects. The active project is highlighted with a "You are here" badge; all others render as links. The labs_project config key (or auto-detection from site_url) determines which project is active.
Registered project keys:
| Key | Project | URL |
|---|---|---|
app-connect |
App Connect | appconnect.labs.ringcentral.com |
rc-embeddable |
RC Embeddable | github.com/ringcentral/ringcentral-embeddable |
call-me |
Call Me | github.com/ringcentral/call-me |
ringcentral-mcp |
RingCentral MCP | github.com/ringcentral/ringcentral-mcp |
Bundled assets
All assets are copied to <site_dir>/_rc/ at build time:
| File | Purpose |
|---|---|
ringcentral.css |
Full brand stylesheet |
ringcentral.js |
Ticker animation and footer JS |
extra.js |
GitHub Pages → canonical URL redirect |
RingCentral_logo_color.png |
Site logo |
Recommended mkdocs.yml
site_name: Your Site Name
site_url: https://your-site.ringcentral.com
theme:
name: material
font:
text: Inter Tight
code: Roboto Mono
features:
- navigation.path
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- search.highlight
- content.tabs.link
- content.code.copy
palette:
- scheme: default
primary: custom
accent: indigo
- scheme: slate
primary: black
accent: indigo
plugins:
- material-ringcentral:
- search:
separator: '[\s\-\.]+'
markdown_extensions:
- attr_list
- md_in_html
- admonition
- footnotes
- tables
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.snippets
- toc:
permalink: true
Announce banner
The announce banner (the strip above the navigation) is project-aware. App Connect gets the 2.0 beta message; other registered projects get a relevant banner; unregistered sites get no banner.
To add a custom banner, override main.html using custom_dir: overrides and redefine the {% block announce %} block. See the MkDocs Material docs for details.
License
MIT © 2023–2026 RingCentral, Inc.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mkdocs_material_ringcentral-1.0.0.tar.gz.
File metadata
- Download URL: mkdocs_material_ringcentral-1.0.0.tar.gz
- Upload date:
- Size: 67.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0b3564a517b26ed7de1829f24a25287ecd6e8e9f26adf3b975a9728ec06d37a
|
|
| MD5 |
c6f5a1f5bf57e59f4042c5140396bf24
|
|
| BLAKE2b-256 |
942a5763154bb0a33ba31398dd05e0215bea91f5a74c883dbdc8987c662ef9ed
|
File details
Details for the file mkdocs_material_ringcentral-1.0.0-py3-none-any.whl.
File metadata
- Download URL: mkdocs_material_ringcentral-1.0.0-py3-none-any.whl
- Upload date:
- Size: 63.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf194ba81490b8fc9aff8e856b283ebe290ee7b865cb45fd64bdfee742405f5a
|
|
| MD5 |
d7125f4d6cc3b37ab53e496dee3c7ce8
|
|
| BLAKE2b-256 |
b37cc6bed0947f55aad355ebe6667e0c7e9a97c122af9f0fb0e3d93bb4ba3ff8
|