This repository has been archived on 2025-03-20. You can view files and clone it, but cannot push or open issues or pull requests.
The-Powder-Toy/src/gui/Style.h
Tamás Bálint Misius 360297c338
Mesonification
2020-12-14 20:16:52 +01:00

31 lines
462 B
C++

#ifndef STYLE_H_
#define STYLE_H_
#include "Config.h"
#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
{
};
}
#endif