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

Redesign icon #111

Merged
merged 3 commits into from
Apr 25, 2023
Merged
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
8 changes: 7 additions & 1 deletion data/Application.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,17 @@
* Boston, MA 02110-1301 USA
*/

@define-color colorPrimary #42baea;
@define-color colorPrimary @BLUEBERRY_500;

window {
padding: 2em;
background-color: @colorPrimary;
background-image:
linear-gradient(
to bottom,
alpha(white, 0),
alpha(white, 0.3)
);
color: #fff;
font-weight: 500;
text-shadow:
Expand Down
276 changes: 187 additions & 89 deletions data/icons/128.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
265 changes: 139 additions & 126 deletions data/icons/32.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
361 changes: 130 additions & 231 deletions data/icons/48.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
244 changes: 143 additions & 101 deletions data/icons/64.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified data/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/MainWindow.vala
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public class MainWindow : Gtk.ApplicationWindow {
color_primary = "#6fc3ff";
break;
default:
color_primary = "#42baea";
color_primary = "@BLUEBERRY_500";
break;
}

Expand Down