diff --git a/themes/doublefourteen/mkfavicons.sh b/themes/doublefourteen/mkfavicons.sh new file mode 100755 index 0000000..d39f77c --- /dev/null +++ b/themes/doublefourteen/mkfavicons.sh @@ -0,0 +1,25 @@ +#!/bin/sh + +for i in 152 144 120 114 180; do + rsvg-convert -f png -w $i -h $i "static/favicon.svg" > "static/favicon-$i-precomposed.png" + pngcrush -reduce -brute -ow "static/favicon-$i-precomposed.png" +done +for i in 57 32; do + rsvg-convert -f png -w $i -h $i "static/favicon.svg" > "static/favicon-$i.png" + pngcrush -reduce -brute -ow "static/favicon-$i.png" +done + +convert "static/favicon.svg" -bordercolor white -border 0 \ + \( -clone 0 -resize 16x16 \) \ + \( -clone 0 -resize 32x32 \) \ + \( -clone 0 -resize 48x48 \) \ + \( -clone 0 -resize 57x57 \) \ + \( -clone 0 -resize 64x64 \) \ + \( -clone 0 -resize 72x72 \) \ + \( -clone 0 -resize 110x110 \) \ + \( -clone 0 -resize 114x114 \) \ + \( -clone 0 -resize 120x120 \) \ + \( -clone 0 -resize 128x128 \) \ + \( -clone 0 -resize 144x144 \) \ + \( -clone 0 -resize 152x152 \) \ + -delete 0 -alpha off -colors 256 "static/favicon.ico" diff --git a/themes/doublefourteen/static/favicon-114-precomposed.png b/themes/doublefourteen/static/favicon-114-precomposed.png new file mode 100644 index 0000000..39cc301 Binary files /dev/null and b/themes/doublefourteen/static/favicon-114-precomposed.png differ diff --git a/themes/doublefourteen/static/favicon-120-precomposed.png b/themes/doublefourteen/static/favicon-120-precomposed.png new file mode 100644 index 0000000..bf82198 Binary files /dev/null and b/themes/doublefourteen/static/favicon-120-precomposed.png differ diff --git a/themes/doublefourteen/static/favicon-144-precomposed.png b/themes/doublefourteen/static/favicon-144-precomposed.png new file mode 100644 index 0000000..496e9d0 Binary files /dev/null and b/themes/doublefourteen/static/favicon-144-precomposed.png differ diff --git a/themes/doublefourteen/static/favicon-152-precomposed.png b/themes/doublefourteen/static/favicon-152-precomposed.png new file mode 100644 index 0000000..4dd4926 Binary files /dev/null and b/themes/doublefourteen/static/favicon-152-precomposed.png differ diff --git a/themes/doublefourteen/static/favicon-180-precomposed.png b/themes/doublefourteen/static/favicon-180-precomposed.png new file mode 100644 index 0000000..2f480cd Binary files /dev/null and b/themes/doublefourteen/static/favicon-180-precomposed.png differ diff --git a/themes/doublefourteen/static/favicon-32.png b/themes/doublefourteen/static/favicon-32.png new file mode 100644 index 0000000..29e2e9a Binary files /dev/null and b/themes/doublefourteen/static/favicon-32.png differ diff --git a/themes/doublefourteen/static/favicon-57.png b/themes/doublefourteen/static/favicon-57.png new file mode 100644 index 0000000..4192e32 Binary files /dev/null and b/themes/doublefourteen/static/favicon-57.png differ diff --git a/themes/doublefourteen/static/favicon.ico b/themes/doublefourteen/static/favicon.ico index 275cb69..05e94fd 100644 Binary files a/themes/doublefourteen/static/favicon.ico and b/themes/doublefourteen/static/favicon.ico differ