aboutsummaryrefslogtreecommitdiff
path: root/include/ColorScheme.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/ColorScheme.hpp')
-rw-r--r--include/ColorScheme.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/ColorScheme.hpp b/include/ColorScheme.hpp
new file mode 100644
index 0000000..07010ba
--- /dev/null
+++ b/include/ColorScheme.hpp
@@ -0,0 +1,15 @@
+#pragma once
+
+#include <SFML/Graphics/Color.hpp>
+
+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); }
+ };
+}