4#ifndef FTXUI_SCREEN_COLOR_HPP
5#define FTXUI_SCREEN_COLOR_HPP
33 Color(uint8_t red, uint8_t green, uint8_t blue, uint8_t alpha = 255);
34 static Color RGB(uint8_t red, uint8_t green, uint8_t blue);
35 static Color HSV(uint8_t hue, uint8_t saturation, uint8_t value);
36 static Color RGBA(uint8_t red, uint8_t green, uint8_t blue, uint8_t alpha);
319 std::string
Print(
bool is_background_color)
const;
323 enum class ColorType : uint8_t {
329 ColorType type_ = ColorType::Palette1;
340Color operator""_rgb(
unsigned long long int combined);
Color()
Construye un color transparente.
static Color HSV(uint8_t hue, uint8_t saturation, uint8_t value)
Construye un Color a partir de su representación HSV. https://en.wikipedia.org/wiki/HSL_and_HSV.
static Color RGBA(uint8_t red, uint8_t green, uint8_t blue, uint8_t alpha)
Construye un Color a partir de su representación RGBA. https://en.wikipedia.org/wiki/RGB_color_model.
static Color Blend(const Color &lhs, const Color &rhs)
Mezcla dos colores usando el canal alfa.
bool operator!=(const Color &rhs) const
bool operator==(const Color &rhs) const
static Color RGB(uint8_t red, uint8_t green, uint8_t blue)
Construye un Color a partir de su representación RGB. https://en.wikipedia.org/wiki/RGB_color_model.
std::string Print(bool is_background_color) const
static Color Interpolate(float t, const Color &a, const Color &b)
static Color HSVA(uint8_t hue, uint8_t saturation, uint8_t value, uint8_t alpha)
Construye un Color a partir de su representación HSV. https://en.wikipedia.org/wiki/HSL_and_HSV.
Color es una clase que representa un color en la interfaz de usuario de la terminal.
El espacio de nombres ftxui:: de FTXUI.
El espacio de nombres ftxui::literals:: de FTXUI.