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

@symblight/wc-material

v0.0.16

Published

Material Design 3 web components library built with Lit

Downloads

1,183

Readme

@symblight/wc-material

Material Design 3 web components built with Lit.

Work in progress — this package is not production ready and is actively being developed. APIs may change without notice.

Installation

npm install @symblight/wc-material lit
# or
pnpm add @symblight/wc-material lit

lit is a peer dependency and must be installed alongside this package.

Usage

Import all components

import "@symblight/wc-material";
import "@symblight/wc-material/theme/theme.css";

Import individual components (recommended)

Only load what you need — each component is a separate entry point:

import "@symblight/wc-material/button";
import "@symblight/wc-material/checkbox";
import "@symblight/wc-material/text-field";

Available imports

| Name | Import path | Components | Docs | | ------------------- | ------------------------------------------ | --------------------------------------------------------------------------------- | -------------------------------------------------- | | Avatar | @symblight/wc-material/avatar | <md-avatar> | README | | Badge | @symblight/wc-material/badge | <md-badge> | README | | Button | @symblight/wc-material/button | <md-button> | README | | Card | @symblight/wc-material/card | <md-card> | README | | Checkbox | @symblight/wc-material/checkbox | <md-checkbox> | README | | Chips | @symblight/wc-material/chips | <md-assist-chip>, <md-filter-chip>, <md-input-chip>, <md-suggestion-chip> | README | | Dialog | @symblight/wc-material/dialog | <md-dialog> | README | | FAB | @symblight/wc-material/fab | <md-fab> | README | | Icon | @symblight/wc-material/icon | <md-icon> | README | | Icon Button | @symblight/wc-material/icon-button | <md-icon-button> | README | | List | @symblight/wc-material/list | <md-list>, <md-list-item> | README | | Progress (circular) | @symblight/wc-material/progress-circular | <md-progress-circular> | README | | Progress (linear) | @symblight/wc-material/progress-linear | <md-progress-linear> | README | | Radio Button | @symblight/wc-material/radio-button | <md-radio-button> | README | | Select | @symblight/wc-material/select | <md-select> | README | | Switch | @symblight/wc-material/switch | <md-switch> | README | | Text Field | @symblight/wc-material/text-field | <md-text-field> | README |

Theme

Apply the base MD3 theme stylesheet in your app's entry CSS:

@import "@symblight/wc-material/theme/theme.css";

Dynamic color theming

To generate and apply a custom color palette at runtime, use @symblight/md-colors:

npm install @symblight/md-colors
import { generateTheme } from "@symblight/md-colors/client";

generateTheme({ sourceColor: "#6750A4", scheme: "dark" });

This injects --md-sys-color-* tokens directly onto :root, which the component styles pick up automatically.

import "@symblight/wc-material/button";
import "@symblight/wc-material/text-field";
import "@symblight/wc-material/checkbox";