Skip to content

Commit

Permalink
fix: ugly green
Browse files Browse the repository at this point in the history
  • Loading branch information
ToxicMushroom committed Jan 8, 2024
1 parent 1f2a57a commit 3f14d69
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class WeatherExtension : Extension() {
RenderingHints.VALUE_TEXT_ANTIALIAS_ON
)
graphics.setRenderingHints(rh)
graphics.paint = java.awt.Color.GREEN
graphics.paint = java.awt.Color.GREEN.darker().darker()
graphics.font = graphics.font.deriveFont(14f * scale)
graphics.drawString("${temp ?: "?"}°C", 8 * scale, plotImg.height - 16 * scale)
graphics.dispose()
Expand Down

0 comments on commit 3f14d69

Please sign in to comment.