diff --git a/pelicanconf.py b/pelicanconf.py
index 1a1760c..07a1141 100644
--- a/pelicanconf.py
+++ b/pelicanconf.py
@@ -72,4 +72,4 @@ DEFAULT_METADATA = {
'extras/favicon.ico': {'path': 'favicon.ico'},
}
-THEME = "./themes/simple"
+THEME = "./themes/solarized"
diff --git a/themes/simple/templates/tags.html b/themes/simple/templates/tags.html
deleted file mode 100644
index dab2c42..0000000
--- a/themes/simple/templates/tags.html
+++ /dev/null
@@ -1,13 +0,0 @@
-{% extends "base.html" %}
-
-{% block title %}{{ SITENAME }} - Tags{% endblock %}
-
-{% block content %}
-
Tags for {{ SITENAME }}
-
-
- {% for tag, articles in tags|sort %}
- - {{ tag }} ({{ articles|count }})
- {% endfor %}
-
-{% endblock %}
diff --git a/themes/simple/static/css/main.css b/themes/solarized/static/css/main.css
similarity index 98%
rename from themes/simple/static/css/main.css
rename to themes/solarized/static/css/main.css
index fcbe9aa..fe215f6 100644
--- a/themes/simple/static/css/main.css
+++ b/themes/solarized/static/css/main.css
@@ -1,5 +1,6 @@
@import url("reset.css");
@import url("pygment.css");
+@import url("wordcloud.css");
body {
font-family: 'Lato', 'Trebuchet MS', Trebuchet, 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
@@ -111,3 +112,5 @@ h3.entry-title{
}
a:link.permalink { text-decoration: none; }
+
+
diff --git a/themes/simple/static/css/pygment.css b/themes/solarized/static/css/pygment.css
similarity index 100%
rename from themes/simple/static/css/pygment.css
rename to themes/solarized/static/css/pygment.css
diff --git a/themes/simple/static/css/reset.css b/themes/solarized/static/css/reset.css
similarity index 100%
rename from themes/simple/static/css/reset.css
rename to themes/solarized/static/css/reset.css
diff --git a/themes/simple/static/css/solarized.scss b/themes/solarized/static/css/solarized.scss
similarity index 100%
rename from themes/simple/static/css/solarized.scss
rename to themes/solarized/static/css/solarized.scss
diff --git a/themes/solarized/static/css/wordcloud.css b/themes/solarized/static/css/wordcloud.css
new file mode 100644
index 0000000..2ee6788
--- /dev/null
+++ b/themes/solarized/static/css/wordcloud.css
@@ -0,0 +1,50 @@
+.wordcloud {
+ padding: 0.1rem;
+ width: 400px;
+ text-align:center;
+}
+
+.size-1 { font-size:1.0rem; }
+.size-2 { font-size:1.1rem; }
+.size-3 { font-size:1.2rem; }
+.size-4 { font-size:1.3rem; }
+.size-5 { font-size:1.4rem; }
+.size-6 { font-size:1.5rem; }
+.size-7 { font-size:1.6rem; }
+.size-8 { font-size:1.7rem; }
+.size-9 { font-size:1.8rem; }
+.size-10 { font-size:1.9rem; }
+
+
+.size-11 { font-size:2.0rem; }
+.size-12 { font-size:2.1rem; }
+.size-13 { font-size:2.2rem; }
+.size-14 { font-size:2.3rem; }
+.size-15 { font-size:2.4rem; }
+.size-16 { font-size:2.5rem; }
+.size-17 { font-size:2.6rem; }
+.size-18 { font-size:2.7rem; }
+.size-19 { font-size:2.8rem; }
+.size-20 { font-size:2.9rem; }
+
+.size-21 { font-size:3.0rem; }
+.size-22 { font-size:3.1rem; }
+.size-23 { font-size:3.2rem; }
+.size-24 { font-size:3.3rem; }
+.size-25 { font-size:3.4rem; }
+.size-26 { font-size:3.5rem; }
+.size-27 { font-size:3.6rem; }
+.size-28 { font-size:3.7rem; }
+.size-29 { font-size:3.8rem; }
+.size-30 { font-size:3.9rem; }
+
+.size-31 { font-size:4.0rem; }
+.size-32 { font-size:4.1rem; }
+.size-33 { font-size:4.2rem; }
+.size-34 { font-size:4.3rem; }
+.size-35 { font-size:4.4rem; }
+.size-36 { font-size:4.5rem; }
+.size-37 { font-size:4.6rem; }
+.size-38 { font-size:4.7rem; }
+.size-39 { font-size:4.8rem; }
+.size-40 { font-size:4.9rem; }
diff --git a/themes/simple/templates/archives.html b/themes/solarized/templates/archives.html
similarity index 100%
rename from themes/simple/templates/archives.html
rename to themes/solarized/templates/archives.html
diff --git a/themes/simple/templates/article.html b/themes/solarized/templates/article.html
similarity index 100%
rename from themes/simple/templates/article.html
rename to themes/solarized/templates/article.html
diff --git a/themes/simple/templates/author.html b/themes/solarized/templates/author.html
similarity index 100%
rename from themes/simple/templates/author.html
rename to themes/solarized/templates/author.html
diff --git a/themes/simple/templates/authors.html b/themes/solarized/templates/authors.html
similarity index 100%
rename from themes/simple/templates/authors.html
rename to themes/solarized/templates/authors.html
diff --git a/themes/simple/templates/base.html b/themes/solarized/templates/base.html
similarity index 100%
rename from themes/simple/templates/base.html
rename to themes/solarized/templates/base.html
diff --git a/themes/simple/templates/categories.html b/themes/solarized/templates/categories.html
similarity index 100%
rename from themes/simple/templates/categories.html
rename to themes/solarized/templates/categories.html
diff --git a/themes/simple/templates/category.html b/themes/solarized/templates/category.html
similarity index 100%
rename from themes/simple/templates/category.html
rename to themes/solarized/templates/category.html
diff --git a/themes/simple/templates/gosquared.html b/themes/solarized/templates/gosquared.html
similarity index 100%
rename from themes/simple/templates/gosquared.html
rename to themes/solarized/templates/gosquared.html
diff --git a/themes/simple/templates/index.html b/themes/solarized/templates/index.html
similarity index 100%
rename from themes/simple/templates/index.html
rename to themes/solarized/templates/index.html
diff --git a/themes/simple/templates/page.html b/themes/solarized/templates/page.html
similarity index 100%
rename from themes/simple/templates/page.html
rename to themes/solarized/templates/page.html
diff --git a/themes/simple/templates/pagination.html b/themes/solarized/templates/pagination.html
similarity index 100%
rename from themes/simple/templates/pagination.html
rename to themes/solarized/templates/pagination.html
diff --git a/themes/simple/templates/period_archives.html b/themes/solarized/templates/period_archives.html
similarity index 100%
rename from themes/simple/templates/period_archives.html
rename to themes/solarized/templates/period_archives.html
diff --git a/themes/simple/templates/tag.html b/themes/solarized/templates/tag.html
similarity index 100%
rename from themes/simple/templates/tag.html
rename to themes/solarized/templates/tag.html
diff --git a/themes/solarized/templates/tags.html b/themes/solarized/templates/tags.html
new file mode 100644
index 0000000..3b9a92b
--- /dev/null
+++ b/themes/solarized/templates/tags.html
@@ -0,0 +1,13 @@
+{% extends "base.html" %}
+
+{% block title %}{{ SITENAME }} - Tags{% endblock %}
+
+{% block content %}
+ Tags for {{ SITENAME }}
+
+
+ {% for tag, articles in tags|sort %}
+
{{ tag }}
+ {% endfor %}
+
+{% endblock %}
diff --git a/themes/simple/templates/translations.html b/themes/solarized/templates/translations.html
similarity index 100%
rename from themes/simple/templates/translations.html
rename to themes/solarized/templates/translations.html