#ifndef COLORS_HPP #define COLORS_HPP #include #include #include // Global constants extern const ztd::color no_color; extern const ztd::color repo_color; extern const ztd::color aur_color; extern const ztd::color error_color; extern const ztd::color new_version_color; extern const ztd::color old_version_color; extern const ztd::color neutral_version_color; std::pair color_diff(std::string const& str1, std::string const& str2); #endif //COLORS_HPP