aboutsummaryrefslogtreecommitdiff
path: root/src/ColorScheme.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ColorScheme.cpp')
-rw-r--r--src/ColorScheme.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/ColorScheme.cpp b/src/ColorScheme.cpp
index 09dde51..4790e80 100644
--- a/src/ColorScheme.cpp
+++ b/src/ColorScheme.cpp
@@ -14,7 +14,10 @@ namespace dchat
colorSchemeType = type;
}
- sf::Color ColorScheme::getBackgroundColor(){ return sf::Color(54,57,62); }
- sf::Color ColorScheme::getPanelColor() { return sf::Color(47,49,54); }
+ sf::Color ColorScheme::getBackgroundColor(){ return sf::Color(54, 57, 62); }
+ sf::Color ColorScheme::getPanelColor() { return sf::Color(47, 49, 54); }
sf::Color ColorScheme::getTextRegularColor() { return sf::Color(255, 255, 255); }
+ sf::Color ColorScheme::getContextMenuBackgroundColor() { return sf::Color(47, 49, 54); }
+ sf::Color ColorScheme::getContextMenuTextColor() { return sf::Color(255, 255, 255); }
+ sf::Color ColorScheme::getContextMenuSelectedItemBackgroundColor() { return sf::Color(37, 39, 44); }
}