mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-06 14:16:32 +02:00
More Artist page design.
This commit is contained in:
@@ -61,14 +61,14 @@ namespace TomahawkStyle
|
|||||||
static const QColor SELECTION_BACKGROUND = QColor( "#962c26" );
|
static const QColor SELECTION_BACKGROUND = QColor( "#962c26" );
|
||||||
static const QColor SELECTION_FOREGROUND = QColor( "#ffffff" );
|
static const QColor SELECTION_FOREGROUND = QColor( "#ffffff" );
|
||||||
|
|
||||||
static const QColor HEADER_GAUGE_HIGHLIGHT = QColor( "#8dbf2d" );
|
static const QColor HEADER_GAUGE_HIGHLIGHT = QColor( "#7DC4FF" );
|
||||||
static const QColor HEADER_GAUGE_BACKGROUND = QColor( "#252020" );
|
static const QColor HEADER_GAUGE_BACKGROUND = QColor( "#DBDBDB" );
|
||||||
static const QColor HEADER_GAUGE_TEXT = QColor( "#ffffff" );
|
static const QColor HEADER_GAUGE_TEXT = QColor( "#292f34" );
|
||||||
static const QColor HEADER_GAUGE_LABEL_BACKGROUND = QColor( "#3e3e3e" );
|
static const QColor HEADER_GAUGE_LABEL_BACKGROUND = QColor( "#DBDBDB" );
|
||||||
|
|
||||||
static const QColor HEADER_BACKGROUND = QColor( "#292f34" );
|
static const QColor HEADER_BACKGROUND = QColor( "#292f34" );
|
||||||
static const QColor HEADER_TEXT = QColor( "#ffffff" );
|
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 HEADER_HIGHLIGHT = QColor( "#333" );
|
||||||
|
|
||||||
static const QColor TOGGLEBUTTON_BACKGROUND = QColor( "#292f34" );
|
static const QColor TOGGLEBUTTON_BACKGROUND = QColor( "#292f34" );
|
||||||
@@ -81,7 +81,7 @@ namespace TomahawkStyle
|
|||||||
static const QColor PAGE_BACKGROUND = QColor( "#DBDBDB" );
|
static const QColor PAGE_BACKGROUND = QColor( "#DBDBDB" );
|
||||||
|
|
||||||
static const QColor PAGE_TRACKLIST_TRACK_SOLVED = QColor( "#292F34" );
|
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_NUMBER = QColor( "#8DBF2D" ).darker( 400 );
|
||||||
static const QColor PAGE_TRACKLIST_HIGHLIGHT = QColor( "#292f34" );
|
static const QColor PAGE_TRACKLIST_HIGHLIGHT = QColor( "#292f34" );
|
||||||
static const QColor PAGE_TRACKLIST_HIGHLIGHT_TEXT = QColor( "#ffffff" );
|
static const QColor PAGE_TRACKLIST_HIGHLIGHT_TEXT = QColor( "#ffffff" );
|
||||||
|
@@ -126,7 +126,7 @@ ArtistInfoWidget::ArtistInfoWidget( const Tomahawk::artist_ptr& artist, QWidget*
|
|||||||
|
|
||||||
{
|
{
|
||||||
QFont f = ui->biography->font();
|
QFont f = ui->biography->font();
|
||||||
f.setPointSize( f.pointSize() + 1 );
|
f.setPointSize( f.pointSize() + 2 );
|
||||||
f.setFamily( "Titillium Web" );
|
f.setFamily( "Titillium Web" );
|
||||||
|
|
||||||
QPalette p = ui->biography->palette();
|
QPalette p = ui->biography->palette();
|
||||||
@@ -148,7 +148,8 @@ ArtistInfoWidget::ArtistInfoWidget( const Tomahawk::artist_ptr& artist, QWidget*
|
|||||||
|
|
||||||
{
|
{
|
||||||
QFont f = ui->artistLabel->font();
|
QFont f = ui->artistLabel->font();
|
||||||
f.setFamily( "Titillium Web" );
|
f.setPointSize( f.pointSize() + 12 );
|
||||||
|
f.setFamily( "Fauna One" );
|
||||||
|
|
||||||
QPalette p = ui->artistLabel->palette();
|
QPalette p = ui->artistLabel->palette();
|
||||||
p.setColor( QPalette::Foreground, TomahawkStyle::HEADER_TEXT );
|
p.setColor( QPalette::Foreground, TomahawkStyle::HEADER_TEXT );
|
||||||
|
@@ -70,7 +70,8 @@ TrackInfoWidget::TrackInfoWidget( const Tomahawk::query_ptr& query, QWidget* par
|
|||||||
|
|
||||||
{
|
{
|
||||||
QFont f = ui->trackLabel->font();
|
QFont f = ui->trackLabel->font();
|
||||||
f.setFamily( "Titillium Web" );
|
f.setFamily( "Fauna One" );
|
||||||
|
f.setPointSize( TomahawkUtils::defaultFontSize() + 12 );
|
||||||
|
|
||||||
QPalette p = ui->trackLabel->palette();
|
QPalette p = ui->trackLabel->palette();
|
||||||
p.setColor( QPalette::Foreground, TomahawkStyle::HEADER_TEXT );
|
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();
|
QFont f = ui->artistLabel->font();
|
||||||
f.setFamily( "Titillium Web" );
|
f.setFamily( "Fauna One" );
|
||||||
|
|
||||||
QPalette p = ui->artistLabel->palette();
|
QPalette p = ui->artistLabel->palette();
|
||||||
p.setColor( QPalette::Foreground, TomahawkStyle::HEADER_TEXT );
|
p.setColor( QPalette::Foreground, TomahawkStyle::HEADER_TEXT );
|
||||||
|
Reference in New Issue
Block a user