Themes
Like plugins, themes are designed to add functionality to your Docusaurus site. As a good rule of thumb, themes are mostly focused on client-side, where plugins are more focused on server-side functionalities. Themes are also designed to be replace-able with other themes.
Using themes
To use themes, specify the themes in your docusaurus.config.js
. You may use multiple themes:
Theme components
Most of the time, theme is used to provide a set of React components, e.g. Navbar
, Layout
, Footer
.
Users can use these components in their code by importing them using the @theme
webpack alias:
The alias @theme
can refer to a few directories, in the following priority:
- A user's
website/src/theme
directory, which is a special directory that has the higher precedence. - A Docusaurus theme packages's
theme
directory. - Fallback components provided by Docusaurus core (usually not needed).
Given the following structure
website/src/theme/Navbar.js
takes precedence whenever @theme/Navbar
is imported. This behavior is called component swizzling. In iOS, method swizzling is the process of changing the implementation of an existing selector (method). In the context of a website, component swizzling means providing an alternative component that takes precedence over the component provided by the theme.
Themes are for providing UI components to present the content. Most content plugins need to be paired with a theme in order to be actually useful. The UI is a separate layer from the data schema, so it makes it easy to swap out the themes for other designs (i.e., Bootstrap).
For example, a Docusaurus blog consists of a blog plugin and a blog theme.
And if you want to use Bootstrap styling, you can swap out the theme with theme-blog-bootstrap
(fictitious non-existing theme):
The content plugin remains the same and the only thing you need to change is the theme.
Swizzling theme components
caution
We would like to discourage swizzling of components until we've minimally reached a Beta stage. The components APIs have been changing rapidly and are likely to keep changing until we reach Beta. Stick with the default appearance for now if possible to save yourself some potential pain in future.
Docusaurus Themes' components are designed to be replaceable. To make it easier for you, we created a command for you to replace theme components called swizzle
.
To swizzle a component for a theme, run the following command in your doc site:
As an example, to swizzle the <Footer />
component in @docusaurus/theme-classic
for your site, run:
- npm
- Yarn
This will copy the current <Footer />
component used by the theme to a src/theme/Footer
directory under the root of your site, which is where Docusaurus will look for swizzled components. Docusaurus will then use swizzled component in place of the original one from the theme.
Although we highly discourage swizzling of all components, if you wish to do that, run:
- npm
- Yarn
Note: You need to restart your webpack dev server in order for Docusaurus to know about the new component.
Official themes by Docusaurus
@docusaurus/theme-classic
The classic theme for Docusaurus. You can refer to classic theme configuration for more details on the configuration.
- npm
- Yarn
tip
If you have installed @docusaurus/preset-classic
, you don't need to install it as a dependency.
@docusaurus/theme-search-algolia
This theme provides a @theme/SearchBar
component that integrates with Algolia DocSearch easily. Combined with @docusaurus/theme-classic
, it provides a very easy search integration. You can read more on search documentation.
- npm
- Yarn
This theme also adds search page available at /search
path with OpenSearch support.
tip
If you have installed @docusaurus/preset-classic
, you don't need to install it as a dependency.
@docusaurus/theme-live-codeblock
This theme provides a @theme/CodeBlock
component that is powered by react-live. You can read more on interactive code editor documentation.
- npm
- Yarn
Themes design
While themes share the exact same lifecycle methods with plugins, their implementations can look very different from those of plugins based on themes' designed objectives.
Themes are designed to complete the build of your Docusaurus site and supply the components used by your site, plugins, and the themes themselves. So a typical theme implementation would look like a src/index.js
file that hooks it up to the lifecycle methods. Most likely they would not use loadContent
, which plugins would use. And it is typically accompanied by a src/theme
directory full of components.
To summarize:
- Themes share the same lifecycle methods with Plugins
- Themes are run after all existing Plugins
- Themes exist to add component aliases by extending the webpack config
Writing customized Docusaurus themes
A Docusaurus theme normally includes an index.js
file where you hook up to the lifecycle methods, alongside with a theme/
directory of components. A typical Docusaurus theme
folder looks like this:
There are two lifecycle methods that are essential to theme implementation: