10 lines
181 B
C++
10 lines
181 B
C++
#pragma once
|
|
|
|
namespace terminal {
|
|
|
|
const auto reset = "\x1B[0m";
|
|
const auto cyan = "\x1B[36m";
|
|
const auto red = "\x1B[31m";
|
|
const auto yellow = "\x1B[33m";
|
|
|
|
} // namespace terminal
|