LeviLamina
Loading...
Searching...
No Matches
ColorFormat.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace ColorFormat {
6// functions
7// NOLINTBEGIN
8MCAPI ::std::string_view const FormatCodeFromName(::std::string const& str);
9// NOLINTEND
10
11// static variables
12// NOLINTBEGIN
13constexpr inline std::string_view AQUA = "§b";
14
15constexpr inline std::string_view BLACK = "§0";
16
17constexpr inline std::string_view BLUE = "§9";
18
19constexpr inline std::string_view BOLD = "§l";
20
21constexpr inline std::string_view DARK_AQUA = "§3";
22
23constexpr inline std::string_view DARK_BLUE = "§1";
24
25constexpr inline std::string_view DARK_GRAY = "§8";
26
27constexpr inline std::string_view DARK_GREEN = "§2";
28
29constexpr inline std::string_view DARK_PURPLE = "§5";
30
31constexpr inline std::string_view DARK_RED = "§4";
32
33constexpr inline std::string_view ESCAPE = "§";
34
35constexpr inline std::string_view GOLD = "§6";
36
37constexpr inline std::string_view GRAY = "§7";
38
39constexpr inline std::string_view GREEN = "§a";
40
41constexpr inline std::string_view ITALIC = "§o";
42
43constexpr inline std::string_view LIGHT_PURPLE = "§d";
44
45constexpr inline std::string_view MATERIAL_AMETHYST = "§u";
46
47constexpr inline std::string_view MATERIAL_COPPER = "§n";
48
49constexpr inline std::string_view MATERIAL_DIAMOND = "§s";
50
51constexpr inline std::string_view MATERIAL_EMERALD = "§q";
52
53constexpr inline std::string_view MATERIAL_GOLD = "§p";
54
55constexpr inline std::string_view MATERIAL_IRON = "§i";
56
57constexpr inline std::string_view MATERIAL_LAPIS = "§t";
58
59constexpr inline std::string_view MATERIAL_NETHERITE = "§j";
60
61constexpr inline std::string_view MATERIAL_QUARTZ = "§h";
62
63constexpr inline std::string_view MATERIAL_REDSTONE = "§m";
64
65constexpr inline std::string_view MINECOIN_GOLD = "§g";
66
67constexpr inline std::string_view OBFUSCATED = "§k";
68
69constexpr inline std::string_view RED = "§c";
70
71constexpr inline std::string_view RESET = "§r";
72
73constexpr inline std::string_view WHITE = "§f";
74
75constexpr inline std::string_view YELLOW = "§e";
76// NOLINTEND
77
78} // namespace ColorFormat