blob: 93aa640acdc96f408afa9db24d603754b67628e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#pragma once
#include <SFML/Graphics/Color.hpp>
namespace dchat
{
class ColorScheme
{
public:
enum class Type
{
LIGHT,
DARK
};
static Type getType();
static void setType(Type type);
static sf::Color getBackgroundColor();
static sf::Color getPanelColor();
static sf::Color getTextRegularColor();
static sf::Color getContextMenuBackgroundColor();
static sf::Color getContextMenuTextColor();
static sf::Color getContextMenuSelectedItemBackgroundColor();
};
}
|