From 62c969b015a62868adb6dac1c67f21bd844c1242 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petar=20Kapri=C5=A1?= Date: Mon, 15 Jul 2024 19:43:08 +0200 Subject: [PATCH] Add style for "red letter" days in drw/drw.go --- drw/drw.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drw/drw.go b/drw/drw.go index f0536bc..7a3aaea 100644 --- a/drw/drw.go +++ b/drw/drw.go @@ -27,6 +27,10 @@ var ( Background(tcell.ColorReset). Foreground(tcell.GetColor("green")). Bold(true) + HolyStyle tcell.Style = tcell.StyleDefault. + Background(tcell.ColorReset). + Foreground(tcell.GetColor("red")). + Bold(true) ) func centeredText(s string, x, y, width int, scr tcell.Screen, style tcell.Style) {