mirror of
https://github.com/YACReader/yacreader
synced 2026-03-01 10:22:58 -05:00
We can add here all the built-in themes, plus a custom one that could be loaded from a file.
11 lines
119 B
C
11 lines
119 B
C
#ifndef THEME_ID_H
|
|
#define THEME_ID_H
|
|
|
|
enum class ThemeId {
|
|
Classic,
|
|
Light,
|
|
Dark,
|
|
};
|
|
|
|
#endif // THEME_ID_H
|