Improve serial plotter graph colors

Number of colors used by serial plotter increased from 4 to 8.
Improved colors (brighter; easy to tell apart):
blue, red, green, amber, purple, gray, aqua, black.
This commit is contained in:
cousteau 2016-11-30 18:16:48 +01:00 committed by Cristian Maglie
parent 4f29650852
commit 42f996e2ce
1 changed files with 9 additions and 6 deletions

View File

@ -37,16 +37,19 @@ buttons.status.font = SansSerif,plain,12
buttons.status.color = #ffffff buttons.status.color = #ffffff
# GUI - PLOTTING # GUI - PLOTTING
# color cycle created via colorbrewer2.org
plotting.bgcolor = #ffffff plotting.bgcolor = #ffffff
plotting.color = #ffffff plotting.color = #ffffff
plotting.gridcolor = #f0f0f0 plotting.gridcolor = #f0f0f0
plotting.boundscolor = #000000 plotting.boundscolor = #000000
plotting.graphcolor.size = 4 plotting.graphcolor.size = 8
plotting.graphcolor.00 = #2c7bb6 plotting.graphcolor.00 = #0000FF
plotting.graphcolor.01 = #fdae61 plotting.graphcolor.01 = #FF0000
plotting.graphcolor.02 = #d7191c plotting.graphcolor.02 = #009900
plotting.graphcolor.03 = #abd9e9 plotting.graphcolor.03 = #FF9900
plotting.graphcolor.04 = #CC00CC
plotting.graphcolor.05 = #666666
plotting.graphcolor.06 = #00CCFF
plotting.graphcolor.07 = #000000
# GUI - LINESTATUS # GUI - LINESTATUS
linestatus.color = #ffffff linestatus.color = #ffffff