[dist] New adaptive icons (#3034)
- Icons that adapt nicely to dark and bright backgrounds (thank you qt) - Went for a "Vaporware but chill" style - Is actually properly formatted SVG :) - Doesn't need a small variant Signed-off-by: lizzie lizzie@eden-emu.dev Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3034 Reviewed-by: CamilleLaVey <camillelavey99@gmail.com> Reviewed-by: Caio Oliveira <caiooliveirafarias0@gmail.com> Co-authored-by: lizzie <lizzie@eden-emu.dev> Co-committed-by: lizzie <lizzie@eden-emu.dev>
BIN
dist/eden.ico
vendored
|
Before Width: | Height: | Size: 386 KiB After Width: | Height: | Size: 516 KiB |
145
dist/icon_variations/base.svg
vendored
|
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 6.9 KiB |
222
dist/icon_variations/base_named.svg
vendored
|
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 21 KiB |
1
dist/icon_variations/original.svg
vendored
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
81
dist/icon_variations/original_named.svg
vendored
Normal file
|
After Width: | Height: | Size: 37 KiB |
|
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 5.5 KiB |
BIN
dist/qt_themes/default/icons/256x256/eden.png
vendored
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 47 KiB |
BIN
dist/qt_themes/default/icons/256x256/eden_named.png
vendored
|
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 62 KiB |
BIN
dist/yuzu.bmp
vendored
|
Before Width: | Height: | Size: 256 KiB After Width: | Height: | Size: 256 KiB |
|
Before Width: | Height: | Size: 65 KiB After Width: | Height: | Size: 104 KiB |
@@ -9,11 +9,11 @@
|
||||
which magick || exit
|
||||
|
||||
EDEN_BASE_SVG="dist/icon_variations/base.svg"
|
||||
EDEN_SMALL_SVG="dist/icon_variations/base_small.svg"
|
||||
#EDEN_SMALL_SVG="dist/icon_variations/base_small.svg"
|
||||
EDEN_NAMED_SVG="dist/icon_variations/base_named.svg"
|
||||
|
||||
magick -density 256x256 -background transparent $EDEN_SMALL_SVG -define icon:auto-resize -colors 256 dist/eden.ico || exit
|
||||
convert -density 256x256 -resize 256x256 -background transparent $EDEN_SMALL_SVG dist/yuzu.bmp || exit
|
||||
magick -density 256x256 -background transparent $EDEN_BASE_SVG -define icon:auto-resize -colors 256 dist/eden.ico || exit
|
||||
convert -density 256x256 -resize 256x256 -background transparent $EDEN_BASE_SVG dist/yuzu.bmp || exit
|
||||
|
||||
magick -size 256x256 -background transparent $EDEN_BASE_SVG dist/qt_themes/default/icons/256x256/eden.png || exit
|
||||
magick -size 256x256 -background transparent $EDEN_NAMED_SVG dist/qt_themes/default/icons/256x256/eden_named.png || exit
|
||||
|
||||