Storybook 插件配色方案
预览并在给定的配色方案中渲染您的故事
安装
首先,安装软件包。
npm install --save-dev storybook-addon-color-scheme
然后,在 .storybook/main.js
中将其注册为插件。
// .storybook/main.ts
// Replace your-framework with the framework you are using (e.g., react-webpack5, vue3-vite)
import type { StorybookConfig } from '@storybook/your-framework';
const config: StorybookConfig = {
// ...rest of config
addons: [
'@storybook/addon-essentials'
'storybook-addon-color-scheme', // 👈 register the addon here
],
};
export default config;
用法
使用此插件的主要方法是定义 colorScheme
参数。您可以像下面这样在组件级别进行定义,以影响文件中的所有故事,或者可以为单个故事进行定义。
// Button.stories.ts
// Replace your-framework with the name of your framework
import type { Meta } from '@storybook/your-framework';
import { Button } from './Button';
const meta: Meta<typeof Button> = {
component: Button,
parameters: {
colorScheme: "dark",
},
};
export default meta;