rgb

RGB color from a hexadecimal string (CSS style), e.g. FFFFFF for white.

  1. Color rgb(I r, I g, I b)
  2. template rgb(string c)
    template rgb (
    string c
    ) if (
    c.length == 6 &&
    c.count!isHexDigit == 6
    ) {
    enum rgb;
    }

Meta