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 🙏

© 2024 – Pkg Stats / Ryan Hefner

mcu-extra

v0.1.1

Published

Additional packages to add new features and bug fixes to Material Color Utilities.

Downloads

47

Readme

MCU Extra

npm minified size downloads

Additional packages to add new features and bug fixes to Material Color Utilities.

Install

@material/material-color-utilites is the peer dependency for this package.

pnpm add mcu-extra @material/material-color-utilities # pnpm
yarn add mcu-extra @material/material-color-utilities # yarn
npm i mcu-extra @material/material-color-utilities # npm

Usage

Just use it as usual, but import the available utils from mcu-extra.

Theming

import { argbFromHex } from '@material/material-color-utilities'
import { applyTheme, themeFromSourceColor } from 'mcu-extra'

// Get the theme from a hex color
const theme = themeFromSourceColor(argbFromHex('#f82506'), [
  {
    name: "custom-1",
    value: argbFromHex("#ff0000"),
    blend: true,
  },
])

// Print out the theme as JSON
console.log(JSON.stringify(theme, null, 2))

// Check if the user has dark mode turned on
const systemDark = window.matchMedia("(prefers-color-scheme: dark)").matches

// Apply the theme to the body by updating custom properties for material tokens
applyTheme(theme, {target: document.body, dark: systemDark})

Documentation

View the documentation here: https://importantimport.github.io/mcu-extra/

It is automatically generated on update using api-extractor and api-documenter.

Comparison

@material/material-color-utilities

Features

  • themeFromSourceColor & themeFromImage:
    • Migrated to the new DynamicScheme with support for Tone-based Surfaces (surface-container-*) and Add-ons (*-fixed, *-fixed-variant, *-fixed-dim).
    • Selectable variants and contrast level
  • applyTheme: Selectable color formats

Changes

  • applyTheme: Set without suffix variables only when brightnessSuffix is false

Bug fixes

  • applyTheme: Remove unwanted additional paletteKey property from color token with paletteTones (https://github.com/material-foundation/material-color-utilities/pull/93)

@importantimport/material-color-utilities

Since upstream was completely unavailable at the time, I created and maintained @importantimport/material-color-utilities.

But it was always a pain to keep the fork updated with the upstream, so now that importing is no longer an issue I recreated an additional package mcu-extra.

You can get new Tone-based Surfaces, but they are no longer exported as CommonJS.

Contributing

Welcome to contribute! For major improvements, please open an issue for discussion first.