diff --git a/src/libtomahawk/utils/TomahawkStyle.h b/src/libtomahawk/utils/TomahawkStyle.h index c10982c36..0598d3321 100644 --- a/src/libtomahawk/utils/TomahawkStyle.h +++ b/src/libtomahawk/utils/TomahawkStyle.h @@ -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" ); diff --git a/src/libtomahawk/widgets/infowidgets/ArtistInfoWidget.cpp b/src/libtomahawk/widgets/infowidgets/ArtistInfoWidget.cpp index 0aeb74332..d6dd1d61a 100644 --- a/src/libtomahawk/widgets/infowidgets/ArtistInfoWidget.cpp +++ b/src/libtomahawk/widgets/infowidgets/ArtistInfoWidget.cpp @@ -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 ); diff --git a/src/libtomahawk/widgets/infowidgets/TrackInfoWidget.cpp b/src/libtomahawk/widgets/infowidgets/TrackInfoWidget.cpp index 24db980ef..a182ca312 100644 --- a/src/libtomahawk/widgets/infowidgets/TrackInfoWidget.cpp +++ b/src/libtomahawk/widgets/infowidgets/TrackInfoWidget.cpp @@ -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 );