#ifndef THEME_H #define THEME_H #include #include #include #include "QtAwesome.h" class Theme { public: static QColor red; static QColor green; static QColor blue; static QColor white; static QColor black; static QColor dark; static QColor altDark; static float normalAlpha; static float checkedAlpha; static float branchAlpha; static float fillAlpha; static float edgeAlpha; static int skeletonNodeBorderSize; static int skeletonEdgeWidth; static QString tabButtonSelectedStylesheet; static QString tabButtonStylesheet; static std::map nextSideColorNameMap; static std::map sideColorNameToColorMap; static QtAwesome *awesome(); static int toolIconFontSize; static int toolIconSize; static int previewImageSize; static int miniIconFontSize; static int miniIconSize; }; #endif