mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
16 lines
345 B
JavaScript
16 lines
345 B
JavaScript
import { themes } from '@storybook/theming';
|
|
import '../src/styles/globals.css';
|
|
|
|
export const parameters = {
|
|
actions: { argTypesRegex: '^on[A-Z].*' },
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/
|
|
}
|
|
},
|
|
darkMode: {
|
|
dark: { ...themes.dark, appContentBg: '#0e1014', appBg: '#0e1014' }
|
|
}
|
|
};
|