random-color-npm
v1.1.1
Published
gives you couple of function for random colors like rgb/rgba/hsl/hsla and hexadecimal enjoy!
Downloads
35
Maintainers
Readme
rainbow-functions
rainbow-functions
is a lightweight package that generates random RGB, RGBA, Hexadecimal, HSL, and HSLA color values. It provides utility functions for creating random colors in different formats for your applications.
Installation
To install the package, use npm:
npm install random-color-npm
Examples
import * as getRandomColors from 'random-color-npm';
// Generating a Random RGB Color:
const randomRGB = getRandomColors.randomRGBColor();
console.log(randomRGB); // Example output: rgb(23, 145, 76)
// Generating a Random RGBA Color:
const randomRGBA = getRandomColors.randomRGBAColor();
console.log(randomRGBA); // Example output: rgba(23, 145, 76, 0.8)
// Generating a Random Hexadecimal Color:
const randomHex = getRandomColors.randomHexColor();
console.log(randomHex); // Example output: #17e576
// Generating a Random HSL Color:
const randomHSL = getRandomColors.randomHSL();
console.log(randomHSL); // Example output: hsl(200%,50%,50%)
// Generating a Random HSLA Color:
const randomHSLA = getRandomColors.randomHSLA();
console.log(randomHSLA); // Example output: hsla(200%,50%,50%,0.7)
// Generating a Random CMYK Color:
const randomCMYK = getRandomColors.randomCMYK();
console.log(randomCMYK); // Example output: cmyk(20%, 50%, 30%, 10%)
// Generating a Random CMYKA Color:
const randomCMYKA = getRandomColors.randomCMYKA();
console.log(randomCMYKA); // Example output: cmyk(20%, 50%, 30%, 10%, 0.7)
Function OverView:
- randomRGBColor(): Generates a random RGB color string in the format rgb(r, g, b).
- randomRGBAColor(): Generates a random RGBA color string in the format rgba(r, g, b, a).
- randomHexColor(): Generates a random Hexadecimal color string in the format #rrggbb.
- randomHSL(): Generates a random HSL color string in the format hsl(h, s%, l%).
- randomHSLA(): Generates a random HSLA color string in the format hsla(h, s%, l%, a).
- randomCMYK(): Generates a random CMYK color string in the format cmyk(c%, m%, y%, k%).
- randomCMYKA(): Generates a random CMYKA color string in the format cmyk(c%, m%, y%, k%, a).
Contributing:
Feel free to submit pull requests for improvements or open issues for any bugs you may encounter.
License:
This project is licensed under the MIT License.
Author:
Yuval Sharabi