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.
This commit is contained in:
dio-gh 2021-03-08 23:06:15 +01:00 committed by Megamouse
parent aad06faf1f
commit 324fa10918

View file

@ -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 */
}