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

mdc-placeholders

v0.1.6

Published

Palette color of Material Design as Sass placeholders

Downloads

4

Readme

Material Design Colors | Placeholders

Offer all palette color of Material Design as Sass placeholders. The advantage of use Sass placeholders, is that you will have all the official palette available, but not generating css compiled, only when you use in your Sass code.

Use Sass @extend to extend palette colors, and shaders, to background or text color. Examples:

Code below, extend as background color, the palette blue, and all shaders, to a class called .mdc-background-primary.

.mdc-background-primary {
  @extend %mdc-background-blue;
}

Resulting in css compiled

.mdc-background-primary {
  background: #2196F3;
  color: 
}

.mdc-background-primary.mdc-50 {
  background: #E3F2FD;
}
/* and continue to .mdc-100, .mdc-200, and all shaders color extended.*/

In your html, you just use:

<div class="mdc-background-primary"></div> <!-- get the default shade of primary color setted, in this case, blue color. -->

And to set shades, use:

<div class="mdc-background-primary mdc-700">

Has two placeholders to extend, %mdc-background-, and %mdc-text-color-, where * is the color.

%mdc-background-* define background color and right text color, in contrast.

%mdc-text-color-* define text color

You can too use variables directly in your Sass files, the variables that define colors are Sass maps. The name of variables is $mdc-COLOR, and each key has named of shade, i.e. color red:

$mdc-red: (
  50 : #FFEBEE,
  100: #FFCDD2,
  200: #EF9A9A,
  300: #E57373,
  400: #EF5350,
  500: #F44336,
  600: #E53935,
  700: #D32F2F,
  800: #C62828,
  900: #B71C1C,
  a100: #FF8A80,
  a200: #FF5252,
  a400: #FF1744,
  a700: #D50000
);


// to access in your sass files, use map-get(variable, shade), i.e.
.border-top {
  border: 1px solid background: map-get($mdc-red, 500);
}

See all Material Design palette collor