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