Colours & Fonts¶
Colour Palette¶
The theme uses CSS custom properties for every colour, defined in
_variables.scss under :root. Dark mode overrides these in
_dark.scss.
Light mode defaults (Manticore branding):
Variable |
Default |
Usage |
|---|---|---|
|
|
Headings, TOC active links, API names, version badge |
|
|
Unvisited links, active borders, landing gradient |
|
|
Page background |
|
|
Body text |
|
|
Visited links, secondary text, captions |
|
|
Table headers, bold text |
|
|
Borders, sidebar dividers |
|
|
Inline code text colour |
Quick change via conf.py (no recompilation):
html_theme_options = {
"color_primary": "#2c3e50", # changes headings, TOC links
"color_accent": "#e74c3c", # changes links, active states
}
Example Palettes¶
Ocean Blue:
"color_primary": "#1a365d",
"color_accent": "#3182ce",
Forest Green:
"color_primary": "#1b4332",
"color_accent": "#2d6a4f",
Slate Mono:
"color_primary": "#1e293b",
"color_accent": "#475569",
Font Stack¶
The theme uses three Roboto variants loaded from Google Fonts:
SASS Variable |
Font |
Usage |
|---|---|---|
|
Roboto (Medium 500) |
Headings h1–h6, sidebar nav, breadcrumbs, TOC, footer, sidebar title |
|
Roboto Slab |
Body paragraph text (slab-serif for editorial feel) |
|
Roboto Mono |
Code blocks, inline code, |
Base font size is 18 px (1.125 rem). All sizes are 2 pt larger than typical defaults for improved readability:
Body: 18 px, Small: 16 px, XSmall: 15 px
h1: 36 px, h2: 30 px, h3: 24 px, h4: 20 px
Changing Fonts¶
Edit
_variables.scss:$family-heading: "Inter", system-ui, sans-serif !default; $family-sans: "Source Serif 4", Georgia, serif !default; $family-mono: "Fira Code", Consolas, monospace !default;
Update the Google Fonts
<link>inlayout.html(theextraheadblock).Recompile:
python build.py css
Link Colours¶
- Unvisited links
Accent colour (
--bst-accent, orange by default).- Visited links
Grey (
--bst-text-light). Hover restores the hover colour.- TOC links (sidebar and on-page)
Primary colour (
--bst-primary, navy). The active indicator border uses the accent colour for contrast.- Headings
Primary colour (
--bst-primary, navy).