From 0245267d87dfbff7cdb0f5893007ef9f9e4a14d2 Mon Sep 17 00:00:00 2001 From: makeworld Date: Fri, 3 Dec 2021 12:00:34 -0500 Subject: [PATCH] Change default yellow for preformatted text to orange --- CHANGELOG.md | 1 + config/theme.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7261bd6..5bfcc03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Specifying `default` in the theme config uses the terminal's default background color, including transparency (#244, #245) - Redirects occur automatically if it only adds a trailing slash (#271) - Non-gemini links are underlined by default to help color blind users (#189) +- Default yellow for preformatted text was changed to orange, which is more visible with white terminal backgrounds (#189) ### Changed - Bookmarks are stored using XML in the XBEL format, old bookmarks are transferred (#68) diff --git a/config/theme.go b/config/theme.go index 03e94bc..dd1a9a1 100644 --- a/config/theme.go +++ b/config/theme.go @@ -61,7 +61,7 @@ var theme = map[string]tcell.Color{ "link_number": tcell.ColorSilver, "regular_text": tcell.ColorWhite, "quote_text": tcell.ColorWhite, - "preformatted_text": tcell.Color229, // xterm:Wheat1, #ffffaf + "preformatted_text": tcell.Color172, // xterm:Orange3, #d78700 "list_text": tcell.ColorWhite, }