#pragma once #include namespace dchat { class ColorScheme { public: static sf::Color getBackgroundColor() { return sf::Color(40, 40, 40); } static sf::Color getPanelColor() { return sf::Color(35, 35, 35); } static sf::Color getTextRegularColor() { return sf::Color(240, 240, 240); } }; }