Ticket #1525 (closed enhancement: duplicate)
Human-readable colors definition format in ini file
Reported by: | sergey-feo | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | mc-core | Version: | |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Branch state: | Votes for changeset: |
Description
Currently all colors must be defined in a single line like this:
base_color=green,magenta:normal=lightgray,gray:selected=black,lightgray:marked=yellow,gray...
It is far longer that 80 symbols.
All that > 80 symbols is not very good stile :-)
Too long line is very unhandy for viewing and editing.
I suggest to change colors definition format and define colors in several short lines.
I think this is much more readable than long single line:
base_color=green,magenta
normal=lightgray,gray
selected=black,lightgray
marked=yellow,gray
...
By the way, RGB colors definition can be added. For example:
base_color=127:127:0,magenta
, where 127:127:0 means red=127/255, green=127/255, blue=0/255.
#380