Mordoc

Side Navigation

Style the colors and weight of the side navigation, inside the Sidenav Area box.

1 MIN READ

This page is about appearance: config/styles/sidenav.css. To add, remove, or nest the navigation items themselves, see Side Navigation under Configuration instead.

Side Navigation renders inside the Sidenav Area box from App Layout, which owns the box's placement, width, and background. This file only styles the rows inside it: group labels, links, and the active state.

Open the override file

Text
config/styles/sidenav.css

Tokens

TokenWhat it controls
--sidenav-row-radiusCorner radius shared by every row type: group labels and links.
--sidenav-fgText color of links and linked group labels.
--sidenav-fg-mutedColor of the expand/collapse chevron.
--sidenav-group-label-fgText color of a non-linked group label (a heading that only toggles, like "Getting Started").
--sidenav-hover-bgBackground shown on hover for any row.
--sidenav-active-fgText color of the current page's link.
--sidenav-active-bgBackground of the current page's link.
--sidenav-font-weightFont weight of links and group labels.
--sidenav-active-font-weightFont weight of the current page's link.
Css
:root {
  --sidenav-active-fg: #0f766e;
  --sidenav-active-bg: #ecfdf5;
}
Shape and size are intentionally fixed

Row padding, row height, and font size are not exposed as tokens. Mordoc keeps those fixed so the sidebar reads consistently across every site rather than needing to be independently tuned. Only color and font weight are customizable here.

Example sidenav.css

A config/styles/sidenav.css that sets every token on this page, for both light and dark mode:

Css
:root {
  --sidenav-row-radius: 6px;
  --sidenav-fg: #383838;
  --sidenav-fg-muted: #666666;
  --sidenav-group-label-fg: rgba(56, 56, 56, 0.7);
  --sidenav-hover-bg: #efefef;
  --sidenav-active-fg: #0f766e;
  --sidenav-active-bg: #ecfdf5;
  --sidenav-font-weight: 500;
  --sidenav-active-font-weight: 600;
}

.dark {
  --sidenav-fg: #d4d4d4;
  --sidenav-fg-muted: #9e9e9e;
  --sidenav-group-label-fg: rgba(214, 214, 214, 0.7);
  --sidenav-hover-bg: #1f1f1f;
  --sidenav-active-fg: #2dd4bf;
  --sidenav-active-bg: #0f2e2b;
}

Next step

© 2026 MordocPowered by Mordoc