Add an enum to identify themes

We can add here all the built-in themes, plus a custom one that could be loaded from a file.
This commit is contained in:
luisangelsm
2026-01-12 18:20:49 +01:00
parent ecee7d0aa4
commit 05338d8122

10
common/themes/theme_id.h Normal file
View File

@ -0,0 +1,10 @@
#ifndef THEME_ID_H
#define THEME_ID_H
enum class ThemeId {
Classic,
Light,
Dark,
};
#endif // THEME_ID_H