it-tools/src/ui/c-modal/c-modal.theme.ts
2025-07-31 14:25:37 -07:00

12 lines
273 B
TypeScript

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