This commit is contained in:
2026-02-16 03:36:04 -08:00
parent 893c50dbc0
commit 9e285e07a2
4 changed files with 171 additions and 49 deletions

View File

@@ -59,8 +59,9 @@ void Dashboard::drawTile(TileID id) {
int tx, ty;
tilePosition(id, tx, ty);
_sprite.fillSprite(t.bgColor);
_sprite.drawRoundRect(0, 0, TILE_W, TILE_H, 8, COL_GRAY);
_sprite.fillSprite(COL_BG); // screen bg in corners
_sprite.fillRoundRect(0, 0, TILE_W, TILE_H, 8, t.bgColor); // rounded tile fill
_sprite.drawRoundRect(0, 0, TILE_W, TILE_H, 8, COL_GRAY); // border
_sprite.setTextColor(t.fgColor, t.bgColor);
_sprite.setTextFont(4);