We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6dcd885 commit 3f5619dCopy full SHA for 3f5619d
MagTag/MagTag_Literature_Clock/code.py
@@ -130,12 +130,14 @@ def find_lines_to_show(all_lines, important_passage):
130
131
# Setup accent palette for the outlined text
132
accent_palette = displayio.Palette(5)
133
+accent_palette[1] = 0x666666
134
accent_palette[3] = 0x666666
135
accent_palette[4] = 0xFFFFFF
136
+accent_palette.make_transparent(0)
137
138
# Setup BitmapLabel to show the quote
139
quote_lbl = Label(
- terminalio.FONT, text="", color=0x666666, color_palette=accent_palette
140
+ terminalio.FONT, text="", color_palette=accent_palette
141
)
142
quote_lbl.anchor_point = (0, 0)
143
quote_lbl.anchored_position = (2, 2)
0 commit comments