#ifndef COLOR_DEFAULT_HPP #define COLOR_DEFAULT_HPP namespace Slic3r { namespace GUI { class DefaultColor : public ColorScheme { public: const std::string name() const { return "Default"; } const bool SOLID_BACKGROUNDCOLOR() const { return false; }; const wxColour SELECTED_COLOR() const { return wxColour(0, 1, 0); }; const wxColour HOVER_COLOR() const { return wxColour(255*0.4, 255*0.9, 0); }; //