Skip to content

pantoken / design/swatches/src / hexToRgb

Funció: hexToRgb()

hexToRgb(hex): Rgb | undefined

Experimental

Analitzar #rgb/#rrggbb/#rrggbbaa a canals 0–255, o undefined si no és un color hexadecimal.

Paràmetres

hex

string

Retorna

Rgb | undefined

Exemple

ts
import { hexToRgb } from "@pantoken/swatches";

hexToRgb("#ff8800"); // { r: 255, g: 136, b: 0 }
hexToRgb("nope"); // undefined