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

javascript-color-gradient

Package Overview
Dependencies
Maintainers
0
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

javascript-color-gradient

javascript-color-gradient is a lightweight JavaScript library, used to generate an array of color gradients by providing start and finish colors, as well as the required number of midpoints.

  • 2.5.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7.8K
increased by3.01%
Maintainers
0
Weekly downloads
 
Created
Source

JavaScript Color Gradient

Lightweight JavaScript library, used to generate an array of color gradients by providing start and finish colors, as well as the required number of midpoints.

MIT License Version Size

Installation

For Node.js: Install the javascript-color-gradient npm module:

npm install javascript-color-gradient

Then import the module into your JavaScript:

import Gradient from "javascript-color-gradient";

Demo

A demo is worth a thousand words.

Note: All the examples are using ES6, be sure is supported in your browser or modify as needed, Chrome recommended.

Methods

MethodDescription
setColorGradient()Initializes {Gradient} with two or more hex color values. Should always be defined.
setMidpoint(n)Defines number of midpoints. Defaults to 10.
getColors()Returns an array of hex color values .
getColor(n)Returns single hex color value corresponding to the provided index.

Usage

Using 2 colors and default (10) midpoints to generate an array of hex color values:

import Gradient from "javascript-color-gradient";

const gradientArray = new Gradient()
  .setColorGradient("#3F2CAF", "#e9446a")
  .getColors();

console.log(gradientArray);

[
  '#3f2caf', '#522fa7',
  '#6531a0', '#783498',
  '#8b3790', '#9d3989',
  '#b03c81', '#c33f79',
  '#d64172', '#e9446a'
]

Using 4 colors and 20 midpoints to generate an array of hex color values :

import Gradient from "javascript-color-gradient";

const gradientArray = new Gradient()
  .setColorGradient("#3F2CAF", "#e9446a", "#edc988", "#607D8B")
  .setMidpoint(20)
  .getColors();

console.log(gradientArray);

[
  '#3f2caf', '#5a30a4',
  '#753499', '#90378e',
  '#aa3b83', '#c53f79',
  '#e9526d', '#ea6772',
  '#eb7c77', '#eb917b',
  '#eca680', '#e6c588',
  '#cfb989', '#b9ad89',
  '#a3a18a', '#8d958a',
  '#76898b', '#607D8B'
]

Using two colors and default (10) midpoints to return single hex color value corresponding to the provided index:

import Gradient from "javascript-color-gradient";

const colorAtIndexTwo = new Gradient()
  .setColorGradient("#3F2CAF", "#e9446a")
  .getColor(2);

console.log(colorAtIndexTwo);

#6531a0

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

javascript-color-gradient is MIT licensed.

Contributors

Special thanks to all the contributors who have contributed for this project.

Keywords

FAQs

Package last updated on 02 Jul 2024

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