2021-02-17 01:33:55 +03:00
|
|
|
import { create } from '@storybook/theming'
|
|
|
|
|
|
|
|
// this themes the storybook UI
|
|
|
|
const uniswapBaseTheme = {
|
|
|
|
brandTitle: 'Uniswap Design',
|
|
|
|
brandUrl: 'https://uniswap.org',
|
2021-04-16 22:33:26 +03:00
|
|
|
brandImage: 'https://ipfs.io/ipfs/QmNa8mQkrNKp1WEEeGjFezDmDeodkWRevGFN8JCV7b4Xir',
|
2021-02-17 01:33:55 +03:00
|
|
|
}
|
|
|
|
export const light = create({
|
|
|
|
base: 'light',
|
2021-04-16 22:33:26 +03:00
|
|
|
...uniswapBaseTheme,
|
2021-02-17 01:33:55 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
// export const dark = create({
|
|
|
|
// base: 'dark',
|
|
|
|
// ...uniswapBaseTheme,
|
|
|
|
// })
|