1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-12 00:54:20 +02:00

Tweak colors of footnote and queue headers to match palette of new playlist header

This commit is contained in:
Jason Herskowitz
2012-04-03 18:16:48 -04:00
parent cef3e7fac7
commit 90e1af331b
2 changed files with 3 additions and 3 deletions

View File

@@ -96,7 +96,7 @@ ContextWidget::ContextWidget( QWidget* parent )
ensurePolished();
QPalette pal = palette();
pal.setBrush( QPalette::Window, StyleHelper::headerLowerColor() );
pal.setBrush( QPalette::Window, QColor( "#454e59" ) );
setPalette( pal );
connect( ui->toggleButton, SIGNAL( clicked() ), SLOT( toggleSize() ) );

View File

@@ -26,14 +26,14 @@
QColor
StyleHelper::headerUpperColor()
{
return QColor( 80, 80, 80 );
return QColor( "#464e57" );
}
QColor
StyleHelper::headerLowerColor()
{
return QColor( 72, 72, 72 );
return QColor( "#3f4650" );
}