mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
7 lines
195 B
JavaScript
7 lines
195 B
JavaScript
import { create } from '@storybook/theming/create';
|
|
import { addons } from '@storybook/addons';
|
|
|
|
addons.setConfig({
|
|
theme: create({ colorPrimary: 'hotpink', colorSecondary: 'orangered' }),
|
|
});
|