mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
Merge pull request #13161 from storybookjs/fix_theming
Documentation: Updates theming documentation
This commit is contained in:
commit
615bc3a438
BIN
docs/configure/storybook-custom-theme.png
Normal file
BIN
docs/configure/storybook-custom-theme.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 90 KiB |
BIN
docs/configure/storybook-starter-custom-theme.png
Normal file
BIN
docs/configure/storybook-starter-custom-theme.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 101 KiB |
@ -64,21 +64,29 @@ Continue to read if you want to learn how to create your theme.
|
|||||||
|
|
||||||
The easiest way to customize Storybook is to generate a new theme using the `create()` function from `storybook/theming`. This function includes shorthands for the most common theme variables. Here's how to use it:
|
The easiest way to customize Storybook is to generate a new theme using the `create()` function from `storybook/theming`. This function includes shorthands for the most common theme variables. Here's how to use it:
|
||||||
|
|
||||||
First create a new file in `.storybook` called `yourTheme.js`.
|
Inside your `.storybook` directory, create a new file called `YourTheme.js` and add the following:
|
||||||
|
|
||||||
Next paste the code below and tweak the variables.
|
|
||||||
|
|
||||||
<!-- prettier-ignore-start -->
|
<!-- prettier-ignore-start -->
|
||||||
|
|
||||||
<CodeSnippets
|
<CodeSnippets
|
||||||
paths={[
|
paths={[
|
||||||
'common/your-theme.js.mdx',
|
'common/storybook-theme-example-variables.ts.mdx',
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<!-- prettier-ignore-end -->
|
<!-- prettier-ignore-end -->
|
||||||
|
|
||||||
Finally, import your theme into [`.storybook/manager.js`](./overview.md#configure-story-rendering) and add it to your Storybook parameters.
|
<div class="aside">
|
||||||
|
If you're using <code>brandImage</code> to add your own custom logo, you can use any of the most common image formats.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
Above we're creating a new theme that will:
|
||||||
|
|
||||||
|
- Use Storybook's `light` theme as a baseline.
|
||||||
|
- Replace Storybook's logo in the sidebar with our own (defined in the brandImage variable).
|
||||||
|
- Add custom branding information.
|
||||||
|
|
||||||
|
Finally we'll need to import the theme into Storybook. Create a new file called `manager.js` in your `.storybook` directory and add the following:
|
||||||
|
|
||||||
<!-- prettier-ignore-start -->
|
<!-- prettier-ignore-start -->
|
||||||
|
|
||||||
@ -90,20 +98,41 @@ Finally, import your theme into [`.storybook/manager.js`](./overview.md#configur
|
|||||||
|
|
||||||
<!-- prettier-ignore-end -->
|
<!-- prettier-ignore-end -->
|
||||||
|
|
||||||
The `@storybook/theming` package is built using TypeScript, so this should help create a valid theme for TypeScript users. The types are part of the package itself.
|
<div class="aside">
|
||||||
|
If the theme is not shown when Storybook starts, update your <code>storybook</code> scripts to include the <code>--no-manager-cache</code> flag.
|
||||||
|
</div>
|
||||||
|
|
||||||
Many theme variables are optional, the `base` property is NOT. This is a perfectly valid theme:
|
Now your custom theme will replace Storybook's default theme and you'll see a similar set of changes in the UI.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
Let's take a look at more complex example. Copy the code below and paste it in `.storybook/YourTheme.js`.
|
||||||
|
|
||||||
<!-- prettier-ignore-start -->
|
<!-- prettier-ignore-start -->
|
||||||
|
|
||||||
<CodeSnippets
|
<CodeSnippets
|
||||||
paths={[
|
paths={[
|
||||||
'common/storybook-theme-example-variables.ts.mdx',
|
'common/your-theme.js.mdx',
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<!-- prettier-ignore-end -->
|
<!-- prettier-ignore-end -->
|
||||||
|
|
||||||
|
Above we're updating the theme with the following changes:
|
||||||
|
|
||||||
|
- A custom color palette (defined in the `app` and `color` variables).
|
||||||
|
- Custom fonts (defined in the `font` and `text` variables).
|
||||||
|
|
||||||
|
With the new changes introduced, the custom theme should yield a similar result.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
<div class="aside">
|
||||||
|
Many theme variables are optional, the <code>base</code> property is <strong>NOT</strong>.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
The `@storybook/theming` package is built using TypeScript, so this should help create a valid theme for TypeScript users. The types are part of the package itself.
|
||||||
|
|
||||||
## CSS escape hatches
|
## 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 UI and Docs components are tagged with class names to make this possible. This is advanced usage: **use at your own risk**.
|
The Storybook theme API is narrow by design. If you want to have fine-grained control over the CSS, all of the UI and Docs components are tagged with class names to make this possible. This is advanced usage: **use at your own risk**.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
```ts
|
```ts
|
||||||
// YourTheme.js
|
// .storybook/YourTheme.js
|
||||||
|
|
||||||
import { create } from '@storybook/theming/create';
|
import { create } from '@storybook/theming/create';
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
```js
|
```js
|
||||||
// YourTheme.js
|
// .storybook/YourTheme.js
|
||||||
|
|
||||||
import { create } from '@storybook/theming/create';
|
import { create } from '@storybook/theming/create';
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user