aboutsummaryrefslogtreecommitdiff
path: root/include/ColorScheme.hpp
blob: 07010baa7333e15d1b4b492e66e20d45fb09e540 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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); }
    };
}