mirror of
https://github.com/YACReader/yacreader
synced 2026-03-01 10:22:58 -05:00
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:
10
common/themes/theme_id.h
Normal file
10
common/themes/theme_id.h
Normal file
@ -0,0 +1,10 @@
|
||||
#ifndef THEME_ID_H
|
||||
#define THEME_ID_H
|
||||
|
||||
enum class ThemeId {
|
||||
Classic,
|
||||
Light,
|
||||
Dark,
|
||||
};
|
||||
|
||||
#endif // THEME_ID_H
|
||||
Reference in New Issue
Block a user