1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#include "pch.h"
// clang-format off
namespace NS::Colors
{
Color SCRIPT_UI (100, 255, 255);
Color SCRIPT_CL (100, 255, 100);
Color SCRIPT_SV (255, 100, 255);
Color NATIVE_UI (50 , 150, 150);
Color NATIVE_CL (50 , 150, 50 );
Color NATIVE_SV (150, 50 , 150);
Color NATIVE_ENGINE (252, 133, 153);
Color FILESYSTEM (0 , 150, 150);
Color RPAK (255, 190, 0 );
Color NORTHSTAR (66 , 72 , 128);
Color ECHO (150, 150, 159);
Color TRACE (0 , 255, 255);
Color DEBUG (0 , 255, 255);
Color INFO (16 , 160, 16 );
Color WARN (255, 255, 0 );
Color ERR (255, 50 , 50 );
Color CRIT (255, 0 , 0 );
Color OFF (0 , 0 , 0 );
};
// clang-format on
|