aboutsummaryrefslogtreecommitdiff
path: root/src/ui/c-modal/c-modal.theme.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/c-modal/c-modal.theme.ts')
-rw-r--r--src/ui/c-modal/c-modal.theme.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/ui/c-modal/c-modal.theme.ts b/src/ui/c-modal/c-modal.theme.ts
new file mode 100644
index 0000000..0681417
--- /dev/null
+++ b/src/ui/c-modal/c-modal.theme.ts
@@ -0,0 +1,11 @@
+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,
+ },
+});