#ifndef THEME_H #define THEME_H #include #include #include class Theme { public: static QColor red; static QColor green; static QColor blue; static float normalAlpha; static float checkedAlpha; static float branchAlpha; static float fillAlpha; static int skeletonNodeBorderSize; static int skeletonEdgeWidth; static QString tabButtonSelectedStylesheet; static QString tabButtonStylesheet; static std::map nextSideColorNameMap; static std::map sideColorNameToColorMap; }; #endif