storybook/addons/docs/docs/theming.md
2019-10-16 18:24:05 -07:00

2.9 KiB

Storybook Docs Theming

Storybook Docs is themable! There are three different levels of theming, just to keep things interesting:

Storybook theming

Storybook theming is the recommended way to theme your docs. If you update your storybook theme according to the documentation, Storybook Docs should adapt in reasonable ways.

For example, here's how to change your docs (and Storybook) to the dark theme, by modifying .storybook/config.js:

import { addParameters } from '@storybook/react';
import { themes } from '@storybook/theming';

addParameters({
  options: {
    theme: themes.dark,
  },
});

CSS escape hatches

The Storybook theme API is narrow by design. If you want to have fine-grained control over the CSS, all of the Docs components are tagged with class names to make this possible. This is advanced usage: use at your own risk.

The classes correspond to markdown elements (e.g. sbdocs-title, sbdocs-subtitle, sbdocs-p, etc.) to UI elements on the page (e.g. sbdocs-container, sbdocs-content, etc.). To see the currently available classes, use "inspect element" in your browser.

You can style these classes in .storybook/preview-head.html. For example, here's how to make the content wider for UHD displays:

<style>
  .sbdocs.sbdocs-content {
    max-width: 1440px;
  }
</style>

NOTE: All of these elements also have the sbdocs class, which is an idiomatic way of increasing the CSS specificity so you don't have to use !important.

MDX component overrides

If you're using MDX, there's one more level of themability. MDX allows you to completely override the components that are rendered from markdown using a components parameter. This is an advanced usage that we don't officially support in Storybook, but it's a powerful mechanism if you need it.

Here's how you might insert a custom code renderer for code blocks on the page, in .storybook/config.js:

import { addParameters } from '@storybook/react';
import { CodeBlock } from './CodeBlock';

addParameters({
  docs: {
    components: {
      code: CodeBlock,
    },
  },
});

More resources

Want to learn more? Here are some more articles on Storybook Docs: