AnsiRgbColour.this

Construct this colour from the 3 provided ubyte components.

  1. this(ubyte[3] components)
  2. this(ubyte r, ubyte g, ubyte b)
    struct AnsiRgbColour
    @safe @nogc nothrow pure
    this
    (
    ubyte r
    ,
    ubyte g
    ,
    ubyte b
    )

Parameters

r ubyte

The red component.

g ubyte

The green component.

b ubyte

The blue component.

Meta