blob: 75df1b3bf78ee5c802f203c2720cdc0d0db69f70 (
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
28
29
30
31
32
33
34
|
//
// Style.h
// The Powder Toy
//
// Created by Simon Robertshaw on 14/05/2012.
//
#ifndef The_Powder_Toy_Style_h
#define The_Powder_Toy_Style_h
#include "interface/Colour.h"
namespace style
{
class Colour
{
public:
static ui::Colour InformationTitle;
static ui::Colour WarningTitle;
static ui::Colour ErrorTitle;
static ui::Colour ConfirmButton;
static ui::Colour ActiveBorder;
static ui::Colour InactiveBorder;
static ui::Colour ActiveBackground;
static ui::Colour InactiveBackground;
};
class Metrics
{
};
}
#endif
|