Socket
Socket
Sign inDemoInstall

is-color

Package Overview
Dependencies
6
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    is-color

Check if a string is CSS color value


Version published
Weekly downloads
6.5K
decreased by-27.3%
Maintainers
1
Install size
64.9 kB
Created
Weekly downloads
 

Readme

Source

is-color Build Status

Check if a string is CSS color value

Install

$ npm install is-color

Usage

var isColor = require('is-color')

isColor('rgb(255, 0, 0)') // true
isColor('rgb(255)') // false

isColor('rgba(255, 0, 0, .8)') // true
isColor('rgba(255, 0, 0)') // false

isColor('hsl(123, 45%, 67%)') // true
isColor('hsl(123, 45%)') // false

isColor('hsla(123, 45%, 67%, 0.4)') // true
isColor('hsla(123, 45%, 67%)') // false

isColor('#fff') // true
isColor('#ff') // false

isColor('tomato') // true
isColor('hoge') // false

isColor('currentColor') // true
isColor('inherit') // true
isColor('transparent') // true

License

The MIT License (MIT)

Copyright (c) 2015 - 2018 Masaaki Morishita

Keywords

FAQs

Last updated on 17 Jul 2018

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