diff --git a/ChangeLog b/ChangeLog index 3ded4c96..563d11e3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2017-10-19 Markus Gans + * Optimized Color palette (less saturated colors) + 2017-10-18 Markus Gans * Expand or collapse a tree element with a double-click * FListView::adjustViewport() improved diff --git a/doc/TODO b/doc/TODO index 4a8fc171..575193f0 100644 --- a/doc/TODO +++ b/doc/TODO @@ -8,17 +8,6 @@ Improvements Missing Features ~~~~~~~~~~~~~~~~ -- list/tree view with Columns - - FListView() ---------------------------------------- - / - ├──► bin - ├──▼ usr - │ ├──► bin - │ ├──► lib - │ └──► local - └──► tmp ---------------------------------------- - The FSlider() widget . . . . . . . . . diff --git a/src/fterm.cpp b/src/fterm.cpp index 1a7d0157..abbe70cc 100644 --- a/src/fterm.cpp +++ b/src/fterm.cpp @@ -4059,11 +4059,11 @@ void FTerm::init() setPalette (fc::LightGray, 0xbc, 0xbc, 0xbc); setPalette (fc::DarkGray, 0x50, 0x50, 0x50); setPalette (fc::LightBlue, 0x80, 0xa4, 0xec); - setPalette (fc::LightGreen, 0x54, 0xff, 0x54); + setPalette (fc::LightGreen, 0x1e, 0xee, 0x1a); setPalette (fc::LightCyan, 0x62, 0xbf, 0xf8); - setPalette (fc::LightRed, 0xff, 0x54, 0x54); - setPalette (fc::LightMagenta, 0xff, 0x54, 0xff); - setPalette (fc::Yellow, 0xff, 0xff, 0x54); + setPalette (fc::LightRed, 0xee, 0x44, 0x1a); + setPalette (fc::LightMagenta, 0xe9, 0xad, 0xff); + setPalette (fc::Yellow, 0xfb, 0xe8, 0x67); setPalette (fc::White, 0xff, 0xff, 0xff); }