Skip to content

Commit

Permalink
1.1.5 - Fix the in-app colors with better contrast
Browse files Browse the repository at this point in the history
  • Loading branch information
Lains committed Jul 8, 2017
1 parent b234ac3 commit f501323
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
com.github.lainsce.notejot (1.1.5) xenial; urgency=low

* Fix the in-app colors in respect to color contrast rules.

-- Lains <[email protected]> Sat, 8 July 2017 03:30:00 -0300

com.github.lainsce.notejot (1.1.4) xenial; urgency=low

* New icon that respects the icon grid & doesn't suck.
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Name our project
project('com.github.lainsce.notejot', ['vala', 'c'],
version: '1.1.4'
version: '1.1.5'
)

# Import main lib files
Expand Down
2 changes: 1 addition & 1 deletion src/Application.vala
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ namespace Notejot {
app_years = "2017";
exec_name = "com.github.lainsce.notejot";
app_launcher = "com.github.lainsce.notejot";
build_version = "1.1.4";
build_version = "1.1.5";
app_icon = "com.github.lainsce.notejot";
main_url = "https://github.com/lainsce/notejot/";
bug_url = "https://github.com/lainsce/notejot/issues";
Expand Down
8 changes: 4 additions & 4 deletions src/Constants/Stylesheet.vala
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@

namespace Notejot.Stylesheet {
public const string NOTE = """
@define-color textColorPrimary #666;
@define-color textColorPrimary #555;
.notejot-window {
background-color: #fff394;
background-color: #ffe57f;
}
.notejot-toolbar {
Expand All @@ -32,13 +32,13 @@ namespace Notejot.Stylesheet {
}
.notejot-note {
background-color: #fff394;
background-color: #ffe57f;
font-size: 11px;
}
.notejot-note:selected {
background-color: #95a3ab;
color: #fff394;
color: #ffe57f;
}
""";
}

0 comments on commit f501323

Please sign in to comment.