| 40 | static constexpr int N_COLORS = sizeof(INSTANCE_COLORS) / sizeof(INSTANCE_COLORS[0]); |
| 41 | |
| 42 | static std::string basename_of(const std::string& path) { |
| 43 | auto pos = path.find_last_of("/\\"); |
| 44 | return (pos == std::string::npos) ? path : path.substr(pos + 1); |
| 45 | } |
| 46 | |
| 47 | static void apply_theme() { |
| 48 | ImGuiStyle& s = ImGui::GetStyle(); |