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

@argobox/glass-ui

v0.1.0

Published

A premium glassmorphic design system for Astro sites with cosmic effects, animations, and themeable components

Readme

@argobox/glass-ui

A premium glassmorphic design system for Astro with cosmic effects, sci-fi animations, and fully themeable components.

Zero JavaScript. Pure CSS. Drop it into any Astro site.

What You Get

  • 5 glass tiers — light, standard, heavy, solid, premium (with glow effects)
  • 97 design tokens — colors, blur levels, transitions, fonts — all overridable via CSS custom properties
  • Full component set — cards, buttons, inputs, tabs, status indicators, heroes, stats, grids
  • Sci-fi animations — glitch text, HUD scan lines, holographic shimmer, neon flicker, data streams, typing effects
  • Cosmic backgrounds — Starfield and Nebula Astro components with configurable colors
  • Accessibilityprefers-reduced-motion, focus-visible, 44px touch targets, backdrop-filter fallbacks
  • 4 bundled fonts — Inter, Orbitron, Space Grotesk, JetBrains Mono (woff2)

Install

npm install @argobox/glass-ui

Quick Start

---
// src/layouts/Layout.astro
import '@argobox/glass-ui/styles/theme-base.css'
import '@argobox/glass-ui/styles/glass-morphism.css'
import '@argobox/glass-ui/styles/animations.css'
import Starfield from '@argobox/glass-ui/components/effects/Starfield.astro'
---

<html>
  <body>
    <Starfield />
    <div class="glass-hero">
      <h1 class="glass-hero-title">My Dashboard</h1>
      <p class="glass-hero-subtitle">Built with glass-ui</p>
    </div>

    <div class="glass-grid glass-grid-3">
      <div class="glass-card glass-glow">
        <div class="glass-status online">
          <span class="glass-status-dot"></span>
          Online
        </div>
        <h3>Server Alpha</h3>
      </div>
    </div>
  </body>
</html>

Glass Variants

<div class="glass">Standard glass panel</div>
<div class="glass-light">Subtle, lightweight</div>
<div class="glass-heavy">More opacity, stronger blur</div>
<div class="glass-solid">Near-opaque, maximum blur</div>
<div class="glass-premium">Gradient background + accent glow</div>

Animations

<span class="glitch-text" data-text="SYSTEM ONLINE">SYSTEM ONLINE</span>
<div class="hud-scan">Scanning...</div>
<div class="holo-badge">Holographic</div>
<span class="neon-text">Neon Glow</span>
<span class="typing-effect">Hello, world...</span>

Theming

Override any token in your site's CSS:

:root {
  --gui-accent-primary: #10b981;        /* Change accent to green */
  --gui-accent-primary-rgb: 16, 185, 129;
  --gui-bg-void: #0a0a0a;              /* Darker background */
  --gui-glass-blur: 24px;              /* More blur */
  --gui-font-display: 'Rajdhani', sans-serif;  /* Different display font */
}

Components

| Component | Import | |-----------|--------| | Starfield | @argobox/glass-ui/components/effects/Starfield.astro | | Nebula | @argobox/glass-ui/components/effects/Nebula.astro | | GlassCard | @argobox/glass-ui/components/ui/GlassCard.astro | | ScrollProgress | @argobox/glass-ui/components/layout/ScrollProgress.astro | | SEO | @argobox/glass-ui/components/SEO.astro |

CSS-Only Usage (Any Framework)

The styles work without Astro. In React, Vue, Svelte, or plain HTML:

import '@argobox/glass-ui/styles/theme-base.css'
import '@argobox/glass-ui/styles/glass-morphism.css'

Then use the CSS classes directly. The Astro components are a convenience, not a requirement.

License

MIT