From 05338d8122987b1e97de7c2560d9af7204dd11ad Mon Sep 17 00:00:00 2001 From: luisangelsm Date: Mon, 12 Jan 2026 18:20:49 +0100 Subject: [PATCH] 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. --- common/themes/theme_id.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 common/themes/theme_id.h diff --git a/common/themes/theme_id.h b/common/themes/theme_id.h new file mode 100644 index 00000000..f42c3069 --- /dev/null +++ b/common/themes/theme_id.h @@ -0,0 +1,10 @@ +#ifndef THEME_ID_H +#define THEME_ID_H + +enum class ThemeId { + Classic, + Light, + Dark, +}; + +#endif // THEME_ID_H