2025-11-12 12:42:37 +00:00
|
|
|
/// @module ftxui.screen:Color
|
2025-06-05 07:16:53 +02:00
|
|
|
/// @brief Module file for the Color class of the Screen module
|
2025-06-04 09:02:20 -04:00
|
|
|
|
|
|
|
|
module;
|
|
|
|
|
|
|
|
|
|
#include <ftxui/screen/color.hpp>
|
|
|
|
|
|
2025-11-12 12:42:37 +00:00
|
|
|
export module ftxui.screen:Color;
|
2025-06-04 09:02:20 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @namespace ftxui
|
|
|
|
|
* @brief The FTXUI ftxui:: namespace
|
|
|
|
|
*/
|
|
|
|
|
export namespace ftxui {
|
|
|
|
|
using ftxui::Color;
|
|
|
|
|
|
2025-11-12 12:42:37 +00:00
|
|
|
/**
|
|
|
|
|
* @namespace literals
|
|
|
|
|
* @brief The FTXUI ftxui::literals:: namespace
|
|
|
|
|
*/
|
2025-06-04 09:02:20 -04:00
|
|
|
inline namespace literals {
|
|
|
|
|
using ftxui::literals::operator""_rgb;
|
|
|
|
|
}
|
|
|
|
|
}
|