1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-21 00:09:47 +01:00

More Artist page design.

This commit is contained in:
Jason Herskowitz 2013-06-14 09:52:52 -04:00
parent f6ceac68b0
commit 305fcba693
3 changed files with 12 additions and 10 deletions

View File

@ -61,14 +61,14 @@ namespace TomahawkStyle
static const QColor SELECTION_BACKGROUND = QColor( "#962c26" );
static const QColor SELECTION_FOREGROUND = QColor( "#ffffff" );
static const QColor HEADER_GAUGE_HIGHLIGHT = QColor( "#8dbf2d" );
static const QColor HEADER_GAUGE_BACKGROUND = QColor( "#252020" );
static const QColor HEADER_GAUGE_TEXT = QColor( "#ffffff" );
static const QColor HEADER_GAUGE_LABEL_BACKGROUND = QColor( "#3e3e3e" );
static const QColor HEADER_GAUGE_HIGHLIGHT = QColor( "#7DC4FF" );
static const QColor HEADER_GAUGE_BACKGROUND = QColor( "#DBDBDB" );
static const QColor HEADER_GAUGE_TEXT = QColor( "#292f34" );
static const QColor HEADER_GAUGE_LABEL_BACKGROUND = QColor( "#DBDBDB" );
static const QColor HEADER_BACKGROUND = QColor( "#292f34" );
static const QColor HEADER_TEXT = QColor( "#ffffff" );
static const QColor HEADER_LINK = QColor( "#8dbf2d" );
static const QColor HEADER_LINK = QColor( "#7DC4FF" );
static const QColor HEADER_HIGHLIGHT = QColor( "#333" );
static const QColor TOGGLEBUTTON_BACKGROUND = QColor( "#292f34" );
@ -81,7 +81,7 @@ namespace TomahawkStyle
static const QColor PAGE_BACKGROUND = QColor( "#DBDBDB" );
static const QColor PAGE_TRACKLIST_TRACK_SOLVED = QColor( "#292F34" );
static const QColor PAGE_TRACKLIST_TRACK_UNRESOLVED = QColor( "#8597A6" );
static const QColor PAGE_TRACKLIST_TRACK_UNRESOLVED = QColor( "#8597A6" ).lighter( 200 );
static const QColor PAGE_TRACKLIST_NUMBER = QColor( "#8DBF2D" ).darker( 400 );
static const QColor PAGE_TRACKLIST_HIGHLIGHT = QColor( "#292f34" );
static const QColor PAGE_TRACKLIST_HIGHLIGHT_TEXT = QColor( "#ffffff" );

View File

@ -126,7 +126,7 @@ ArtistInfoWidget::ArtistInfoWidget( const Tomahawk::artist_ptr& artist, QWidget*
{
QFont f = ui->biography->font();
f.setPointSize( f.pointSize() + 1 );
f.setPointSize( f.pointSize() + 2 );
f.setFamily( "Titillium Web" );
QPalette p = ui->biography->palette();
@ -148,7 +148,8 @@ ArtistInfoWidget::ArtistInfoWidget( const Tomahawk::artist_ptr& artist, QWidget*
{
QFont f = ui->artistLabel->font();
f.setFamily( "Titillium Web" );
f.setPointSize( f.pointSize() + 12 );
f.setFamily( "Fauna One" );
QPalette p = ui->artistLabel->palette();
p.setColor( QPalette::Foreground, TomahawkStyle::HEADER_TEXT );

View File

@ -70,7 +70,8 @@ TrackInfoWidget::TrackInfoWidget( const Tomahawk::query_ptr& query, QWidget* par
{
QFont f = ui->trackLabel->font();
f.setFamily( "Titillium Web" );
f.setFamily( "Fauna One" );
f.setPointSize( TomahawkUtils::defaultFontSize() + 12 );
QPalette p = ui->trackLabel->palette();
p.setColor( QPalette::Foreground, TomahawkStyle::HEADER_TEXT );
@ -81,7 +82,7 @@ TrackInfoWidget::TrackInfoWidget( const Tomahawk::query_ptr& query, QWidget* par
{
QFont f = ui->artistLabel->font();
f.setFamily( "Titillium Web" );
f.setFamily( "Fauna One" );
QPalette p = ui->artistLabel->palette();
p.setColor( QPalette::Foreground, TomahawkStyle::HEADER_TEXT );