Install
1. Copy the CSSโ
cp custom.css your-site/src/css/
Or download the file from the repo and drop it into src/css/.
2. Add to configโ
In docusaurus.config.js, under the classic preset:
theme: {
customCss: './src/css/custom.css',
},
3. Dark mode (optional)โ
colorMode: {
defaultMode: 'dark',
respectPrefersColorScheme: true,
},
That's it. Rebuild and you're done.