29 lines
444 B
C++
29 lines
444 B
C++
#ifndef STYLE_H_
|
|
#define STYLE_H_
|
|
|
|
namespace ui { class Colour; }
|
|
|
|
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
|