Skip to content

Commit 148d1b1

Browse files
authored
Merge pull request #2142 from cyrossignol/fix-traffic-legend
gui: Fix debug console traffic graph legend colors
2 parents 008a384 + 2b338e0 commit 148d1b1

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

src/qt/res/stylesheets/dark_stylesheet.qss

+10
Original file line numberDiff line numberDiff line change
@@ -816,3 +816,13 @@ NoResult #titleLabel {
816816
#consolidateSendReadyLabel{
817817
color: rgb(55, 250, 55);
818818
}
819+
820+
/* Debug Console */
821+
822+
RPCConsole #greenLine {
823+
border-top-color: rgb(0, 255, 0);
824+
}
825+
826+
RPCConsole #redLine {
827+
border-top-color: rgb(255, 0, 0);
828+
}

src/qt/res/stylesheets/light_stylesheet.qss

+10
Original file line numberDiff line numberDiff line change
@@ -813,3 +813,13 @@ NoResult #titleLabel {
813813
#consolidateSendReadyLabel{
814814
color: rgb(0, 128, 0);
815815
}
816+
817+
/* Debug Console */
818+
819+
RPCConsole #greenLine {
820+
border-top-color: rgb(0, 255, 0);
821+
}
822+
823+
RPCConsole #redLine {
824+
border-top-color: rgb(255, 0, 0);
825+
}

0 commit comments

Comments
 (0)