Files
yacreader/common/themes/theme_id.h
luisangelsm 05338d8122 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.
2026-02-19 18:06:30 +01:00

11 lines
119 B
C

#ifndef THEME_ID_H
#define THEME_ID_H
enum class ThemeId {
Classic,
Light,
Dark,
};
#endif // THEME_ID_H