5#ifndef MOLYBDEN_COLOR_HPP
6#define MOLYBDEN_COLOR_HPP
A numeric model of an RGB color.
Definition color.hpp:23
bool isValid() const
Indicates whether this color is a valid color.
float alpha
The opacity channel value in the {0..1} range.
Definition color.hpp:65
std::string hexRGBA() const
Returns a string representation for this color in the RGBA hex format or an empty string when this co...
float blue
The blue channel value in the {0..1} range.
Definition color.hpp:59
float green
The green channel value in the {0..1} range.
Definition color.hpp:54
std::string hexRGB() const
Returns a string representation for this color in the RGB hex format or an empty string when this col...
float red
The red channel value in the {0..1} range.
Definition color.hpp:49