mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
ad8648871c
GitOrigin-RevId: 9cc61614ef0a5661549a8842b61bc2ead9537939
15 lines
338 B
TypeScript
15 lines
338 B
TypeScript
import { addons } from '@storybook/manager-api'
|
|
import { create } from '@storybook/theming/create'
|
|
|
|
import './manager.css'
|
|
|
|
import brandImage from '../public/img/ol-brand/overleaf.svg'
|
|
|
|
const theme = create({
|
|
base: 'light',
|
|
brandTitle: 'Overleaf',
|
|
brandUrl: 'https://www.overleaf.com',
|
|
brandImage,
|
|
})
|
|
|
|
addons.setConfig({ theme })
|