ENES

Blog Sidebar — CSS Custom Properties

Reference all CSS custom properties available in the Custom CSS field of the Blog Sidebar settings (Theme Editor > Theme settings > App embeds > Blog Sidebar).

How to use

Paste any of the variables below into the Custom CSS textarea to override the default values:

--sidebar-bg: #1a1a2e;
--sidebar-text: #e0e0e0;
--sidebar-accent: #e94560;
--sidebar-radius: 16px;
PropertyDefaultDescription
--sidebar-width280pxWidth of the sidebar panel
--sidebar-bg#ffffffBackground color of the sidebar
--sidebar-text#333333Main text color inside the sidebar
--sidebar-border#e2e8f0Border and divider color
--sidebar-accent#0d6efdAccent color for toggle button and tag hover
--sidebar-radius8pxBorder radius of the sidebar and toggle
--sidebar-shadow-2px 0 12px rgba(0,0,0,0.08)Box shadow (right position)
--sidebar-z-index1000Z-index for layering
--sidebar-toggle-size36pxWidth of the toggle button
--sidebar-toggle-bgvar(--sidebar-accent)Toggle button background
--sidebar-toggle-color#ffffffToggle icon/text color
--sidebar-toggle-icon-size28pxSVG icon size
--sidebar-offset0pxDistance from viewport edge
--sidebar-tag-bg#e2e8f0Tag pill background
--sidebar-tag-color#333333Tag pill text color

Examples

Dark theme

:root {
  --sidebar-bg: #1a1a2e;
  --sidebar-text: #eee;
  --sidebar-border: #16213e;
  --sidebar-accent: #e94560;
  --sidebar-tag-bg: #0f3460;
  --sidebar-tag-color: #eee;
}

Rounded + offset

:root {
  --sidebar-radius: 16px;
  --sidebar-offset: 16px;
}

Compact sidebar

:root {
  --sidebar-width: 200px;
  --sidebar-toggle-size: 28px;
  --sidebar-toggle-icon-size: 20px;
}

Catppuccin Mocha

:root {
  --sidebar-bg: #1e1e2e;
  --sidebar-text: #cdd6f4;
  --sidebar-accent: #cba6f7;
  --sidebar-radius: 12px;
  --sidebar-tag-bg: #313244;
  --sidebar-tag-color: #a6adc8;
}
📄 /catppuccin-custom.css

Clean transparent

:root {
  --sidebar-bg: transparent;
  --sidebar-text: #1a1a1a;
  --sidebar-accent: #7c3aed;
  --sidebar-radius: 0;
  --sidebar-shadow: none;
  --sidebar-border: transparent;
}
📄 /clean-custom.css