From 346f004e516b706feb08f9155f69804e4e1d5a47 Mon Sep 17 00:00:00 2001 From: phkahler <14852918+phkahler@users.noreply.github.com> Date: Sun, 7 Jul 2019 15:56:14 -0400 Subject: [PATCH] Brighter blue and yellow in text window for higher contrast/readability. --- src/textwin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/textwin.cpp b/src/textwin.cpp index 15b10eb..1406a3e 100644 --- a/src/textwin.cpp +++ b/src/textwin.cpp @@ -195,8 +195,8 @@ static Button *buttons[] = { /** Foreground color codes. */ const TextWindow::Color TextWindow::fgColors[] = { { 'd', RGBi(255, 255, 255) }, // Default : white - { 'l', RGBi(100, 100, 255) }, - { 't', RGBi(255, 200, 0) }, + { 'l', RGBi(100, 200, 255) }, // links : blue + { 't', RGBi(255, 200, 100) }, // tree/text : yellow { 'h', RGBi( 90, 90, 90) }, { 's', RGBi( 40, 255, 40) }, // Ok : green { 'm', RGBi(200, 200, 0) },