Skip to content

Commit 3f63c9c

Browse files
committedFeb 3, 2019
Last weaks to blend of gray prior to its initial release
1 parent eba5409 commit 3f63c9c

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed
 

‎resources/themes/Blend of Gray/style.qss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ QPushButton
138138
border-color: @itemdarkbackground;
139139
border-style: solid;
140140
border-radius: 0.2em;
141-
background-color:@itembackground;
141+
background-color:@lightgradient;
142142
color:@text;
143143
}
144144

@@ -149,7 +149,7 @@ QToolButton
149149
border-color: @itemdarkbackground;
150150
border-style: solid;
151151
border-radius: 0.2em;
152-
background-color:@itembackground;
152+
background-color:@lightgradient;
153153
color:@text;
154154
}
155155

@@ -189,7 +189,7 @@ QToolBar QToolButton, QToolButton::menu-button
189189
}
190190

191191
QPushButton:hover, QToolButton:hover {
192-
background-color: @itemalternativebackground;
192+
background-color: @lightalternativegradient;
193193
}
194194

195195
QPushButton:pressed, QToolButton:pressed {

‎resources/themes/Blend of Gray/variables.qss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
@itembackground: #b2b2b2
33
@itemalternativebackground: #9a9a9a;
44
@itemdarkbackground: #373737
5+
@lightgradient: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #a4a4a4, stop: 1 #8a8a8a)
6+
@lightalternativegradient: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #b2b2b2, stop: 1 #999999)
57
@darkgradient: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #535353, stop: 1 #373737)
68
@darkalternativegradient: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1,stop: 0 #565656,stop: 1 #464646);
79
@gradient: QLinearGradient(x1:0, y1:0, x2:1, y2:1, stop:0 #b2b2b2, stop:1 #8f8f8f)

1 commit comments

Comments
 (1)

nirvn commented on Feb 3, 2019

@nirvn
ContributorAuthor

Hmm, oups, by weaks I meant tweaks.

Please sign in to comment.