#pragma once #include #include namespace JC { int setColor(const std::vector& colors); int backupToJSON(nlohmann::ordered_json& profiles, const std::string& path); std::deque>> getProfiles(const std::string& path); void changeJCColor(const std::vector& values); nlohmann::ordered_json backupProfile(); void backupJCColor(const std::string& path); } // namespace JC namespace PC { int setColor(const std::vector& colors); int backupToJSON(nlohmann::ordered_json& profiles, const std::string& path); std::deque>> getProfiles(const std::string& path); void changePCColor(const std::vector& values); nlohmann::ordered_json backupProfile(); void backupPCColor(const std::string& path); } // namespace PC namespace ColorSwapper { int hexToBGR(const std::string& hex); std::string BGRToHex(int v); bool isHexaAnd3Bytes(const std::string& str); } // namespace ColorSwapper