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

angular-material-runtime-theme

v0.0.4

Published

Runtime theming for Angular Material 3 apps using Material Design 3 system tokens and CSS custom properties

Downloads

244

Readme

angular-material-runtime-theme

Runtime theming for Angular Material 3 applications. Generate Material Design 3 system color tokens from a single primary hex color and apply them without rebuilding stylesheets.

Built on Google's Material Color Utilities. Tokens are written as CSS custom properties using the light-dark() function so light and dark appearances stay in sync when you toggle color-scheme.

Requirements

  • Angular 21+
  • Angular Material 21+ with an M3 theme configured via mat.theme() (see Material theming guide)
  • Your app must set color-scheme on html or body (light, dark, or light dark) so light-dark() tokens resolve correctly

Installation

npm install angular-material-runtime-theme
# or
pnpm add angular-material-runtime-theme

Setup

1. Configure Angular Material (build time)

In your global styles (for example styles.scss), include the Material theme mixin. The seed palette here is only a starting point — runtime tokens override the generated CSS variables.

@use "@angular/material" as mat;

html {
  @include mat.theme(
    (
      color: (),
      typography: Roboto,
      density: 0,
    )
  );
}

body {
  color-scheme: light;
  background-color: var(--mat-sys-surface);
  color: var(--mat-sys-on-surface);
  font: var(--mat-sys-body-medium);
  margin: 0;
}

2. Apply a runtime primary color

Inject AngularMaterialRuntimeTheme and call setTheme() with a hex color:

import { Component, inject } from "@angular/core";
import { AngularMaterialRuntimeTheme } from "angular-material-runtime-theme";

@Component({
  selector: "app-root",
  template: `<router-outlet />`,
})
export class App {
  constructor() {
    inject(AngularMaterialRuntimeTheme).setTheme("#6750A4");
  }
}

applyTheme() sets --mat-sys-* variables on the root component host element.

3. Light and dark mode

Toggle color-scheme on a root element (typically document.body). The library stores each token as light-dark(<light>, <dark>), so the correct tone is picked automatically:

document.body.style.colorScheme = isDark ? "dark" : "light";

You can also use color-scheme: light dark in CSS to follow the user's system preference.

How it works

  1. Convert the primary hex to an HCT color.
  2. Build tonal palettes for primary, tertiary (analogous accent), neutral, and neutral variant.
  3. For each token, map light and dark tone values to light-dark(<light>, <dark>) and assign them on the root host via element.style.setProperty('--mat-sys-…', value).

Angular Material components read these variables, so buttons, form fields, dialogs, and other M3 components pick up the new colors immediately.

Demo

From the repository root:

pnpm start

Open http://localhost:4200 for a live showcase with a color picker, preset swatches, dark mode toggle, and many Material components.

License

MIT