Added ColorsScheme enum in GlobalConfigs

This commit is contained in:
Valentino Orlandi 2024-02-06 00:41:06 +01:00
parent b07985719b
commit 39cc721639
Signed by: elB4RTO
GPG Key ID: 1719E976DB2D4E71
2 changed files with 15 additions and 1 deletions

View File

@ -8,9 +8,13 @@ namespace GlobalConfigs
{
WindowTheme window_theme = WindowTheme::Native;
IconsTheme icons_theme = IconsTheme::Auto;
IconsTheme icons_theme = IconsTheme::Auto;
ChartsTheme charts_theme = ChartsTheme::Light;
QString icons_set = "";
ColorsScheme colors_scheme = ColorsScheme::Breeze;
} // namespace GlobalConfigs

View File

@ -27,6 +27,14 @@ enum class ChartsTheme : themes_t {
Dark = 1
};
//! Available color schemes for the text browsers
enum class ColorsScheme : themes_t {
None = 0,
Breeze = 1,
Monokai = 2,
Radical = 3
};
//! GlobalConfigs
/*!
@ -43,6 +51,8 @@ extern ChartsTheme charts_theme;
extern QString icons_set;
extern ColorsScheme colors_scheme;
} // namespace GlobalConfigs