Creates a Color24 from the lower 24-bits of the provided int value.
The value should be in the format 0xRRGGBB.
0xRRGGBB
@literal const Color24(int value) : _value = value & 0xFFFFFF;