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

color-factory

Package Overview
Dependencies
Maintainers
2
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

color-factory

CSS color converter

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

color-factory

CSS colors transformer

Install

$ npm i color-factory

Usage

import Color from 'color-factory'

const colorFromString = new Color('rgba(12, 34, 56, 0.7)')
colorFromString.toHex()
colorFromString.h(100).s(0.4).b(30).toHSL()
colorFromString.g()

const colorFromObject = new Color({h: 100, s: 0.5, l: 0.3})
colorFromObject.toRGBA()

API

.toHEX()

Convert color instance to CSS hex string.

.toRGB()

Convert color instance to CSS rgb string.

.toRGBA()

Convert color instance to CSS rgba string.

.toHSL()

Convert color instance to CSS hsl string.

.toHSLA()

Convert color instance to CSS hsla string.

.toSTRING()

Convert color instance to CSS color string, such as 'red', 'blue', 'transparent' etc.

.r()

Get the value of red channel.

.r(value)
  • value
    • Type: String
    • Description: Set the value of red channel.
  • Return: this
.g()

Get the value of green channel.

.g(value)
  • value
    • Type: String
    • Description: Set the value of green channel.
  • Return: this
.b()

Get the value of blue channel.

.b(value)
  • value
    • Type: String
    • Description: Set the value of blue channel.
  • Return: this
.h()

Get the value of hue.

.h(value)
  • value
    • Type: String
    • Description: Set the value of hue.
  • Return: this
.s()

Get the value of saturation.

.s(value)
  • value
    • Type: String
    • Description: Set the value of saturation.
  • Return: this
.l()

Get the value of lightness.

.l(value)
  • value
    • Type: String
    • Description: Set the value of lightness.
  • Return: this
.a()

Get the value of alpha channel.

.a(value)
  • value
    • Type: String
    • Description: Set the value of alpha.
  • Return: this

Keywords

FAQs

Package last updated on 08 Apr 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