feat: Introduce logo (modified version of Tweed 4 logo)

This commit is contained in:
2025-11-04 22:29:39 +01:00
parent 30275a22dc
commit 0971889001
4 changed files with 213 additions and 0 deletions

12
images/export-logo.sh Normal file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env sh
export_png() {
file="logo-$1.png"
file_min="logo-$1.min.png"
inkscape --export-area-drawing --export-width="$1" --export-height="$1" --export-filename="$file" logo.svg
pngquant --quality 20-80 "$file" -o "$file_min" -f --skip-if-larger
mv "$file_min" "$file"
}
export_png 48
export_png 128