SVG
This guide explains how to add optimized, lazy-loaded SVG images to content pages using standard Markdown image syntax.
Thulite SVG is a Thulite integration that provides a shortcode for inlining SVG icons and graphics directly into your HTML, making them easy to style and manipulate with CSS.
Example
Page resource
Rendered HTML
<img
src="/docs/advanced/svg/snailish-spiral.svg"
decoding="async"
fetchpriority="auto"
loading="lazy"
alt="A spiral that looks snail shell-ish"
id="h-rh-i-0"
class="markdown-svg"
>Caveat
An SVG with a grey stroke and a transparent background will have low contrast in dark mode, though it looks fine in light mode — toggle between light and dark mode to see the effect in the example above.
Solution 1: Set an SVG background color
Add to assets/scss/common/_variables-custom.scss:
// Put your custom (S)CSS variables here
:root {
--markdown-svg: #fff; // SVG background color
}Result
Result (visually) — toggle between light and dark mode to see the effect:

Solution 2: Invert SVG colors in dark mode
Add to assets/scss/common/_custom.scss:
@include color-mode(dark) {
.markdown-svg {
filter: invert(100%); // invert colors in dark mode
// filter: invert(1) brightness(0.78); // invert colors and reduce brightness in dark mode
}
}Result
Result (visually) — toggle between light and dark mode to see the effect:

