#include "color.hpp" #include std::string get_foreground_esc_seq(const uint32_t &color) noexcept { return std::string( fmt::detail::make_foreground_color(fmt::detail::color_type(color)).begin()); } std::string get_background_esc_seq(const uint32_t &color) noexcept { return std::string( fmt::detail::make_background_color(fmt::detail::color_type(color)).begin()); }