From 2951d16486c820c82852764b34271018b2816f22 Mon Sep 17 00:00:00 2001 From: makeworld Date: Sat, 20 Feb 2021 15:24:09 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20Help=20text=20color=20matches=20?= =?UTF-8?q?regular=20text?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 5 +++++ display/help.go | 1 + 2 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d1f019..eb8ca21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] +### Fixed +- Help text is now the same color as `regular_text` in the theme config + + ## [1.8.0] - 2021-02-17 ### Added - **Media type handlers** - open non-text files in another application (#121, #134) diff --git a/display/help.go b/display/help.go index 444079f..5938927 100644 --- a/display/help.go +++ b/display/help.go @@ -61,6 +61,7 @@ func Help() { func helpInit() { // Populate help table helpTable.SetBackgroundColor(config.GetColor("bg")) + helpTable.SetTextColor(config.GetColor("regular_text")) helpTable.SetPadding(0, 0, 1, 1) helpTable.SetDoneFunc(func(key tcell.Key) { if key == tcell.KeyEsc || key == tcell.KeyEnter {