aboutsummaryrefslogtreecommitdiff
path: root/src/ui/c-modal/c-modal.theme.ts
diff options
context:
space:
mode:
authorGravatar Corentin THOMASSET <corentin.thomasset74@gmail.com> 2023-06-19 00:21:36 +0200
committerGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2023-06-19 00:35:50 +0200
commitbcb98b359c1a7fa39ee2bd72776dbb0434de150e (patch)
treeb17f8970d34fd7cdb5393a3703fb5dcc8d7b375c /src/ui/c-modal/c-modal.theme.ts
parent732da08157a1bec9e203d40bba06cc67e28f29b4 (diff)
downloadit-tools-bcb98b359c1a7fa39ee2bd72776dbb0434de150e.tar.gz
it-tools-bcb98b359c1a7fa39ee2bd72776dbb0434de150e.tar.zst
it-tools-bcb98b359c1a7fa39ee2bd72776dbb0434de150e.zip
refactor(search): command palette design (#463)
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,
+ },
+});