| | |
| | | <script setup lang="ts"> |
| | | import type { BuiltinThemePreset } from '..\..\..\..\..\..\..\preferences\src'; |
| | | import type { BuiltinThemeType } from '..\..\..\..\..\..\..\types\src'; |
| | | import type { BuiltinThemePreset } from '../../../../../../../preferences/src'; |
| | | import type { BuiltinThemeType } from '../../../../../../../types/src'; |
| | | |
| | | import { computed, ref, watch } from 'vue'; |
| | | |
| | | import { UserRoundPen } from '..\..\..\..\..\..\..\icons\src'; |
| | | import { $t } from '..\..\..\..\..\..\..\locales\src'; |
| | | import { BUILT_IN_THEME_PRESETS } from '..\..\..\..\..\..\..\preferences\src'; |
| | | import { convertToHsl, TinyColor } from '..\..\..\..\..\..\..\utils\src'; |
| | | import { UserRoundPen } from '../../../../../../../icons/src'; |
| | | import { $t } from '../../../../../../../locales/src'; |
| | | import { BUILT_IN_THEME_PRESETS } from '../../../../../../../preferences/src'; |
| | | import { convertToHsl, TinyColor } from '../../../../../../../utils/src'; |
| | | |
| | | import { useThrottleFn } from '@vueuse/core'; |
| | | |