diff --git a/artwork/Makefile b/artwork/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..4b61ea916b1545792d38ba9f39e606107efafbe1
--- /dev/null
+++ b/artwork/Makefile
@@ -0,0 +1,18 @@
+DEFAULT_DPI=90
+
+all: logo.png logo-wide.png
+
+clean:
+	rm -rf logo.png logo-wide.png
+
+logo.png: logo.svg
+	inkscape --export-png=$@ \
+		--export-dpi=10 \
+		--export-background-opacity=0 \
+		--without-gui $<
+
+logo-wide.png: logo-wide.svg
+	inkscape --export-png=$@ \
+		--export-dpi=45 \
+		--export-background-opacity=0 \
+		--without-gui $<
diff --git a/artwork/logo-wide.png b/artwork/logo-wide.png
new file mode 100644
index 0000000000000000000000000000000000000000..467b1ac07f508aa8a971721c7570b940adbcf7c6
Binary files /dev/null and b/artwork/logo-wide.png differ
diff --git a/artwork/logo.png b/artwork/logo.png
new file mode 100644
index 0000000000000000000000000000000000000000..1184bd466bfd9feea3a5a955700518cd11e85743
Binary files /dev/null and b/artwork/logo.png differ