From c3b4fc182d4ce2dcbc9e13b33aee250a236a69ed Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Fri, 1 Jun 2018 22:56:38 +0200 Subject: [PATCH] Fix: Background too bright for text Signed-off-by: Knut Ahlers --- service_liberapay.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service_liberapay.go b/service_liberapay.go index 3ba484e..85c1f56 100644 --- a/service_liberapay.go +++ b/service_liberapay.go @@ -56,7 +56,7 @@ func (s liberapayServiceHandler) Handle(ctx context.Context, params []string) (t } title = params[1] - color = "ffee16" + color = "brightgreen" cacheKey := strings.Join([]string{params[0], params[1]}, ":") text, err = cacheStore.Get("liberapay", cacheKey)