From 324fa10918572f7569f4d7281255f7c3641c11f1 Mon Sep 17 00:00:00 2001 From: dio-gh <10439488+dio-gh@users.noreply.github.com> Date: Mon, 8 Mar 2021 23:06:15 +0100 Subject: [PATCH] fix colors for skyline (bright) Fixes debugger colors and the notice-level log message colors, the latter to the gray that is noted in the color palette. --- bin/GuiConfigs/Skyline.qss | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/bin/GuiConfigs/Skyline.qss b/bin/GuiConfigs/Skyline.qss index 669f042ec6..cd2d3e1a96 100644 --- a/bin/GuiConfigs/Skyline.qss +++ b/bin/GuiConfigs/Skyline.qss @@ -648,7 +648,7 @@ QLabel#log_level_warning { } QLabel#log_level_notice { - color: #FFFFFF; + color: #455971; } QLabel#log_level_trace { @@ -669,3 +669,12 @@ QLabel#thumbnail_icon_color { color: #8500ae; } +/* Debugger colors */ +QLabel#debugger_frame_breakpoint { + color: #000; /* Font Color: Black */ + background-color: #ffff00; /* Yellow */ +} +QLabel#debugger_frame_pc { + color: #000; /* Font Color: Black */ + background-color: #00ff00; /* Green */ +}