mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-29 05:11:51 +03:00
29 lines
694 B
TypeScript
29 lines
694 B
TypeScript
import React from 'react';
|
|
import '@blocksuite/editor/themes/affine.css';
|
|
|
|
import { getDarkTheme, getLightTheme, ThemeProvider } from '@affine/component';
|
|
import { useDarkMode } from 'storybook-dark-mode';
|
|
export const parameters = {
|
|
actions: { argTypesRegex: '^on[A-Z].*' },
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/,
|
|
},
|
|
},
|
|
};
|
|
|
|
const lightTheme = getLightTheme('page');
|
|
const darkTheme = getDarkTheme('page');
|
|
|
|
export const decorators = [
|
|
(Story: React.ComponentType) => {
|
|
const isDark = useDarkMode();
|
|
return (
|
|
<ThemeProvider theme={isDark ? darkTheme : lightTheme}>
|
|
<Story />
|
|
</ThemeProvider>
|
|
);
|
|
},
|
|
];
|