Files
Blitz/include/blitz/misc/PrettyLog.h
2024-03-08 22:57:38 +01:00

26 lines
567 B
C++

#pragma once
#include "blitz/common/Vector.h"
#include <string>
namespace blitz {
namespace utils {
namespace TextColor {
const static Vec3uc AQUA = {0, 255, 255};
const static Vec3uc BLUE = {0, 0, 255};
const static Vec3uc GREEN = {0, 255, 0};
const static Vec3uc PURPLE = {255, 0, 255};
const static Vec3uc RED = {255, 0, 0};
const static Vec3uc WHITE = {255, 255, 255};
const static Vec3uc YELLOW = {255, 255, 0};
} // namespace TextColor
std::string GetTextColor(Vec3uc color);
std::string GetTextColorReset();
} // namespace utils
} // namespace blitz