Skip to content

pantoken / design/swatches/src / hexToRgb

Swyddogaeth: hexToRgb()

hexToRgb(hex): Rgb | undefined

Arbrofol

Dadansoddwch #rgb/#rrggbb/#rrggbbaa yn sianeli 0–255, neu undefined os nad yw'n liw hecsadecimol.

Paramedrau

hex

string

Yn dychwelyd

Rgb | undefined

Enghraifft

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

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