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

moodmuse-ui

v0.3.0

Published

A vibrant and expressive React component library for building modern user interfaces.

Readme

MoodMuse UI

MoodMuse UI is a vibrant and expressive React component library designed to bring your user interfaces to life. With a focus on customizability and ease of use, MoodMuse UI provides a collection of pre-built components that can be themed to match your application's unique personality.

Features

  • Themable: Easily switch between multiple built-in themes or create your own.
  • Customizable: Components offer a rich set of props for fine-grained control over their appearance and behavior.
  • Built with TypeScript: Enjoy the benefits of static typing for a better development experience.
  • Powered by styled-components: Leverage the full power of CSS-in-JS for dynamic and flexible styling.

Installation

To install MoodMuse UI, run the following command in your project's directory:

npm install moodmuse-ui

Peer Dependencies

MoodMuse UI has react, react-dom, and styled-components as peer dependencies. You'll need to have these installed in your project.

npm install react react-dom styled-components

Usage

To use the components from MoodMuse UI, you need to wrap your application with the ThemeProvider. This provides the theme to all the components in your application.

1. Set up the ThemeProvider

In your main application file (e.g., App.tsx), import the ThemeProvider and a theme of your choice from moodmuse-ui.

import React from 'react';
import { ThemeProvider, themes } from 'moodmuse-ui';
import { YourComponent } from './YourComponent';

function App() {
  return (
    <ThemeProvider theme={themes.neoglow}>
      <YourComponent />
    </ThemeProvider>
  );
}

export default App;

2. Use the Button Component

Now you can use the Button component anywhere in your application.

import React from 'react';
import { Button } from 'moodmuse-ui';

export const YourComponent = () => {
  return (
    <div>
      <Button
        themeStyle="neoglow"
        size="large"
        onClick={() => alert('Button clicked!')}
      >
        Click Me!
      </Button>
    </div>
  );
};

Button Component Props

| Prop | Type | Default | Description | |--------------|------------------------------------|-------------|---------------------------------------------------------| | themeStyle | neoglow, brandfocused, etc. | 'neoglow' | The visual style of the button. | | size | 'small', 'medium', 'large' | 'medium' | The size of the button. | | radius | 'no', 'small', 'medium', 'large', 'pill' | 'medium' | The border radius of the button. | | fontFamily | inter, roboto, etc. | 'inter' | The font family for the button text. | | leftIcon | ReactNode | undefined | An icon to display to the left of the button text. | | rightIcon | ReactNode | undefined | An icon to display to the right of the button text. | | dropShadow | boolean | true | Whether to apply a drop shadow to the button. | | disabled | boolean | false | If true, the button will be disabled. |

Available Themes

MoodMuse UI comes with a set of pre-built themes:

  • neoglow
  • brandfocused
  • softclay
  • gradientglow
  • ghostline
  • moodpop
  • monogrid

You can access them via the themes object exported from moodmuse-ui.

Contributing

Contributions are welcome! Please open an issue or submit a pull request if you have any ideas or improvements.

License

This project is licensed under the MIT License.