Fixes for colours and margins in GPIO app and more (#284)

- Fixes for colours and margins in GPIO app
- Removed unused imports
This commit is contained in:
Ken Van Hoeylandt
2025-06-01 17:52:09 +02:00
committed by GitHub
parent e4ecec64c9
commit 3dfc27e93e
9 changed files with 47 additions and 28 deletions
+13
View File
@@ -0,0 +1,13 @@
#include "Tactility/lvgl/Color.h"
lv_color_t lv_color_foreground() {
return lv_color_make(0xFF, 0xFF, 0xFF);
}
lv_color_t lv_color_background() {
return lv_color_make(0x28, 0x2B, 0x30);
}
lv_color_t lv_color_background_darkest() {
return lv_color_make(0x00, 0x00, 0x00);
}