diff --git a/src/calamares/CalamaresWindow.cpp b/src/calamares/CalamaresWindow.cpp index bfdc4111b..a62fc6fcf 100644 --- a/src/calamares/CalamaresWindow.cpp +++ b/src/calamares/CalamaresWindow.cpp @@ -48,6 +48,15 @@ CalamaresWindow::CalamaresWindow( QWidget* parent ) sideLayout->addLayout( logoLayout ); logoLayout->addStretch(); QLabel* logoLabel = new QLabel( "branding\ngoes\nhere", sideBox ); + { + QPalette plt = sideBox->palette(); + sideBox->setAutoFillBackground( true ); + plt.setColor( sideBox->backgroundRole(), QColor( "#292F34" ) ); + plt.setColor( sideBox->foregroundRole(), Qt::white ); + sideBox->setPalette( plt ); + logoLabel->setPalette( plt ); + } + logoLabel->setAlignment( Qt::AlignCenter ); logoLabel->setFixedSize( 80, 80 ); logoLayout->addWidget( logoLabel ); logoLayout->addStretch();