npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@hirameki/vue-theme-provider

v1.0.1

Published

A Vue 3 utility for updating the class attribute on the HTML element based on the current theme (light/dark/custom). This also saves the user's theme preference in localStorage. This does not provide visual themes, since it's up to you to define themes in

Downloads

15

Readme

vue-theme-provider

A Vue 3 utility for updating the class attribute on the HTML element based on the current theme (light/dark/custom). This also saves the user's theme preference in localStorage. This does not provide visual themes, since it's up to you to define themes in your pipeline.

It uses VueUse useColorMode API under the hood, however this was created to leverage the provide/inject api of Vue and act as top-level provider.

Demo/Playground

Installation

# pnpm
pnpm add @hirameki/vue-theme-provider

# npm
npm install @hirameki/vue-theme-provider

Component Example Usage

<template>
  <ThemeProvider
    :modes="{
      dark: 'app-dark',
      coffee: 'coffee-theme',
      tui: 'tui-theme',
    }"
    storage-key="myapp.theme"
  >
    <YourAppComponents />
  </ThemeProvider>
</template>

On the child components, you can use the useThemeProviderInject composable to access the theme provider.

<script setup lang="ts">
const theme = useThemeProviderInject()
theme.onThemeChange((newMode) => {
  console.log(`Theme changed to: ${JSON.stringify(newMode)}`)
})

theme.value = 'dark' // sets to dark mode, adds 'app-dark' class to html element

const isDark = computed(() => theme.isDark.value) // true
const state = computed(() => theme.state.value) // 'dark'
const system = computed(() => theme.system.value) // 'dark'
const store = computed(() => theme.store.value) // 'dark'
const currentModeValue = computed(() => theme.currentModeValue.value) // 'app-dark'
</script>

[!WARNING] Do not use the useThemeProvider() repeatedly on child components to access the state, instead use useThemeProviderInject() to access the state on other components. The useThemeProvider() and the <ThemeProvider> component must be used on the top-level or on your applications entrypoint. If it was used repeatedly this will create another state and will create the default values on the local storage and will not use the main configuration.

Composables Example Usage

import { useThemeProvider } from '@hirameki/vue-theme-provider'

const theme = useThemeProvider({
  modes: {
    dark: 'app-dark',
    coffee: 'coffee-theme',
    tui: 'tui-theme',
  },
  storageKey: 'myapp.theme',
})

theme.onThemeChange((newMode) => {
  console.log(`Theme changed to: ${JSON.stringify(newMode)}`)
})

theme.value = 'dark' // sets to dark mode, adds 'app-dark' class to html element

const isDark = computed(() => theme.isDark.value) // true
const state = computed(() => theme.state.value) // 'dark'
const system = computed(() => theme.system.value) // 'dark'
const store = computed(() => theme.store.value) // 'dark'
const currentModeValue = computed(() => theme.currentModeValue.value) // 'app-dark'

:heart: Support :heart:

GitHub - Become a Sponsor on GitHub. One time support, or a recurring donation

Paypal - One-time donation via PayPal


Development

  • Install dependencies:
pnpm install
  • Run the playground:
pnpm run playground
  • Run the unit tests:
pnpm run test
  • Build the library:
pnpm run build

License

MIT License© Mark Terence Tiglao - 2025