Skip to content

Commit f2fccdf

Browse files
committed
fix wifi setup colors
1 parent c2a2f3a commit f2fccdf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/CardWifiSetup.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ static void drawWifiList(int numNetworks, int topIndex, int selectedIndex, int x
8383
M5Cardputer.Display.fillRect(0, y0 - 2, screenWidth, listHeight + 4, TFT_BLACK);
8484

8585
// Draw visible rows
86-
M5Cardputer.Display.setTextColor(TFT_LIGHTGRAY, TFT_DARKCYAN);
86+
M5Cardputer.Display.setTextColor(TFT_LIGHTGRAY, TFT_BLACK);
8787
for (int row = 0; row < visibleRows; row++) {
8888
int ssidIndex = topIndex + row;
8989
if (ssidIndex >= numNetworks)
@@ -150,7 +150,7 @@ String selectWifiNetwork(int numNetworks)
150150

151151
// Select network header
152152
M5Cardputer.Display.fillScreen(TFT_BLACK);
153-
M5Cardputer.Display.setTextColor(0x05A3, TFT_DARKCYAN);
153+
M5Cardputer.Display.setTextColor(TFT_DARKCYAN, TFT_BLACK);
154154
M5Cardputer.Display.setTextSize(1.6);
155155
M5Cardputer.Display.drawString("Select Network", 1, 1);
156156
M5Cardputer.Display.setTextColor(TFT_LIGHTGRAY, TFT_BLACK);

0 commit comments

Comments
 (0)