1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-20 15:59:42 +01:00

Standardize page background colors

This commit is contained in:
Jason Herskowitz 2012-12-16 08:50:54 -05:00
parent 616652da12
commit 77a5c5f84e
3 changed files with 3 additions and 3 deletions

View File

@ -50,7 +50,7 @@ AlbumInfoWidget::AlbumInfoWidget( const Tomahawk::album_ptr& album, QWidget* par
ui->setupUi( widget );
QPalette pal = palette();
pal.setColor( QPalette::Window, QColor( "#454e59" ) );
pal.setColor( QPalette::Window, QColor( "#323435" ) );
widget->setPalette( pal );
widget->setAutoFillBackground( true );

View File

@ -51,7 +51,7 @@ ArtistInfoWidget::ArtistInfoWidget( const Tomahawk::artist_ptr& artist, QWidget*
ui->setupUi( widget );
QPalette pal = palette();
pal.setColor( QPalette::Window, QColor( "#231F1F" ) );
pal.setColor( QPalette::Window, QColor( "#323435" ) );
widget->setPalette( pal );
widget->setAutoFillBackground( true );

View File

@ -44,7 +44,7 @@ TrackInfoWidget::TrackInfoWidget( const Tomahawk::query_ptr& query, QWidget* par
ui->setupUi( widget );
QPalette pal = palette();
pal.setColor( QPalette::Window, QColor( "#454e59" ) );
pal.setColor( QPalette::Window, QColor( "#323435" ) );
widget->setPalette( pal );
widget->setAutoFillBackground( true );