Socket
Socket
Sign inDemoInstall

postcss-colornames-to-hex

Package Overview
Dependencies
3
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    postcss-colornames-to-hex

PostCSS plugin to convert color names to hexadecimal values


Version published
Maintainers
1
Install size
1.50 MB
Created

Readme

Source

postcss-colornames-to-hex

This plugin will convert CSS color names like blue or black to their hexadecimal equivalent.

Installation

npm install postcss-colornames-to-hex --save

Usage

postcss([ require('postcss-colornames-to-hex') ])
// do your processing here 🎉

Or use it in some other PostCSS way.

Example

You put this in....

a {
  color: blue;
}

and you get this out...

a {
  color: #0000FF;
}

Keywords

FAQs

Last updated on 19 Sep 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc