summaryrefslogtreecommitdiff
path: root/packages/frontend/src/utility/theme-editor.ts
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2025-03-09 14:32:29 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2025-03-09 14:32:29 +0900
commit2918fb2609cf26401847116dcd57f88bf694643a (patch)
tree1a66dbdb9f35098aeaa7c213ff56ac8acde85e6b /packages/frontend/src/utility/theme-editor.ts
parentMerge branch 'develop' of https://github.com/misskey-dev/misskey into develop (diff)
downloadmisskey-2918fb2609cf26401847116dcd57f88bf694643a.tar.gz
misskey-2918fb2609cf26401847116dcd57f88bf694643a.tar.bz2
misskey-2918fb2609cf26401847116dcd57f88bf694643a.zip
refactor(frontend): relocate theme script
Diffstat (limited to 'packages/frontend/src/utility/theme-editor.ts')
-rw-r--r--packages/frontend/src/utility/theme-editor.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/utility/theme-editor.ts b/packages/frontend/src/utility/theme-editor.ts
index 0206e378bf..ea07e5f2ff 100644
--- a/packages/frontend/src/utility/theme-editor.ts
+++ b/packages/frontend/src/utility/theme-editor.ts
@@ -5,8 +5,8 @@
import { v4 as uuid } from 'uuid';
-import { themeProps } from './theme.js';
-import type { Theme } from './theme.js';
+import type { Theme } from '@/theme.js';
+import { themeProps } from '@/theme.js';
export type Default = null;
export type Color = string;