2022-05-07 09:27:29 +03:00
|
|
|
import '../styles/variables.css';
|
2022-04-18 08:32:57 +03:00
|
|
|
import '../styles/global.less';
|
2022-04-20 00:33:43 +03:00
|
|
|
import '../styles/theme.less';
|
2022-09-03 21:38:52 +03:00
|
|
|
import './preview.scss';
|
2022-05-07 11:13:26 +03:00
|
|
|
import { themes } from '@storybook/theming';
|
2022-05-18 00:23:52 +03:00
|
|
|
import { DocsContainer } from './storybook-theme';
|
2022-04-18 04:50:39 +03:00
|
|
|
|
|
|
|
export const parameters = {
|
2022-07-21 06:42:23 +03:00
|
|
|
fetchMock: {
|
|
|
|
mocks: [],
|
|
|
|
},
|
2022-04-18 04:50:39 +03:00
|
|
|
actions: { argTypesRegex: '^on[A-Z].*' },
|
2022-05-18 00:23:52 +03:00
|
|
|
docs: {
|
|
|
|
container: DocsContainer,
|
|
|
|
},
|
2023-02-14 06:01:27 +03:00
|
|
|
actions: { argTypesRegex: '^on[A-Z].*' },
|
|
|
|
viewMode: 'docs',
|
2022-04-18 04:50:39 +03:00
|
|
|
controls: {
|
|
|
|
matchers: {
|
|
|
|
color: /(background|color)$/i,
|
|
|
|
date: /Date$/,
|
|
|
|
},
|
2022-05-18 00:23:52 +03:00
|
|
|
viewMode: 'docs',
|
2022-04-18 04:50:39 +03:00
|
|
|
},
|
2022-05-07 11:13:26 +03:00
|
|
|
darkMode: {
|
|
|
|
current: 'dark',
|
|
|
|
// Override the default dark theme
|
|
|
|
dark: {
|
|
|
|
...themes.dark,
|
|
|
|
appBg: '#171523',
|
|
|
|
brandImage: 'https://owncast.online/images/logo.svg',
|
|
|
|
brandTitle: 'Owncast',
|
|
|
|
brandUrl: 'https://owncast.online',
|
2022-05-18 00:23:52 +03:00
|
|
|
appContentBg: '#171523',
|
2022-05-07 11:13:26 +03:00
|
|
|
},
|
|
|
|
// Override the default light theme
|
|
|
|
light: { ...themes.normal },
|
|
|
|
},
|
2022-04-18 04:50:39 +03:00
|
|
|
};
|