Skip to content

Commit cdd9002

Browse files
committed
GUI - fix text background colours on light/hc modes
1 parent 2d3ae10 commit cdd9002

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/gui/qt/model/sonicpitheme.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ QMap<QString, QString> SonicPiTheme::lightTheme(){
239239
QString dt_warning = "red";
240240
QString dt_green = "#61CE3C";
241241

242-
QString theme_bg = dt_lightgrey;
242+
QString theme_bg = dt_white;
243243
QString theme_fg = dt_darkgrey;
244244

245245
themeSettings["Base"] = dt_lightgrey;
@@ -646,7 +646,7 @@ QMap<QString, QString> SonicPiTheme::highContrastTheme(){
646646
QString dt_not_supported = "black";
647647
QString dt_warning = "red";
648648
QString dt_green = "#285516";
649-
QString theme_bg = dt_lightgrey;
649+
QString theme_bg = dt_white;
650650
QString theme_fg = dt_darkgrey;
651651

652652
themeSettings["Base"] = dt_lightgrey;
@@ -917,7 +917,7 @@ QString SonicPiTheme::getAppStylesheet() {
917917
#if defined(Q_OS_LINUX)
918918
appStyling = "QWidget\n{\nbackground: paneColor;\n}\n" + appStyling;
919919
#endif
920-
920+
921921
appStyling
922922
.replace("windowColor", windowColor)
923923
.replace("windowForegroundColor", windowForegroundColor)

0 commit comments

Comments
 (0)