Optimized Color palette
This commit is contained in:
parent
b11e37a921
commit
4d955bc204
|
@ -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>
|
2017-10-18 Markus Gans <guru.mail@muenster.de>
|
||||||
* Expand or collapse a tree element with a double-click
|
* Expand or collapse a tree element with a double-click
|
||||||
* FListView::adjustViewport() improved
|
* FListView::adjustViewport() improved
|
||||||
|
|
11
doc/TODO
11
doc/TODO
|
@ -8,17 +8,6 @@ Improvements
|
||||||
|
|
||||||
Missing Features
|
Missing Features
|
||||||
~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~
|
||||||
- list/tree view with Columns
|
|
||||||
- FListView()
|
|
||||||
---------------------------------------
|
|
||||||
/
|
|
||||||
├──► bin
|
|
||||||
├──▼ usr
|
|
||||||
│ ├──► bin
|
|
||||||
│ ├──► lib
|
|
||||||
│ └──► local
|
|
||||||
└──► tmp
|
|
||||||
---------------------------------------
|
|
||||||
|
|
||||||
- The FSlider() widget
|
- The FSlider() widget
|
||||||
. . . . . . . . .
|
. . . . . . . . .
|
||||||
|
|
|
@ -4059,11 +4059,11 @@ void FTerm::init()
|
||||||
setPalette (fc::LightGray, 0xbc, 0xbc, 0xbc);
|
setPalette (fc::LightGray, 0xbc, 0xbc, 0xbc);
|
||||||
setPalette (fc::DarkGray, 0x50, 0x50, 0x50);
|
setPalette (fc::DarkGray, 0x50, 0x50, 0x50);
|
||||||
setPalette (fc::LightBlue, 0x80, 0xa4, 0xec);
|
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::LightCyan, 0x62, 0xbf, 0xf8);
|
||||||
setPalette (fc::LightRed, 0xff, 0x54, 0x54);
|
setPalette (fc::LightRed, 0xee, 0x44, 0x1a);
|
||||||
setPalette (fc::LightMagenta, 0xff, 0x54, 0xff);
|
setPalette (fc::LightMagenta, 0xe9, 0xad, 0xff);
|
||||||
setPalette (fc::Yellow, 0xff, 0xff, 0x54);
|
setPalette (fc::Yellow, 0xfb, 0xe8, 0x67);
|
||||||
setPalette (fc::White, 0xff, 0xff, 0xff);
|
setPalette (fc::White, 0xff, 0xff, 0xff);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue