| 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) |
nothing calls this directly
no outgoing calls
no test coverage detected