1.0.1 • Published 7 years ago
@inki/storybook-addon-theme v1.0.1
Storybook theme addon
Notice
Only support storybook 5.x and newer.
Installation
npm i @inki/storybook-addon-theme --devAdd to .storybook/addons.js
import '@inki/storybook-addon-theme/register';Usage
.storybook/config.js
import { addParameters } from '@storybook/vue';
const themes = [
    {
      label: "Chalk",
      value: 'chalk'
    },
    {
      label: "Dark",
      value: "dark"
    }
];
addParameters({ 
  themes: {
    items: themes,
    // optional: set the initial active theme
    active: themes[0].value,
    // optional: set the icon used in the toolbar
    icon: 'document'
  }
});1.0.1
7 years ago