diff --git a/src/qt/res/stylesheets/dark_stylesheet.qss b/src/qt/res/stylesheets/dark_stylesheet.qss index f5ad2f31f0..280698cb8e 100644 --- a/src/qt/res/stylesheets/dark_stylesheet.qss +++ b/src/qt/res/stylesheets/dark_stylesheet.qss @@ -816,3 +816,13 @@ NoResult #titleLabel { #consolidateSendReadyLabel{ color: rgb(55, 250, 55); } + +/* Debug Console */ + +RPCConsole #greenLine { + border-top-color: rgb(0, 255, 0); +} + +RPCConsole #redLine { + border-top-color: rgb(255, 0, 0); +} diff --git a/src/qt/res/stylesheets/light_stylesheet.qss b/src/qt/res/stylesheets/light_stylesheet.qss index ed472a26f7..9e802f35b4 100644 --- a/src/qt/res/stylesheets/light_stylesheet.qss +++ b/src/qt/res/stylesheets/light_stylesheet.qss @@ -813,3 +813,13 @@ NoResult #titleLabel { #consolidateSendReadyLabel{ color: rgb(0, 128, 0); } + +/* Debug Console */ + +RPCConsole #greenLine { + border-top-color: rgb(0, 255, 0); +} + +RPCConsole #redLine { + border-top-color: rgb(255, 0, 0); +}