xieite::term::bg_code()

Defined in header <xieite/io/term.hpp>

Returns a std::string which changes the background color of text when printed.


Declaration

#0
[[nodiscard]] static constexpr std::string bg_code(std::uint8_t r, std::uint8_t g, std::uint8_t b) noexcept;

#1
[[nodiscard]] static constexpr std::string bg_code(const xieite::color3& color) noexcept;


Example

int main() {
	std::println("{}Hello, world!", xieite::term::bg_code(0, 0, 255));
}
Possible output:
Hello, world!
[View in Compiler Explorer]