We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e68ad89 commit 5e6482cCopy full SHA for 5e6482c
1 file changed
internal_filesystem/apps/com.micropythonos.connect4/assets/connect4.py
@@ -157,7 +157,8 @@ def onResume(self, screen):
157
158
def focus_column(self, column_btn):
159
"""Highlight column when focused"""
160
- column_btn.set_style_border_color(lv.theme_get_color_primary(None), lv.PART.MAIN)
+ # Use white for focus border to contrast with blue board
161
+ column_btn.set_style_border_color(lv.color_hex(0xFFFFFF), lv.PART.MAIN)
162
column_btn.set_style_border_width(3, lv.PART.MAIN)
163
164
def defocus_column(self, column_btn):
0 commit comments