Theme configuration
This configuration applies to all main themes.
#
Common#
Color mode - dark modeThe classic theme provides by default light and dark mode support, with a navbar switch for the user.
It is possible to customize the color mode support with the following configuration:
module.exports = { // ... themeConfig: { // ... colorMode: { // "light" | "dark" defaultMode: 'light',
// Hides the switch in the navbar // Useful if you want to support a single color mode disableSwitch: false,
// Should we use the prefers-color-scheme media-query, // using user system preferences, instead of the hardcoded defaultMode respectPrefersColorScheme: false,
// Dark/light switch icon options switchConfig: { // Icon for the switch while in dark mode darkIcon: 'π',
// CSS to apply to dark icon, // React inline style object // see https://reactjs.org/docs/dom-elements.html#style darkIconStyle: { marginLeft: '2px', },
// Unicode icons such as '\u2600' will work // Unicode with 5 chars require brackets: '\u{1F602}' lightIcon: '\u{1F602}',
lightIconStyle: { marginLeft: '1px', }, }, }, // ... }, // ...};
caution
With respectPrefersColorScheme: true
, the defaultMode
is overridden by user system preferences.
If you only want to support one color mode, you likely want to ignore user system preferences.
#
Meta imageYou can configure a default image that will be used for your meta tag, in particular og:image
and twitter:image
.
module.exports = { // ... themeConfig: { // Relative to your site's "static" directory. // Cannot be SVGs. Can be external URLs too. image: 'img/docusaurus.png', // ... },};
#
MetadatasYou can configure additional html metadatas (and override existing ones).
module.exports = { // ... themeConfig: { metadatas: [{name: 'twitter:card', content: 'summary'}], // ... },};
#
Announcement barSometimes you want to announce something in your website. Just for such a case, you can add an announcement bar. This is a non-fixed and optionally dismissable panel above the navbar.
module.exports = { // ... themeConfig: { announcementBar: { id: 'support_us', // Any value that will identify this message. content: 'We are looking to revamp our docs, please fill <a target="_blank" rel="noopener noreferrer" href="#">this survey</a>', backgroundColor: '#fafbfc', // Defaults to `#fff`. textColor: '#091E42', // Defaults to `#000`. isCloseable: false, // Defaults to `true`. }, // ... },};
#
i18nRead the i18n introduction first.
#
Translation files location- Base path:
website/i18n/<locale>/docusaurus-theme-<themeName>
- Multi-instance path: N/A
- JSON files: extracted with
docusaurus write-translations
- Markdown files: `N/A
#
Example file-system structurewebsite/i18n/<locale>/docusaurus-theme-classicββ # translations for the themeβββ navbar.jsonβββ footer.json
#
HooksuseThemeContext
#
React hook to access theme context. This context contains functions for setting light and dark mode and exposes boolean variable, indicating which mode is currently in use.
Usage example:
import React from 'react';import useThemeContext from '@theme/hooks/useThemeContext';
const Example = () => { const {isDarkTheme, setLightTheme, setDarkTheme} = useThemeContext();
return <h1>Dark mode is now {isDarkTheme ? 'on' : 'off'}</h1>;};
note
The component calling useThemeContext
must be a child of the Layout
component.
function ExamplePage() { return ( <Layout> <Example /> </Layout> );}
#
Navbar#
Navbar title & logoYou can add a logo and title to the navbar via themeConfig.navbar
. Logo can be placed in static folder. Logo URL is set to base URL of your site by default. Although you can specify your own URL for the logo, if it is an external link, it will open in a new tab. In addition, you can override a value for the target attribute of logo link, it can come in handy if you are hosting docs website in a subdirectory of your main website, and in which case you probably do not need a link in the logo to the main website will open in a new tab.
To improve dark mode support, you can also set a different logo for this mode.
module.exports = { // ... themeConfig: { navbar: { title: 'Site Title', logo: { alt: 'Site Logo', src: 'img/logo.svg', srcDark: 'img/logo_dark.svg', // Default to `logo.src`. href: 'https://docusaurus.io/', // Default to `siteConfig.baseUrl`. target: '_self', // By default, this value is calculated based on the `href` attribute (the external link will open in a new tab, all others in the current one). }, }, // ... },};
#
Navbar itemsYou can add items to the navbar via themeConfig.navbar.items
.
By default, Navbar items are regular links (internal or external).
module.exports = { // ... themeConfig: { navbar: { items: [ { // Client-side routing, used for navigating within the website. // The baseUrl will be automatically prepended to this value. to: 'docs/introduction', // A full-page navigation, used for navigating outside of the website. // You should only use either `to` or `href`. href: 'https://www.facebook.com', // Prepends the baseUrl to href values. prependBaseUrlToHref: true, // The string to be shown. label: 'Introduction', // Left or right side of the navbar. position: 'left', // or 'right' // To apply the active class styling on all // routes starting with this path. // This usually isn't necessary activeBasePath: 'docs', // Alternative to activeBasePath if required. activeBaseRegex: 'docs/(next|v8)', // Custom CSS class (for styling any item). className: '', }, // ... other items ], }, // ... },};
React Router should automatically apply active link styling to links, but you can use activeBasePath
in edge cases. For cases in which a link should be active on several different paths (such as when you have multiple doc folders under the same sidebar), you can use activeBaseRegex
. activeBaseRegex
is a more flexible alternative to activeBasePath
and takes precedence over it -- Docusaurus parses it into a regular expression that is tested against the current URL.
Outbound (external) links automatically get target="_blank" rel="noopener noreferrer"
attributes.
#
Navbar dropdownNavbar items can also be dropdown items by specifying the items
, an inner array of navbar items.
module.exports = { // ... themeConfig: { navbar: { items: [ { label: 'Community', position: 'left', // or 'right' items: [ { label: 'Facebook', href: '...', }, { label: 'GitHub', href: '...', }, // ... more items ], }, ], }, // ... },};
#
Navbar doc linkIf you want to link to a specific doc, this special navbar item type will render the link to the doc of the provided docId
. It will get the class navbar__link--active
as long as you browse a doc of the same sidebar.
module.exports = { themeConfig: { navbar: { items: [ { type: 'doc', docId: 'introduction',
//// Optional position: 'left', label: 'Docs', activeSidebarClassName: 'navbar__link--active', docsPluginId: 'default', }, ], }, },};
#
Navbar docs version dropdownIf you use docs with versioning, this special navbar item type that will render a dropdown with all your site's available versions.
The user will be able to switch from one version to another, while staying on the same doc (as long as the doc id is constant across versions).
module.exports = { themeConfig: { navbar: { items: [ { type: 'docsVersionDropdown',
//// Optional position: 'left', // Add additional dropdown items at the beginning/end of the dropdown. dropdownItemsBefore: [], dropdownItemsAfter: [{to: '/versions', label: 'All versions'}], // Do not add the link active class when browsing docs. dropdownActiveClassDisabled: true, docsPluginId: 'default', }, ], }, },};
#
Navbar docs versionIf you use docs with versioning, this special navbar item type will link to the active/browsed version of your doc (depends on the current url), and fallback to the latest version.
module.exports = { themeConfig: { navbar: { items: [ { type: 'docsVersion',
//// Optional position: 'left', to: '/path', // by default, link to active/latest version label: 'label', // by default, show active/latest version label docsPluginId: 'default', }, ], }, },};
#
Navbar locale dropdownIf you use the i18n feature, this special navbar item type will render a dropdown with all your site's available locales.
The user will be able to switch from one locale to another, while staying on the same page.
module.exports = { themeConfig: { navbar: { items: [ { type: 'localeDropdown',
//// Optional position: 'left', // Add additional dropdown items at the beginning/end of the dropdown. dropdownItemsBefore: [], dropdownItemsAfter: [ { to: 'https://my-site.com/help-us-translate', label: 'Help us translate', }, ], }, ], }, },};
#
Navbar searchIf you use the search, the search bar will be the rightmost element in the navbar.
However, with this special navbar item type, you can change the default location.
module.exports = { themeConfig: { navbar: { items: [ { type: 'search', position: 'right', }, ], }, },};
#
Auto-hide sticky navbarYou can enable this cool UI feature that automatically hides the navbar when a user starts scrolling down the page, and show it again when the user scrolls up.
module.exports = { // ... themeConfig: { navbar: { hideOnScroll: true, }, // ... },};
#
Navbar styleYou can set the static Navbar style without disabling the theme switching ability. The selected style will always apply no matter which theme user have selected.
Currently, there are two possible style options: dark
and primary
(based on the --ifm-color-primary
color). You can see the styles preview in the Infima documentation.
module.exports = { // ... themeConfig: { navbar: { style: 'primary', }, // ... },};
#
CodeBlockDocusaurus uses Prism React Renderer to highlight code blocks.
#
ThemeBy default, we use Palenight as syntax highlighting theme. You can specify a custom theme from the list of available themes. If you want to use a different syntax highlighting theme when the site is in dark mode, you may also do so.
module.exports = { // ... themeConfig: { prism: { theme: require('prism-react-renderer/themes/github'), darkTheme: require('prism-react-renderer/themes/dracula'), }, // ... },};
note
If you use the line highlighting Markdown syntax, you might need to specify a different highlight background color for the dark mode syntax highlighting theme. Refer to the docs for guidance.
#
Default languageYou can set a default language for code blocks if no language is added after the opening triple backticks (i.e. ```). Note that a valid language name must be passed, e.g.:
module.exports = { // ... themeConfig: { prism: { defaultLanguage: 'javascript', }, // ... },};
#
FooterYou can add logo and a copyright to the footer via themeConfig.footer
. Logo can be placed in static folder. Logo URL works in the same way of the navbar logo.
// ... footer: { logo: { alt: 'Facebook Open Source Logo', src: 'img/oss_logo.png', href: 'https://opensource.facebook.com', }, copyright: `Copyright Β© ${new Date().getFullYear()} My Project, Inc. Built with Docusaurus.`, }
#
Footer LinksYou can add links to the footer via themeConfig.footer.links
:
module.exports = { // ... footer: { links: [ { // Label of the section of these links title: 'Docs', items: [ { // Label of the link label: 'Style Guide', // Client-side routing, used for navigating within the website. // The baseUrl will be automatically prepended to this value. to: 'docs/', }, { label: 'Second Doc', to: 'docs/doc2/', }, ], }, { title: 'Community', items: [ { label: 'Stack Overflow', // A full-page navigation, used for navigating outside of the website. href: 'https://stackoverflow.com/questions/tagged/docusaurus', }, { label: 'Discord', href: 'https://discordapp.com/invite/docusaurus', }, { label: 'Twitter', href: 'https://twitter.com/docusaurus', }, { //Renders the html pass-through instead of a simple link html: ` <a href="https://www.netlify.com" target="_blank" rel="noreferrer noopener" aria-label="Deploys by Netlify"> <img src="https://www.netlify.com/img/global/badges/netlify-color-accent.svg" alt="Deploys by Netlify" /> </a> `, }, ], }, ], },};