diff --git a/draw.go b/draw.go index 17b8719..1a6f902 100644 --- a/draw.go +++ b/draw.go @@ -68,6 +68,8 @@ func drawMonth (xOffset, yOffset, year int, month time.Month) { if current && dayIter == int(time.Now().Day()) { application.SetColor(x, y, stone.ColorRed) application.SetColor(x + 1, y, stone.ColorRed) + application.SetStyle(x , y, stone.StyleHighlight) + application.SetStyle(x + 1, y, stone.StyleHighlight) } else if weekday == 0 || weekday == 6 { application.SetColor(x, y, stone.ColorDim) application.SetColor(x + 1, y, stone.ColorDim)