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
2013-03-22 14:14:17 +00:00

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