Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

is-color

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

is-color

Check if a string is CSS color value

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7K
decreased by-19.49%
Maintainers
1
Weekly downloads
 
Created
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

Package last updated on 17 Jul 2018

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc