From 5dfe3f414d649ad9d7bcef6e71fabe5a8b3b2d40 Mon Sep 17 00:00:00 2001 From: dio-gh <10439488+dio-gh@users.noreply.github.com> Date: Mon, 8 Mar 2021 23:07:01 +0100 Subject: [PATCH] fix colors for skyline (dark) Fixes debugger colors in the dark Skyline stylesheet. --- bin/GuiConfigs/Skyline (Nightfall).qss | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/bin/GuiConfigs/Skyline (Nightfall).qss b/bin/GuiConfigs/Skyline (Nightfall).qss index 7955cd3522..cbe978ce22 100644 --- a/bin/GuiConfigs/Skyline (Nightfall).qss +++ b/bin/GuiConfigs/Skyline (Nightfall).qss @@ -650,3 +650,12 @@ QLabel#thumbnail_icon_color { color: #370048; } +/* 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 */ +}