Fixed a small bug in ostd::ConsoleColors

This commit is contained in:
Sylar 2026-01-05 22:54:08 +01:00
parent 2416d2bc15
commit 1c7e2a974b

View file

@ -30,7 +30,7 @@ namespace ostd
inline static const tConsoleColor BrightRed { "brightred", { 255, 70, 70, 255 }, false};
inline static const tConsoleColor Green { "green", { 0, 255, 0, 255 }, false};
inline static const tConsoleColor BrightGreen { "brightgreen", { 70, 255, 70, 255 }, false};
inline static const tConsoleColor Blue { "blue", { 0, 255, 0, 255 }, false};
inline static const tConsoleColor Blue { "blue", { 0, 0, 255, 255 }, false};
inline static const tConsoleColor BrightBlue { "brightblue", { 70, 70, 255, 255 }, false};
inline static const tConsoleColor Magenta { "magenta", { 255, 0, 255, 255 }, false};
inline static const tConsoleColor BrightMagenta { "brightmagenta", { 255, 120, 255, 255 }, false};