Socket
Socket
Sign inDemoInstall

gradient.js

Package Overview
Dependencies
0
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gradient.js

Create colorful gradient arrays in a single line of code.


Version published
Weekly downloads
1
decreased by-85.71%
Maintainers
1
Install size
14.4 kB
Created
Weekly downloads
 

Readme

Source

gradient.js

Create colorful gradient arrays in a single line of code.

Installation

Download the Github repo or run:

npm i gradient.js

Usage

const { Gradient } = require("gradient.js");

Gradient.create(
	100,
	"rgb(255, 209, 209)",
	"#FBFFDE",
	"#D7FDDF",
	"#E0FFFD",
	"hsl(240, 96%, 91%)",
	"#F9DEFF"
);

example
(an image created using canvas and data from the above array)

Gradient.create(resolution, ...colors);

Gradient.create() takes in a resolution, which determines how many colors to create in between each provided color. It is always the first argument. It is followed by the colors you want the gradient to move between. An unlimited number of colors, in any (CSS) accepted format can be used. An array of rgba(r, g, b, a); colors are returned.

Gradient.colorKeyMap

Gradient.colorKeyMap is an array of every CSS color name and its corrosponding RGBA value.

black: [0, 0, 0, 1],
silver: [192, 192, 192, 1],

Gradient.convertToRGBA(color)

Gradient.convertToRGBA() takes in any CSS accepted color and turns it into an RGBA array. [r, g, b, a]

Gradient.rgbaStyler(rgba)

Gradient.rgbaStyler() creates a formatted CSS-compatible string from an array. i.e.: [0, 0, 0, 0] becomes "rgba(0, 0, 0, 0)".

Keywords

FAQs

Last updated on 26 Jan 2022

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