diff --git a/README.md b/README.md
index f2b5bff..cb4a6cf 100644
--- a/README.md
+++ b/README.md
@@ -3,4 +3,14 @@
* generates a sigil from geographic coordinates and epoch timestamp
* takes two to five arguments: [decimal latitude] [decimal longitude] ([epoch timestamp] [first name] [last name])
* If just latitude and longitude are provided, the timestamp is calculated automatically for this moment.
-* If first- and last name of a person are provided, their birth-location coordinates and birth-time should be the geospatial arguments
\ No newline at end of file
+* If first- and last name of a person are provided, their birth-location coordinates and birth-time should be the geospatial arguments
+
+example:
+
+```
+sigilize.py 52.4852321 13.4355856 322813800 "Sublunar" "Space"
+```
+
+result:
+
+
\ No newline at end of file
diff --git a/test.svg b/Space_Sublunar.svg
similarity index 71%
rename from test.svg
rename to Space_Sublunar.svg
index 7519074..f2a4afa 100644
--- a/test.svg
+++ b/Space_Sublunar.svg
@@ -11,16 +11,20 @@
-
+
-
+
-
-
+
+
+
+
+
+
-
-
+
+
@@ -32,6 +36,6 @@
-
-
+
+
\ No newline at end of file
diff --git a/sigilize.py b/sigilize.py
index 1855ab4..a1ccb7f 100644
--- a/sigilize.py
+++ b/sigilize.py
@@ -173,8 +173,8 @@ def drawSigil(lat, lon, epoch, squareSigilize, radialSigilize, fileName):
astroChart(lat, lon, epoch, d, [rusty, rusty, rusty, rusty, rusty, rusty, rusty, rusty])
# draw sigils
- radialSigil(radialSigilize, d)
- magicSquareSigil(squareSigilize, d)
+ radialSigil(radialSigilize, d, rusty)
+ magicSquareSigil(squareSigilize, d, silver)
# save sigil to SVG file
d.saveSvg(fileName)