rgba

RGBA color from a hexadecimal string (CSS style), e.g. FFFFFF80 for half-transparent white.

  1. Color rgba(I r, I g, I b, I a)
  2. Color rgba()
    rgba
    @safe pure nothrow @nogc
    (
    string c
    )
    (
    )
    if (
    c.length == 8 &&
    c.count!isHexDigit == 8
    )

Meta