Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Add grey color #117

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions usr/lib/sticky/sticky.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@

COLORS = {
'red': _("Red"),
'grey': _("Grey"),
'green': _("Green"),
'blue': _("Blue"),
'yellow': _("Yellow"),
Expand All @@ -47,6 +48,7 @@

COLOR_CODES = {
'red': "#ff5561",
'grey': "#6f6f6f",
'green': "#67ff67",
'blue': "#3d9bff",
'yellow': "#f6f907",
Expand Down
2 changes: 2 additions & 0 deletions usr/share/glib-2.0/schemas/org.x.sticky.gschema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<summary>Default Color</summary>
<choices>
<choice value='red'/>
<choice value='grey'/>
<choice value='green'/>
<choice value='blue'/>
<choice value='yellow'/>
Expand All @@ -36,6 +37,7 @@
</choices>
<aliases>
<alias value='Red' target='red'/>
<alias value='Grey' target='grey'/>
<alias value='Green' target='green'/>
<alias value='Blue' target='blue'/>
<alias value='Yellow' target='yellow'/>
Expand Down
7 changes: 7 additions & 0 deletions usr/share/sticky/sticky.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@
@define-color red5 #ffc5ca; /* slider trough */
@define-color red5 #ac2029; /* selection */

@define-color grey1 #898989; /* main */
@define-color grey2 #6f6f6f; /* title */
@define-color grey3 #6f6f6f; /* slider */
@define-color grey4 #898989; /* slider hover */
@define-color grey5 #a8a8a8; /* slider trough */
@define-color grey5 #a8a8a8; /* selection */

@define-color blue1 #81bdff; /* main */
@define-color blue2 #3d9bff; /* title */
@define-color blue3 #3d9bff; /* slider */
Expand Down