blob: 64dbeecceb047c40313f8818ab25003f35020e58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#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();
};
}
|