Files
FTXUI/src/ftxui/screen/color.cppm

25 lines
473 B
Plaintext
Raw Normal View History

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