🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
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
Version published
Weekly downloads
16
433.33%
Maintainers
2
Weekly downloads
 
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

css

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