-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add toggle to switch from light to dark mode icons
- Loading branch information
Showing
21 changed files
with
306 additions
and
72 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
app_icon ICON "icon-active.ico" | ||
inactive-icon ICON "icon-inactive.ico" | ||
active-icon ICON "icon-active.ico" | ||
app_icon ICON "icon-light-active.ico" | ||
dark_inactive_icon ICON "icon-dark-inactive.ico" | ||
dark_active_icon ICON "icon-dark-active.ico" | ||
light_inactive_icon ICON "icon-light-inactive.ico" | ||
light_active_icon ICON "icon-light-active.ico" | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
|
||
inkscape --actions="export-area:0:0:64:64; export-filename:assets/icon-dark-inactive.png; export-do" assets/icons.svg | ||
inkscape --actions="export-area:64:0:128:64; export-filename:assets/icon-dark-active.png; export-do" assets/icons.svg | ||
inkscape --actions="export-area:0:64:64:128; export-filename:assets/icon-light-inactive.png; export-do" assets/icons.svg | ||
inkscape --actions="export-area:64:64:128:128; export-filename:assets/icon-light-active.png; export-do" assets/icons.svg | ||
|
||
convert assets/icon-dark-inactive.png assets/icon-dark-inactive.ico | ||
convert assets/icon-dark-active.png assets/icon-dark-active.ico | ||
convert assets/icon-light-inactive.png assets/icon-light-inactive.ico | ||
convert assets/icon-light-active.png assets/icon-light-active.ico | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.