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

mat-design-colors

v1.0.3

Published

A Material Design color palette accessor with intuitive API for JavaScript and TypeScript.

Downloads

22

Readme

Mat Design Colors

Mat Design Colors

mat-design-colors is a TypeScript utility library that provides easy access to the Material Design color palette. It allows developers to use Material Design colors with a simple and intuitive API.

npm version

Installation

Install the package via npm:

npm install mat-design-colors

or using yarn:

yarn add mat-design-colors

Usage

Import the MaterialColor object and ColorShade enum from the library:

import { MaterialColor, ColorShade } from 'mat-design-colors';

// Example usage
const red500 = MaterialColor.RED[ColorShade.S500];
console.log(red500); // Outputs: #F44336

const pinkA200 = MaterialColor.PINK[ColorShade.SA200];
console.log(pinkA200); // Outputs: #FF4081

Available Colors

  • RED
  • PINK
  • PURPLE
  • DEEP_PURPLE
  • INDIGO
  • BLUE
  • LIGHT_BLUE
  • CYAN
  • TEAL
  • GREEN
  • LIGHT_GREEN
  • LIME
  • YELLOW
  • AMBER
  • ORANGE
  • DEEP_ORANGE
  • BROWN
  • GREY
  • BLUE_GREY

Available Shades

Each color includes the following shades:

  • S50, S100, S200, S300, S400, S500, S600, S700, S800, S900
  • SA100, SA200, SA400, SA700 (for colors with accent shades)

API

MaterialColor

The MaterialColor object contains all the colors from the Material Design palette. Each color is accessible through a property on this object.

ColorShade

The ColorShade enum provides all the possible shades for a color, including standard and accent shades.

Example

import { MaterialColor, ColorShade } from 'mat-design-colors';

// Accessing a color
const indigo500 = MaterialColor.INDIGO[ColorShade.S500];
console.log(indigo500); // Outputs: #3F51B5

// Accessing an accent color
const redA200 = MaterialColor.RED[ColorShade.SA200];
console.log(redA200); // Outputs: #FF5252

// Fallback to default shade if invalid shade is accessed
const invalidShade = MaterialColor.RED['999' as ColorShade];
console.log(invalidShade); // Outputs: #FFEBEE (S50)

Contributing

Contributions are welcome! Please fork the repository and submit a pull request with your changes.

License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.

Author

Sitharaj Seenivasan