MCPcopy Create free account
hub / github.com/Compaile/ctrack / ColorScheme

Class ColorScheme

include/ctrack.hpp:164–179  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

162 }
163
164 struct ColorScheme
165 {
166 std::string border_color;
167 std::string header_color;
168 std::string top_header_color;
169 std::string row_color;
170
171 ColorScheme(const std::string &border,
172 const std::string &header,
173 const std::string &top_header,
174 const std::string &row)
175 : border_color(border),
176 header_color(header),
177 top_header_color(top_header),
178 row_color(row) {}
179 };
180
181 static inline const ColorScheme default_colors{
182 "\033[38;5;24m", // Darker Blue (Border)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected