Optimized Color palette

This commit is contained in:
Markus Gans 2017-10-19 23:20:04 +02:00
parent b11e37a921
commit 4d955bc204
3 changed files with 7 additions and 15 deletions

View File

@ -1,3 +1,6 @@
2017-10-19 Markus Gans <guru.mail@muenster.de>
* Optimized Color palette (less saturated colors)
2017-10-18 Markus Gans <guru.mail@muenster.de>
* Expand or collapse a tree element with a double-click
* FListView::adjustViewport() improved

View File

@ -8,17 +8,6 @@ Improvements
Missing Features
~~~~~~~~~~~~~~~~
- list/tree view with Columns
- FListView()
---------------------------------------
/
├──► bin
├──▼ usr
│ ├──► bin
│ ├──► lib
│ └──► local
└──► tmp
---------------------------------------
- The FSlider() widget
. . . . . . . . .

View File

@ -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);
}