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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@suwa-sh/mui-fui-theme

v0.5.0

Published

Futuristic User Interface (FUI/HUD) theme for MUI - J.A.R.V.I.S. style

Readme

@suwa-sh/mui-fui-theme

Futuristic User Interface (FUI/HUD) theme for MUI - J.A.R.V.I.S. style.

npm version Storybook

hero image dark hero image light

Features

  • Dark and Light mode themes
  • FUI/HUD-style MUI components
  • CSS animations (scan lines, glow effects, etc.)
  • React hooks for text decode and scroll animations

Requirements

  • React 18.0+ or 19.0+
  • MUI (Material UI) 7.0+
  • Emotion 11.0+

Installation

npm install @suwa-sh/mui-fui-theme @mui/material @emotion/react @emotion/styled
# or
pnpm add @suwa-sh/mui-fui-theme @mui/material @emotion/react @emotion/styled

Quick Start

import { ThemeProvider, CssBaseline } from '@mui/material';
import { createFuiTheme } from '@suwa-sh/mui-fui-theme';

const theme = createFuiTheme('dark'); // or 'light'

function App() {
  return (
    <ThemeProvider theme={theme}>
      <CssBaseline />
      <YourApp />
    </ThemeProvider>
  );
}

Components

Atoms

  • NavMenuItem - Navigation menu item
  • ProgressBar - Animated progress bar
  • ColorLegend - Color legend display
  • StatusIndicator - Status indicator with colors
  • SectionHeader - Section header with decorations

Molecules

  • DiamondNode - Diamond-shaped node
  • IconBox - Icon container with FUI styling

Animations

Available CSS keyframe animations:

  • fadeInUp, fadeInLeft, fadeInRight, slideInDiagonal
  • scaleIn, rotateIn
  • pulse, glowPulse
  • float, hologramFlicker
  • scanLine, dataStream, gridPulse

Hooks

  • useTextDecode - Matrix/JARVIS-style text scramble effect
  • useScrollAnimation - Scroll-triggered animations
  • useAwakeningStyle - "Silence to Awakening" hover effect for dashboard cards

Design Tokens

This package includes design tokens in Figma Tokens (Tokens Studio) format as the Single Source of Truth.

Token Files

tokens/
├── core.json      # Typography, spacing, layout (shared)
├── dark.json      # Dark mode colors and effects
└── light.json     # Light mode colors and effects

Direct Import

// Import tokens directly
import coreTokens from '@suwa-sh/mui-fui-theme/tokens/core.json';
import darkTokens from '@suwa-sh/mui-fui-theme/tokens/dark.json';
import lightTokens from '@suwa-sh/mui-fui-theme/tokens/light.json';

// Or via the main export
import { coreTokens, darkTokens, lightTokens } from '@suwa-sh/mui-fui-theme';

Figma Tokens Studio Integration

  1. Install Tokens Studio for Figma
  2. Import tokens/*.json files as Token Sets
  3. Sync design changes back to JSON

Token Format

Tokens follow the Figma Tokens format:

{
  "colors": {
    "primary": { "value": "#FFB300", "type": "color" }
  }
}

Documentation

Pro Version

Need more components? Check out @suwa-sh/mui-fui-theme-pro (coming soon) for:

Atoms: ChartTooltip

Molecules: NavMenuGroup, SidebarLogo, MetricCard, FuiTable, HeatmapLegend, HUDOverlay, VisualPanel, DiagonalDivider, CodeEditor, DecodedTitle, FileUpload, Progress

Organisms: Sidebar, FuiAreaChart, FuiBarChart, FuiRadarChart

License

MIT