summaryrefslogtreecommitdiff
path: root/src/ui/include/themes.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/include/themes.hpp')
-rw-r--r--src/ui/include/themes.hpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/ui/include/themes.hpp b/src/ui/include/themes.hpp
new file mode 100644
index 00000000..9af80c0d
--- /dev/null
+++ b/src/ui/include/themes.hpp
@@ -0,0 +1,18 @@
+#pragma once
+
+#include "lvgl.h"
+
+namespace ui {
+namespace themes {
+class Theme {
+ public:
+ Theme();
+ void Apply(void);
+ void Callback(lv_obj_t* obj);
+
+ private:
+ lv_style_t button_style_;
+ lv_theme_t theme_;
+};
+} // namespace themes
+} // namespace ui \ No newline at end of file