vanillajs-helpers

Collection of convenience code snippets (helpers) that aims to make it a little easier to work with vanilla JS

View the Project on GitHub Tokimon/vanillajs-helpers

vanillajs-helpers > “RGBToHex”

External module: “RGBToHex”

Index

Functions


Functions

RGBToHex

RGBToHex(rgb: number[]): string

RGBToHex(r: number, g: number, b: number, a?: undefinednumber): string

Defined in RGBToHex.ts:20

Converts a Array of R G B (A) colors into a hex color.

RGBToHex([123, 123, 123]) // -> #7b7b7b

// With alpha channel
RGBToHex([123, 123, 123, 0.5]) // -> #7b7b7b80

Parameters:

Param Type Description
rgb number[] The R G B (A) color represented as an array

Returns: string

Defined in RGBToHex.ts:39

Converts R G B (A) color arguments into a hex color.

// RGB as arguments
RGBToHex( 123, 123, 123 ) // -> #7b7b7b80

// With alpha channel
RGBToHex( 123, 123, 123, 0.5 ) // -> #7b7b7b80

Parameters:

Param Type Description
r number Red color
g number Green color
b number Blue color
a undefinednumber Alpha channel

Returns: string