import { Paper } from '@mui/material'; import { ThemeMode } from '@centreon/ui-context'; import type { ComponentMeta, ComponentStory } from '@storybook/react'; import StoryBookThemeProvider from '../StoryBookThemeProvider'; import { ColorStory } from '.'; export default { argTypes: {}, component: ColorStory, title: 'Colors' } as ComponentMeta; const TemplateColorStory: ComponentStory = (args) => { const { themeMode } = args; return ( ); }; export const primaryLight = (): JSX.Element => ( ); export const secondaryLight = (): JSX.Element => ( ); export const statusLight = (): JSX.Element => ( ); export const textLight = (): JSX.Element => ( ); export const backgroundLight = (): JSX.Element => ( ); export const actionLight = (): JSX.Element => ( ); export const primaryDark = (): JSX.Element => ( ); export const secondaryDark = (): JSX.Element => ( ); export const statusDark = (): JSX.Element => ( ); export const textDark = (): JSX.Element => ( ); export const backgroundDark = (): JSX.Element => ( ); export const actionDark = (): JSX.Element => ( );