diff --git a/screens/news.py b/screens/news.py index adbbeb7e..cbb29267 100644 --- a/screens/news.py +++ b/screens/news.py @@ -83,7 +83,8 @@ def __render_weather_text(self, text, keyname): color = self.data.config.scoreboard_colors.color("offday.{}".format(keyname)) text_x = center_text_position(text, coords["x"], font["size"]["width"]) - graphics.DrawText(self.canvas, font["font"], text_x, coords["y"], color, text) + color_tuple = (color["r"], color["g"], color["b"]) + graphics.DrawText(self.canvas, font["font"], text_x, coords["y"], color_tuple, text) @property def weather(self):