update trade kline red color code

This commit is contained in:
c9s 2020-06-16 17:09:14 +08:00
parent 1102fd0a1e
commit ad41c14521

View File

@ -130,7 +130,7 @@ func (k KLine) Color() string {
if k.GetTrend() > 0 {
return "#228B22"
} else if k.GetTrend() < 0 {
return "#800000"
return "#DC143C"
}
return "#f0f0f0"
}