dust3d/src/theme.h

25 lines
562 B
C
Raw Normal View History

#ifndef THEME_H
#define THEME_H
#include <QColor>
2018-03-14 06:43:16 +00:00
#include <QString>
#include <map>
class Theme
{
public:
static QColor red;
static QColor green;
static QColor blue;
static float normalAlpha;
static float checkedAlpha;
static float fillAlpha;
static int skeletonNodeBorderSize;
static int skeletonEdgeWidth;
2018-03-14 06:43:16 +00:00
static QString tabButtonSelectedStylesheet;
static QString tabButtonStylesheet;
static std::map<QString, QString> nextSideColorNameMap;
static std::map<QString, QColor> sideColorNameToColorMap;
};
#endif