fix typo in background_color example

This commit is contained in:
FoamyGuy 2020-02-14 20:25:01 -06:00
parent 7868b40ae4
commit fb70ae4b70

View file

@ -7,7 +7,7 @@ from adafruit_display_text import label
text = " Color Background Hello world"
text_area = label.Label(terminalio.FONT, text=text, color=0x0000FF, backgroud_color=0xFFAA00)
text_area = label.Label(terminalio.FONT, text=text, color=0x0000FF, background_color=0xFFAA00)
text_area.x = 10
text_area.y = 10
board.DISPLAY.show(text_area)