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 4f0c365e05
Preprocessor purge round 19: Split and minimize usage of Config.h
Also mostly banish it from other headers, and shuffle standard header includes to minimize cross-contamination between headers.
2023-01-27 09:27:32 +01:00

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
{
};
}