it-tools/src/ui/c-modal/c-modal.theme.ts
2023-06-19 00:35:50 +02:00

12 lines
265 B
TypeScript

import { defineThemes } from '../theme/theme.models';
import { appThemes } from '../theme/themes';
export const { useTheme } = defineThemes({
dark: {
background: appThemes.dark.background,
},
light: {
background: appThemes.light.background,
},
});