Skip to content

conversion-library / rgbToHexRgbs

Function: rgbToHexRgbs()

ts
function rgbToHexRgbs(color: string): string

rgbToHexRgbs

version: v0.0.6+

Parameters

color: string

Enter rgb(r, g, b, a?)

Returns

string

Return #rgb / #rrggbb / #rgba / #rrggbbaa

Example

ts
rgbToHexRgbs('rgb(255, 255, 255)')
// #fff
rgbToHexRgbs('rgba(255, 0, 0, 0.33)')
// #ff000054

Defined in

lib/color-conversion/hexAndRgb.ts:281