Also mostly banish it from other headers, and shuffle standard header includes to minimize cross-contamination between headers.
26 lines
412 B
C++
26 lines
412 B
C++
#pragma once
|
|
#include "gui/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
|
|
{
|
|
};
|
|
}
|