mirror of
https://github.com/modrinth/code.git
synced 2026-08-27 01:54:47 +00:00
10 lines
202 B
TypeScript
10 lines
202 B
TypeScript
import type { Cosmetics } from '~/plugins/cosmetics.ts'
|
|
|
|
export function useTheme() {
|
|
return useNuxtApp().$theme
|
|
}
|
|
|
|
export function useCosmetics() {
|
|
return useNuxtApp().$cosmetics as Ref<Cosmetics>
|
|
}
|