import type { Preview } from '@storybook/react-vite' import '../src/index.css' const preview: Preview = { parameters: { controls: { matchers: { color: /(background|color)$/i, date: /Date$/i, }, }, backgrounds: { default: 'light', values: [ { name: 'light', value: '#ffffff', }, { name: 'dark', value: '#333333', }, ], }, actions: { argTypesRegex: '^on[A-Z].*' }, }, }; export default preview;