From 1668044183a8e11118b0f308e30db664c6553e8c Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Tue, 26 Nov 2024 18:27:09 +0100 Subject: [PATCH] make time font semibold --- img.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/img.go b/img.go index 327d1a3..e543f0e 100644 --- a/img.go +++ b/img.go @@ -221,7 +221,7 @@ func drawVelov(gc *draw2dimg.GraphicContext, station *transports.Station, yOffse } func drawDate(gc *draw2dimg.GraphicContext, now time.Time) { - text(gc, now.Format("15:04"), 110, leftX, 300, fonts.Bold) + text(gc, now.Format("15:04"), 110, leftX, 300, fonts.SemiBold) text(gc, getDate(now), 30, leftX, 345, fonts.Regular) }