From d821631d872d4ec8a1e9505d4e62876a39d6ecb7 Mon Sep 17 00:00:00 2001 From: Markus Gans Date: Tue, 31 Oct 2017 17:27:38 +0100 Subject: [PATCH] Better Code Hub config --- .bettercodehub.yml | 7 +++++++ src/fterm.cpp | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 .bettercodehub.yml diff --git a/.bettercodehub.yml b/.bettercodehub.yml new file mode 100644 index 00000000..d5f3ac2d --- /dev/null +++ b/.bettercodehub.yml @@ -0,0 +1,7 @@ +exclude: +- /ltmain.sh +component_depth: 1 +languages: +- cpp +- script + diff --git a/src/fterm.cpp b/src/fterm.cpp index abbe70cc..5c04d792 100644 --- a/src/fterm.cpp +++ b/src/fterm.cpp @@ -4059,9 +4059,9 @@ void FTerm::init() setPalette (fc::LightGray, 0xbc, 0xbc, 0xbc); setPalette (fc::DarkGray, 0x50, 0x50, 0x50); setPalette (fc::LightBlue, 0x80, 0xa4, 0xec); - setPalette (fc::LightGreen, 0x1e, 0xee, 0x1a); + setPalette (fc::LightGreen, 0x5e, 0xeb, 0x5c); setPalette (fc::LightCyan, 0x62, 0xbf, 0xf8); - setPalette (fc::LightRed, 0xee, 0x44, 0x1a); + setPalette (fc::LightRed, 0xed, 0x57, 0x31); setPalette (fc::LightMagenta, 0xe9, 0xad, 0xff); setPalette (fc::Yellow, 0xfb, 0xe8, 0x67); setPalette (fc::White, 0xff, 0xff, 0xff);