manager.js 325 B

123456789101112131415
  1. import { addons } from '@storybook/addons'
  2. import { create } from '@storybook/theming'
  3. import './global.css'
  4. import brandImage from '../public/img/ol-brand/overleaf.svg'
  5. const theme = create({
  6. base: 'light',
  7. brandTitle: 'Overleaf',
  8. brandUrl: 'https://www.overleaf.com',
  9. brandImage,
  10. })
  11. addons.setConfig({ theme })