diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-04-27 10:30:35 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-04-27 10:30:35 -0400 |
commit | cdea365e5a128d15dfe42bca3fd1de1c00de0926 (patch) | |
tree | c42a39994eaa36bd7946ff86b476f078fd97cd4d /official-2013/optimized-text | |
parent | c6d5f52cd6ba83aee14bd0f1d933a5332678df8d (diff) |
add the new official logo
Diffstat (limited to 'official-2013/optimized-text')
-rw-r--r-- | official-2013/optimized-text/.gitignore | 2 | ||||
-rw-r--r-- | official-2013/optimized-text/Makefile | 34 | ||||
-rw-r--r-- | official-2013/optimized-text/archlogo.svg | 41 | ||||
-rw-r--r-- | official-2013/optimized-text/favicon.svg | 31 | ||||
-rw-r--r-- | official-2013/optimized-text/logotype-color-darkbg.svg | 37 | ||||
-rw-r--r-- | official-2013/optimized-text/logotype-color-lightbg.svg | 37 | ||||
-rw-r--r-- | official-2013/optimized-text/logotype-grayscale.svg | 37 | ||||
-rw-r--r-- | official-2013/optimized-text/logotype-mono-black.svg | 37 | ||||
-rw-r--r-- | official-2013/optimized-text/logotype-mono-white.svg | 37 |
9 files changed, 293 insertions, 0 deletions
diff --git a/official-2013/optimized-text/.gitignore b/official-2013/optimized-text/.gitignore new file mode 100644 index 0000000..9fd2b43 --- /dev/null +++ b/official-2013/optimized-text/.gitignore @@ -0,0 +1,2 @@ +*.png +*.ico diff --git a/official-2013/optimized-text/Makefile b/official-2013/optimized-text/Makefile new file mode 100644 index 0000000..bf10896 --- /dev/null +++ b/official-2013/optimized-text/Makefile @@ -0,0 +1,34 @@ +# SVG2PNG: Each is buggy in their own way +# ImageMagick: doesn't support transparency +#SVG2PNG = convert $1 -format png $(if $3,-resize $3x)$(if $4,$4) $2 +# librsvg: doesn't support <style> element +#SVG2PNG = rsvg-convert $1 -o $2 $(if $3,-w $3) $(if $4,-h $4) +# Inkscape: messes up gradients +SVG2PNG = inkscape $1 --export-png $2 $(if $3,-w $3) $(if $4,-h $4) + +# PNG2ICO +# png2ico: doesn't read PNG transparency properly +#PNG2ICO = png2ico $2 $1 +# icotool: has perl dependencies +PNG2ICO = icotool -c $1 -o $2 + +all: \ + archlogo.png \ + favicon.ico \ + logotype-color-darkbg.png \ + logotype-color-lightbg.png \ + logotype-grayscale.png \ + logotype-mono-black.png \ + logotype-mono-white.png \ + +clean: + rm -f *.png *.ico + +%.png: %.svg Makefile + $(call SVG2PNG,$<,$@) + +%.ico: %.png Makefile + $(call PNG2ICO,$<,$@) + +favicon.png: %.png: %.svg Makefile + $(call SVG2PNG,$<,$@,16) diff --git a/official-2013/optimized-text/archlogo.svg b/official-2013/optimized-text/archlogo.svg new file mode 100644 index 0000000..627f71f --- /dev/null +++ b/official-2013/optimized-text/archlogo.svg @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg xmlns="http://www.w3.org/2000/svg" version="1.1" + width="324" height="50"> + <g transform="scale(.3125)"> + <path style="fill:#787dab" + d="m 148.61515553,5 + c -4.58342,0.43796 -9.44975,1.24294 -14.52578,2.31649 + l -32.15841,33.00327 + c 3.68608,0.44343 7.05945,1.17552 10.13806,2.20749 + L 148.61515553,5 + z + m 22.64718,1.85319 + -44.50399,45.64862 + c 12.51629,16.22018 8.10738,48.80242 -18.23218,102.49819 + 19.48728,-21.27235 104.53594,-126.9849 65.62498,-146.92041 + -0.90341,-0.46286 -1.89131,-0.861 -2.88881,-1.2264 + z + m -59.30231,6.4317 + c -6.15635,1.95909 -12.422699,4.18004 -18.668237,6.54069 + l -21.28452,21.82957 + c 4.882365,-0.79156 9.511695,-1.32363 13.87173,-1.60792 + L 111.96002553,13.28489 + z + M 80.04687853,25.03088 + C 41.21574853,41.00354 6.49128833,60.51418 6.49128833,60.51418 + 27.11934853,52.78365 45.74921353,47.00453 62.00544853,43.5356 + l 18.04143,-18.50472 + z" /> + <g transform="translate(194.22346366,80) scale(1.77)"> + <text style="fill:#ffffff;font-size:84.94529191px;font-family:URW Gothic L" + x="0" y="30.83513921" >Parabola</text> + <g style="fill:#787dab;font-weight:600;font-family:URW Gothic L;"> + <text style="font-size:39.62505691px" + x="379.18563779" y="13.06347097">GNU</text> + <text style="font-size:18.28203671px" + x="379.18563779" y="31.70176442">Linux-libre</text> + </g> + </g> + </g> +</svg> diff --git a/official-2013/optimized-text/favicon.svg b/official-2013/optimized-text/favicon.svg new file mode 100644 index 0000000..516d5f1 --- /dev/null +++ b/official-2013/optimized-text/favicon.svg @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg xmlns="http://www.w3.org/2000/svg" version="1.1" + width="177.73" height="177.73"> + <g transform="translate(-6.4912883,8.855)"> + <path style="fill:#787dab" + d="m 148.61515553,5 + c -4.58342,0.43796 -9.44975,1.24294 -14.52578,2.31649 + l -32.15841,33.00327 + c 3.68608,0.44343 7.05945,1.17552 10.13806,2.20749 + L 148.61515553,5 + z + m 22.64718,1.85319 + -44.50399,45.64862 + c 12.51629,16.22018 8.10738,48.80242 -18.23218,102.49819 + 19.48728,-21.27235 104.53594,-126.9849 65.62498,-146.92041 + -0.90341,-0.46286 -1.89131,-0.861 -2.88881,-1.2264 + z + m -59.30231,6.4317 + c -6.15635,1.95909 -12.422699,4.18004 -18.668237,6.54069 + l -21.28452,21.82957 + c 4.882365,-0.79156 9.511695,-1.32363 13.87173,-1.60792 + L 111.96002553,13.28489 + z + M 80.04687853,25.03088 + C 41.21574853,41.00354 6.49128833,60.51418 6.49128833,60.51418 + 27.11934853,52.78365 45.74921353,47.00453 62.00544853,43.5356 + l 18.04143,-18.50472 + z" /> + </g> +</svg> diff --git a/official-2013/optimized-text/logotype-color-darkbg.svg b/official-2013/optimized-text/logotype-color-darkbg.svg new file mode 100644 index 0000000..ee11694 --- /dev/null +++ b/official-2013/optimized-text/logotype-color-darkbg.svg @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg xmlns="http://www.w3.org/2000/svg" version="1.1" + width="670" height="160"> + <path style="fill:#787dab" + d="m 148.61515553,5 + c -4.58342,0.43796 -9.44975,1.24294 -14.52578,2.31649 + l -32.15841,33.00327 + c 3.68608,0.44343 7.05945,1.17552 10.13806,2.20749 + L 148.61515553,5 + z + m 22.64718,1.85319 + -44.50399,45.64862 + c 12.51629,16.22018 8.10738,48.80242 -18.23218,102.49819 + 19.48728,-21.27235 104.53594,-126.9849 65.62498,-146.92041 + -0.90341,-0.46286 -1.89131,-0.861 -2.88881,-1.2264 + z + m -59.30231,6.4317 + c -6.15635,1.95909 -12.422699,4.18004 -18.668237,6.54069 + l -21.28452,21.82957 + c 4.882365,-0.79156 9.511695,-1.32363 13.87173,-1.60792 + L 111.96002553,13.28489 + z + M 80.04687853,25.03088 + C 41.21574853,41.00354 6.49128833,60.51418 6.49128833,60.51418 + 27.11934853,52.78365 45.74921353,47.00453 62.00544853,43.5356 + l 18.04143,-18.50472 + z" /> + <text style="fill:#ffffff;font-size:84.94529191px;font-family:URW Gothic L" + x="194.22346366" y="110.83513921" >Parabola</text> + <g style="fill:#787dab;font-weight:600;font-family:URW Gothic L;"> + <text style="font-size:39.62505691px" + x="573.40910145" y="93.06347097">GNU</text> + <text style="font-size:18.28203671px" + x="573.40910145" y="111.70176442">Linux-libre</text> + </g> +</svg> diff --git a/official-2013/optimized-text/logotype-color-lightbg.svg b/official-2013/optimized-text/logotype-color-lightbg.svg new file mode 100644 index 0000000..5d8aee9 --- /dev/null +++ b/official-2013/optimized-text/logotype-color-lightbg.svg @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg xmlns="http://www.w3.org/2000/svg" version="1.1" + width="670" height="160"> + <path style="fill:#787dab" + d="m 148.61515553,5 + c -4.58342,0.43796 -9.44975,1.24294 -14.52578,2.31649 + l -32.15841,33.00327 + c 3.68608,0.44343 7.05945,1.17552 10.13806,2.20749 + L 148.61515553,5 + z + m 22.64718,1.85319 + -44.50399,45.64862 + c 12.51629,16.22018 8.10738,48.80242 -18.23218,102.49819 + 19.48728,-21.27235 104.53594,-126.9849 65.62498,-146.92041 + -0.90341,-0.46286 -1.89131,-0.861 -2.88881,-1.2264 + z + m -59.30231,6.4317 + c -6.15635,1.95909 -12.422699,4.18004 -18.668237,6.54069 + l -21.28452,21.82957 + c 4.882365,-0.79156 9.511695,-1.32363 13.87173,-1.60792 + L 111.96002553,13.28489 + z + M 80.04687853,25.03088 + C 41.21574853,41.00354 6.49128833,60.51418 6.49128833,60.51418 + 27.11934853,52.78365 45.74921353,47.00453 62.00544853,43.5356 + l 18.04143,-18.50472 + z" /> + <text style="fill:#333333;font-size:84.94529191px;font-family:URW Gothic L" + x="194.22346366" y="110.83513921" >Parabola</text> + <g style="fill:#787dab;font-weight:600;font-family:URW Gothic L;"> + <text style="font-size:39.62505691px" + x="573.40910145" y="93.06347097">GNU</text> + <text style="font-size:18.28203671px" + x="573.40910145" y="111.70176442">Linux-libre</text> + </g> +</svg> diff --git a/official-2013/optimized-text/logotype-grayscale.svg b/official-2013/optimized-text/logotype-grayscale.svg new file mode 100644 index 0000000..5e49a3a --- /dev/null +++ b/official-2013/optimized-text/logotype-grayscale.svg @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg xmlns="http://www.w3.org/2000/svg" version="1.1" + width="670" height="160"> + <path style="fill:#808080" + d="m 148.61515553,5 + c -4.58342,0.43796 -9.44975,1.24294 -14.52578,2.31649 + l -32.15841,33.00327 + c 3.68608,0.44343 7.05945,1.17552 10.13806,2.20749 + L 148.61515553,5 + z + m 22.64718,1.85319 + -44.50399,45.64862 + c 12.51629,16.22018 8.10738,48.80242 -18.23218,102.49819 + 19.48728,-21.27235 104.53594,-126.9849 65.62498,-146.92041 + -0.90341,-0.46286 -1.89131,-0.861 -2.88881,-1.2264 + z + m -59.30231,6.4317 + c -6.15635,1.95909 -12.422699,4.18004 -18.668237,6.54069 + l -21.28452,21.82957 + c 4.882365,-0.79156 9.511695,-1.32363 13.87173,-1.60792 + L 111.96002553,13.28489 + z + M 80.04687853,25.03088 + C 41.21574853,41.00354 6.49128833,60.51418 6.49128833,60.51418 + 27.11934853,52.78365 45.74921353,47.00453 62.00544853,43.5356 + l 18.04143,-18.50472 + z" /> + <text style="fill:#000000;font-size:84.94529191px;font-family:URW Gothic L" + x="194.22346366" y="110.83513921" >Parabola</text> + <g style="fill:#808080;font-weight:600;font-family:URW Gothic L;"> + <text style="font-size:39.62505691px" + x="573.40910145" y="93.06347097">GNU</text> + <text style="font-size:18.28203671px" + x="573.40910145" y="111.70176442">Linux-libre</text> + </g> +</svg> diff --git a/official-2013/optimized-text/logotype-mono-black.svg b/official-2013/optimized-text/logotype-mono-black.svg new file mode 100644 index 0000000..043ee24 --- /dev/null +++ b/official-2013/optimized-text/logotype-mono-black.svg @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg xmlns="http://www.w3.org/2000/svg" version="1.1" + width="670" height="160"> + <path style="fill:#000000" + d="m 148.61515553,5 + c -4.58342,0.43796 -9.44975,1.24294 -14.52578,2.31649 + l -32.15841,33.00327 + c 3.68608,0.44343 7.05945,1.17552 10.13806,2.20749 + L 148.61515553,5 + z + m 22.64718,1.85319 + -44.50399,45.64862 + c 12.51629,16.22018 8.10738,48.80242 -18.23218,102.49819 + 19.48728,-21.27235 104.53594,-126.9849 65.62498,-146.92041 + -0.90341,-0.46286 -1.89131,-0.861 -2.88881,-1.2264 + z + m -59.30231,6.4317 + c -6.15635,1.95909 -12.422699,4.18004 -18.668237,6.54069 + l -21.28452,21.82957 + c 4.882365,-0.79156 9.511695,-1.32363 13.87173,-1.60792 + L 111.96002553,13.28489 + z + M 80.04687853,25.03088 + C 41.21574853,41.00354 6.49128833,60.51418 6.49128833,60.51418 + 27.11934853,52.78365 45.74921353,47.00453 62.00544853,43.5356 + l 18.04143,-18.50472 + z" /> + <text style="fill:#000000;font-size:84.94529191px;font-family:URW Gothic L" + x="194.22346366" y="110.83513921" >Parabola</text> + <g style="fill:#000000;font-weight:600;font-family:URW Gothic L;"> + <text style="font-size:39.62505691px" + x="573.40910145" y="93.06347097">GNU</text> + <text style="font-size:18.28203671px" + x="573.40910145" y="111.70176442">Linux-libre</text> + </g> +</svg> diff --git a/official-2013/optimized-text/logotype-mono-white.svg b/official-2013/optimized-text/logotype-mono-white.svg new file mode 100644 index 0000000..0febb99 --- /dev/null +++ b/official-2013/optimized-text/logotype-mono-white.svg @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg xmlns="http://www.w3.org/2000/svg" version="1.1" + width="670" height="160"> + <path style="fill:#ffffff" + d="m 148.61515553,5 + c -4.58342,0.43796 -9.44975,1.24294 -14.52578,2.31649 + l -32.15841,33.00327 + c 3.68608,0.44343 7.05945,1.17552 10.13806,2.20749 + L 148.61515553,5 + z + m 22.64718,1.85319 + -44.50399,45.64862 + c 12.51629,16.22018 8.10738,48.80242 -18.23218,102.49819 + 19.48728,-21.27235 104.53594,-126.9849 65.62498,-146.92041 + -0.90341,-0.46286 -1.89131,-0.861 -2.88881,-1.2264 + z + m -59.30231,6.4317 + c -6.15635,1.95909 -12.422699,4.18004 -18.668237,6.54069 + l -21.28452,21.82957 + c 4.882365,-0.79156 9.511695,-1.32363 13.87173,-1.60792 + L 111.96002553,13.28489 + z + M 80.04687853,25.03088 + C 41.21574853,41.00354 6.49128833,60.51418 6.49128833,60.51418 + 27.11934853,52.78365 45.74921353,47.00453 62.00544853,43.5356 + l 18.04143,-18.50472 + z" /> + <text style="fill:#ffffff;font-size:84.94529191px;font-family:URW Gothic L" + x="194.22346366" y="110.83513921" >Parabola</text> + <g style="fill:#ffffff;font-weight:600;font-family:URW Gothic L;"> + <text style="font-size:39.62505691px" + x="573.40910145" y="93.06347097">GNU</text> + <text style="font-size:18.28203671px" + x="573.40910145" y="111.70176442">Linux-libre</text> + </g> +</svg> |