diff --git a/README.md b/README.md
index 1b47e39..e77bd8c 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@ Weather Underground Icons
These icons were created by the Graphic Designer [Ashley Jager](http://www.ajager.com/#/weather-underground/). She released these icons in a beautiful [Adobe Illustrator](https://dribbble.com/shots/1879422-Weather-Underground-Icons) file. This project simply breaks that AI file up into web friendly icons that can be used in your projects.
-
+
Demo Website
---
@@ -58,6 +58,24 @@ All CSS Icons will default to using SVG files. However, you can use PNG sprites

+### Icon Class Day & Night:
+
+* Default is to use Day Icons
+
+```html
+
+```
+
+
+
+* `wu-night` to use Night Icons
+
+```html
+
+```
+
+
+
### Icon Class Sizes:
* `wu-16` 16x16px icons
@@ -100,7 +118,7 @@ All CSS Icons will default to using SVG files. However, you can use PNG sprites

-Icon Key
+Day Icon Key
---
Here are the `icon` options for each weather option:
@@ -128,9 +146,55 @@ ICON | KEY | DESCRIPTION
 | tstorms | Thunderstorms
 | unknown | Unknown
-Icon Preview
+
+Night Icon Key
---
-
+Here are the `icon` options for each weather option:
-
+ICON | KEY | DESCRIPTION
+---- | --- | -----------
+ | chanceflurries | Chance of Flurries
+ | chancerain | Chance of Rain
+ | chancesleet | Chance Freezing Rain
+ | chancesnow | Chance of Snow
+ | chancetstorms | Chance of Thunderstorms
+ | clear | Clear
+ | cloudy | Cloudy
+ | flurries | Flurries
+ | fog | Fog
+ | hazy | Haze
+ | mostlycloudy | Mostly Cloudy
+ | mostlysunny | Mostly Sunny
+ | partlycloudy | Partly Cloudy
+ | partlysunny | Partly Sunny
+ | rain | Rain
+ | sleet | Freezing Rain
+ | snow | Snow
+ | sunny | Sunny
+ | tstorms | Thunderstorms
+ | unknown | Unknown
+
+
+Day Icon Preview
+---
+
+
+
+
+
+
+
+
+
+
+Night Icon Preview
+---
+
+
+
+
+
+
+
+
diff --git a/css/demo.css b/css/demo.css
index f422a0a..6576082 100644
--- a/css/demo.css
+++ b/css/demo.css
@@ -55,27 +55,27 @@ body {
font-family: 'Ubuntu', sans-serif;
}
-body.demo-white {
+body.demo-white, body.demo-solid-white {
color: #fff;
}
-body.demo-black {
+body.demo-black, body.demo-solid-black {
color: #000;
}
-body.demo-white *::-moz-selection {
+body.demo-white *::-moz-selection, body.demo-solid-white *::-moz-selection {
background: rgba(0, 0, 0, 0.5);
}
-body.demo-white *::selection {
+body.demo-white *::selection, body.demo-soli-white *::selection {
background: rgba(0, 0, 0, 0.5);
}
-body.demo-black *::-moz-selection {
+body.demo-black *::-moz-selection, body.demo-solid-black *::-moz-selection {
background: rgba(0, 0, 0, 0.05);
}
-body.demo-black *::selection {
+body.demo-black *::selection, body.demo-solid-black *::selection {
background: #FFF;
}
@@ -104,17 +104,17 @@ select:active, select:focus {
text-decoration: none;
}
-body.demo-white .author-info a {
+body.demo-white .author-info a, body.demo-solid-white .author-info a {
color: rgba(255, 255, 255, 0.5);
}
-body.demo-black .author-info a {
+body.demo-black .author-info a, body.demo-solid-black .author-info a {
color: rgba(0, 0, 0, 0.5);
}
-body.demo-white .author-info a:hover {
+body.demo-white .author-info a:hover, body.demo-solid-white .author-info a:hover {
color: #FFF;
}
-body.demo-black .author-info a:hover {
+body.demo-black .author-info a:hover, body.demo-solid-black .author-info a:hover {
color: #000;
}
@@ -124,11 +124,11 @@ body.demo-black .author-info a:hover {
margin-bottom: 40px;
}
-.demo-white {
+.demo-white, .demo-solid-white {
background: #262a33;
}
-.demo-black {
+.demo-black, .demo-solid-black {
background: #f3f7f9;
}
@@ -137,11 +137,11 @@ body.demo-black .author-info a:hover {
transition: background-color 0.25s linear;
}
-.demo-white i:hover, .demo-white i.active {
+.demo-white i:hover, .demo-white i.active, .demo-solid-white i:hover, .demo-solid-white i.active {
background-color: rgba(0, 0, 0, 0.5);
}
-.demo-black i:hover, .demo-black i.active {
+.demo-black i:hover, .demo-black i.active, .demo-solid-black i:hover, .demo-solid-black i.active {
background-color: #FFF;
}
@@ -182,11 +182,11 @@ body.demo-black .author-info a:hover {
font-weight: 300;
}
-body.demo-white .header div.options span {
+body.demo-white .header div.options span, body.demo-solid-white .header div.options span {
margin-right: 10px;
color: rgba(255, 255, 255, 0.25);
}
-body.demo-black .header div.options span {
+body.demo-black .header div.options span, body.demo-solid-black .header div.options span {
margin-right: 10px;
color: rgba(0, 0, 0, 0.25);
}
@@ -217,11 +217,11 @@ body.demo-black .header div.options span {
border: 0;
right: 0;
}
-body.demo-black .github-corner svg {
+body.demo-black .github-corner svg, body.demo-solid-black .github-corner svg {
fill: #262a33;
color: #f3f7f9;
}
-body.demo-white .github-corner svg {
+body.demo-white .github-corner svg, body.demo-solid-white .github-corner svg {
fill: #f3f7f9;
color: #262a33;
}
diff --git a/dist/icons/black/icon-preview-nt.png b/dist/icons/black/icon-preview-nt.png
new file mode 100644
index 0000000..4f6da53
Binary files /dev/null and b/dist/icons/black/icon-preview-nt.png differ
diff --git a/dist/icons/black/icon-preview.png b/dist/icons/black/icon-preview.png
old mode 100755
new mode 100644
index 4cfdf7d..3781ad0
Binary files a/dist/icons/black/icon-preview.png and b/dist/icons/black/icon-preview.png differ
diff --git a/dist/icons/black/png/128x128/_nt_spritesheet.png b/dist/icons/black/png/128x128/_nt_spritesheet.png
new file mode 100644
index 0000000..99dc0ef
Binary files /dev/null and b/dist/icons/black/png/128x128/_nt_spritesheet.png differ
diff --git a/dist/icons/black/png/128x128/_spritesheet.png b/dist/icons/black/png/128x128/_spritesheet.png
index 1f4899b..1a614c0 100755
Binary files a/dist/icons/black/png/128x128/_spritesheet.png and b/dist/icons/black/png/128x128/_spritesheet.png differ
diff --git a/dist/icons/black/png/128x128/nt_chanceflurries.png b/dist/icons/black/png/128x128/nt_chanceflurries.png
new file mode 100755
index 0000000..180f8b3
Binary files /dev/null and b/dist/icons/black/png/128x128/nt_chanceflurries.png differ
diff --git a/dist/icons/black/png/128x128/nt_chancerain.png b/dist/icons/black/png/128x128/nt_chancerain.png
new file mode 100755
index 0000000..f2f307d
Binary files /dev/null and b/dist/icons/black/png/128x128/nt_chancerain.png differ
diff --git a/dist/icons/black/png/128x128/nt_chancesleet.png b/dist/icons/black/png/128x128/nt_chancesleet.png
new file mode 100755
index 0000000..e3aa2c8
Binary files /dev/null and b/dist/icons/black/png/128x128/nt_chancesleet.png differ
diff --git a/dist/icons/black/png/128x128/nt_chancesnow.png b/dist/icons/black/png/128x128/nt_chancesnow.png
new file mode 100755
index 0000000..2d7c48e
Binary files /dev/null and b/dist/icons/black/png/128x128/nt_chancesnow.png differ
diff --git a/dist/icons/black/png/128x128/nt_chancetstorms.png b/dist/icons/black/png/128x128/nt_chancetstorms.png
new file mode 100755
index 0000000..dba46e0
Binary files /dev/null and b/dist/icons/black/png/128x128/nt_chancetstorms.png differ
diff --git a/dist/icons/black/png/128x128/nt_clear.png b/dist/icons/black/png/128x128/nt_clear.png
new file mode 100644
index 0000000..cc40d0f
Binary files /dev/null and b/dist/icons/black/png/128x128/nt_clear.png differ
diff --git a/dist/icons/black/png/128x128/nt_cloudy.png b/dist/icons/black/png/128x128/nt_cloudy.png
new file mode 100755
index 0000000..47fb6b6
Binary files /dev/null and b/dist/icons/black/png/128x128/nt_cloudy.png differ
diff --git a/dist/icons/black/png/128x128/nt_flurries.png b/dist/icons/black/png/128x128/nt_flurries.png
new file mode 100755
index 0000000..e9125aa
Binary files /dev/null and b/dist/icons/black/png/128x128/nt_flurries.png differ
diff --git a/dist/icons/black/png/128x128/nt_fog.png b/dist/icons/black/png/128x128/nt_fog.png
new file mode 100755
index 0000000..2e5a9bc
Binary files /dev/null and b/dist/icons/black/png/128x128/nt_fog.png differ
diff --git a/dist/icons/black/png/128x128/nt_hazy.png b/dist/icons/black/png/128x128/nt_hazy.png
new file mode 100755
index 0000000..2e5a9bc
Binary files /dev/null and b/dist/icons/black/png/128x128/nt_hazy.png differ
diff --git a/dist/icons/black/png/128x128/nt_mostlycloudy.png b/dist/icons/black/png/128x128/nt_mostlycloudy.png
new file mode 100644
index 0000000..bfc27e9
Binary files /dev/null and b/dist/icons/black/png/128x128/nt_mostlycloudy.png differ
diff --git a/dist/icons/black/png/128x128/nt_mostlysunny.png b/dist/icons/black/png/128x128/nt_mostlysunny.png
new file mode 100644
index 0000000..0345e93
Binary files /dev/null and b/dist/icons/black/png/128x128/nt_mostlysunny.png differ
diff --git a/dist/icons/black/png/128x128/nt_partlycloudy.png b/dist/icons/black/png/128x128/nt_partlycloudy.png
new file mode 100644
index 0000000..0345e93
Binary files /dev/null and b/dist/icons/black/png/128x128/nt_partlycloudy.png differ
diff --git a/dist/icons/black/png/128x128/nt_partlysunny.png b/dist/icons/black/png/128x128/nt_partlysunny.png
new file mode 100644
index 0000000..bfc27e9
Binary files /dev/null and b/dist/icons/black/png/128x128/nt_partlysunny.png differ
diff --git a/dist/icons/black/png/128x128/nt_rain.png b/dist/icons/black/png/128x128/nt_rain.png
new file mode 100755
index 0000000..d5049ed
Binary files /dev/null and b/dist/icons/black/png/128x128/nt_rain.png differ
diff --git a/dist/icons/black/png/128x128/nt_sleet.png b/dist/icons/black/png/128x128/nt_sleet.png
new file mode 100755
index 0000000..55e0dfc
Binary files /dev/null and b/dist/icons/black/png/128x128/nt_sleet.png differ
diff --git a/dist/icons/black/png/128x128/nt_snow.png b/dist/icons/black/png/128x128/nt_snow.png
new file mode 100755
index 0000000..0a7f006
Binary files /dev/null and b/dist/icons/black/png/128x128/nt_snow.png differ
diff --git a/dist/icons/black/png/128x128/nt_sunny.png b/dist/icons/black/png/128x128/nt_sunny.png
new file mode 100644
index 0000000..cc40d0f
Binary files /dev/null and b/dist/icons/black/png/128x128/nt_sunny.png differ
diff --git a/dist/icons/black/png/128x128/nt_tstorms.png b/dist/icons/black/png/128x128/nt_tstorms.png
new file mode 100755
index 0000000..5071159
Binary files /dev/null and b/dist/icons/black/png/128x128/nt_tstorms.png differ
diff --git a/dist/icons/black/png/128x128/nt_unknown.png b/dist/icons/black/png/128x128/nt_unknown.png
new file mode 100755
index 0000000..cd74c2c
Binary files /dev/null and b/dist/icons/black/png/128x128/nt_unknown.png differ
diff --git a/dist/icons/black/png/16x16/_nt_spritesheet.png b/dist/icons/black/png/16x16/_nt_spritesheet.png
new file mode 100644
index 0000000..8d3c6da
Binary files /dev/null and b/dist/icons/black/png/16x16/_nt_spritesheet.png differ
diff --git a/dist/icons/black/png/16x16/_spritesheet.png b/dist/icons/black/png/16x16/_spritesheet.png
index 6cfcfa3..e61b66f 100755
Binary files a/dist/icons/black/png/16x16/_spritesheet.png and b/dist/icons/black/png/16x16/_spritesheet.png differ
diff --git a/dist/icons/black/png/16x16/nt_chanceflurries.png b/dist/icons/black/png/16x16/nt_chanceflurries.png
new file mode 100755
index 0000000..f7355bc
Binary files /dev/null and b/dist/icons/black/png/16x16/nt_chanceflurries.png differ
diff --git a/dist/icons/black/png/16x16/nt_chancerain.png b/dist/icons/black/png/16x16/nt_chancerain.png
new file mode 100755
index 0000000..bbd7786
Binary files /dev/null and b/dist/icons/black/png/16x16/nt_chancerain.png differ
diff --git a/dist/icons/black/png/16x16/nt_chancesleet.png b/dist/icons/black/png/16x16/nt_chancesleet.png
new file mode 100755
index 0000000..033e77c
Binary files /dev/null and b/dist/icons/black/png/16x16/nt_chancesleet.png differ
diff --git a/dist/icons/black/png/16x16/nt_chancesnow.png b/dist/icons/black/png/16x16/nt_chancesnow.png
new file mode 100755
index 0000000..7093bf4
Binary files /dev/null and b/dist/icons/black/png/16x16/nt_chancesnow.png differ
diff --git a/dist/icons/black/png/16x16/nt_chancetstorms.png b/dist/icons/black/png/16x16/nt_chancetstorms.png
new file mode 100755
index 0000000..bc9600c
Binary files /dev/null and b/dist/icons/black/png/16x16/nt_chancetstorms.png differ
diff --git a/dist/icons/black/png/16x16/nt_clear.png b/dist/icons/black/png/16x16/nt_clear.png
new file mode 100644
index 0000000..931a4b1
Binary files /dev/null and b/dist/icons/black/png/16x16/nt_clear.png differ
diff --git a/dist/icons/black/png/16x16/nt_cloudy.png b/dist/icons/black/png/16x16/nt_cloudy.png
new file mode 100755
index 0000000..66bc0e5
Binary files /dev/null and b/dist/icons/black/png/16x16/nt_cloudy.png differ
diff --git a/dist/icons/black/png/16x16/nt_flurries.png b/dist/icons/black/png/16x16/nt_flurries.png
new file mode 100755
index 0000000..facc30b
Binary files /dev/null and b/dist/icons/black/png/16x16/nt_flurries.png differ
diff --git a/dist/icons/black/png/16x16/nt_fog.png b/dist/icons/black/png/16x16/nt_fog.png
new file mode 100755
index 0000000..c077157
Binary files /dev/null and b/dist/icons/black/png/16x16/nt_fog.png differ
diff --git a/dist/icons/black/png/16x16/nt_hazy.png b/dist/icons/black/png/16x16/nt_hazy.png
new file mode 100755
index 0000000..c077157
Binary files /dev/null and b/dist/icons/black/png/16x16/nt_hazy.png differ
diff --git a/dist/icons/black/png/16x16/nt_mostlycloudy.png b/dist/icons/black/png/16x16/nt_mostlycloudy.png
new file mode 100644
index 0000000..bbe01ae
Binary files /dev/null and b/dist/icons/black/png/16x16/nt_mostlycloudy.png differ
diff --git a/dist/icons/black/png/16x16/nt_mostlysunny.png b/dist/icons/black/png/16x16/nt_mostlysunny.png
new file mode 100644
index 0000000..faa5c1e
Binary files /dev/null and b/dist/icons/black/png/16x16/nt_mostlysunny.png differ
diff --git a/dist/icons/black/png/16x16/nt_partlycloudy.png b/dist/icons/black/png/16x16/nt_partlycloudy.png
new file mode 100644
index 0000000..faa5c1e
Binary files /dev/null and b/dist/icons/black/png/16x16/nt_partlycloudy.png differ
diff --git a/dist/icons/black/png/16x16/nt_partlysunny.png b/dist/icons/black/png/16x16/nt_partlysunny.png
new file mode 100644
index 0000000..af03ffe
Binary files /dev/null and b/dist/icons/black/png/16x16/nt_partlysunny.png differ
diff --git a/dist/icons/black/png/16x16/nt_rain.png b/dist/icons/black/png/16x16/nt_rain.png
new file mode 100755
index 0000000..8654945
Binary files /dev/null and b/dist/icons/black/png/16x16/nt_rain.png differ
diff --git a/dist/icons/black/png/16x16/nt_sleet.png b/dist/icons/black/png/16x16/nt_sleet.png
new file mode 100755
index 0000000..4150163
Binary files /dev/null and b/dist/icons/black/png/16x16/nt_sleet.png differ
diff --git a/dist/icons/black/png/16x16/nt_snow.png b/dist/icons/black/png/16x16/nt_snow.png
new file mode 100755
index 0000000..018e83a
Binary files /dev/null and b/dist/icons/black/png/16x16/nt_snow.png differ
diff --git a/dist/icons/black/png/16x16/nt_sunny.png b/dist/icons/black/png/16x16/nt_sunny.png
new file mode 100644
index 0000000..931a4b1
Binary files /dev/null and b/dist/icons/black/png/16x16/nt_sunny.png differ
diff --git a/dist/icons/black/png/16x16/nt_tstorms.png b/dist/icons/black/png/16x16/nt_tstorms.png
new file mode 100755
index 0000000..5e9c305
Binary files /dev/null and b/dist/icons/black/png/16x16/nt_tstorms.png differ
diff --git a/dist/icons/black/png/16x16/nt_unknown.png b/dist/icons/black/png/16x16/nt_unknown.png
new file mode 100755
index 0000000..bc479f1
Binary files /dev/null and b/dist/icons/black/png/16x16/nt_unknown.png differ
diff --git a/dist/icons/black/png/256x256/_nt_spritesheet.png b/dist/icons/black/png/256x256/_nt_spritesheet.png
new file mode 100644
index 0000000..fa093ec
Binary files /dev/null and b/dist/icons/black/png/256x256/_nt_spritesheet.png differ
diff --git a/dist/icons/black/png/256x256/_spritesheet.png b/dist/icons/black/png/256x256/_spritesheet.png
index 78236af..8cedc77 100755
Binary files a/dist/icons/black/png/256x256/_spritesheet.png and b/dist/icons/black/png/256x256/_spritesheet.png differ
diff --git a/dist/icons/black/png/256x256/nt_chanceflurries.png b/dist/icons/black/png/256x256/nt_chanceflurries.png
new file mode 100755
index 0000000..6b41ff2
Binary files /dev/null and b/dist/icons/black/png/256x256/nt_chanceflurries.png differ
diff --git a/dist/icons/black/png/256x256/nt_chancerain.png b/dist/icons/black/png/256x256/nt_chancerain.png
new file mode 100755
index 0000000..8bece54
Binary files /dev/null and b/dist/icons/black/png/256x256/nt_chancerain.png differ
diff --git a/dist/icons/black/png/256x256/nt_chancesleet.png b/dist/icons/black/png/256x256/nt_chancesleet.png
new file mode 100755
index 0000000..5b93b13
Binary files /dev/null and b/dist/icons/black/png/256x256/nt_chancesleet.png differ
diff --git a/dist/icons/black/png/256x256/nt_chancesnow.png b/dist/icons/black/png/256x256/nt_chancesnow.png
new file mode 100755
index 0000000..0f523e7
Binary files /dev/null and b/dist/icons/black/png/256x256/nt_chancesnow.png differ
diff --git a/dist/icons/black/png/256x256/nt_chancetstorms.png b/dist/icons/black/png/256x256/nt_chancetstorms.png
new file mode 100755
index 0000000..5d3b564
Binary files /dev/null and b/dist/icons/black/png/256x256/nt_chancetstorms.png differ
diff --git a/dist/icons/black/png/256x256/nt_clear.png b/dist/icons/black/png/256x256/nt_clear.png
new file mode 100644
index 0000000..841725f
Binary files /dev/null and b/dist/icons/black/png/256x256/nt_clear.png differ
diff --git a/dist/icons/black/png/256x256/nt_cloudy.png b/dist/icons/black/png/256x256/nt_cloudy.png
new file mode 100755
index 0000000..e145d6e
Binary files /dev/null and b/dist/icons/black/png/256x256/nt_cloudy.png differ
diff --git a/dist/icons/black/png/256x256/nt_flurries.png b/dist/icons/black/png/256x256/nt_flurries.png
new file mode 100755
index 0000000..7d98f78
Binary files /dev/null and b/dist/icons/black/png/256x256/nt_flurries.png differ
diff --git a/dist/icons/black/png/256x256/nt_fog.png b/dist/icons/black/png/256x256/nt_fog.png
new file mode 100755
index 0000000..6f5b094
Binary files /dev/null and b/dist/icons/black/png/256x256/nt_fog.png differ
diff --git a/dist/icons/black/png/256x256/nt_hazy.png b/dist/icons/black/png/256x256/nt_hazy.png
new file mode 100755
index 0000000..6f5b094
Binary files /dev/null and b/dist/icons/black/png/256x256/nt_hazy.png differ
diff --git a/dist/icons/black/png/256x256/nt_mostlycloudy.png b/dist/icons/black/png/256x256/nt_mostlycloudy.png
new file mode 100644
index 0000000..97e4ade
Binary files /dev/null and b/dist/icons/black/png/256x256/nt_mostlycloudy.png differ
diff --git a/dist/icons/black/png/256x256/nt_mostlysunny.png b/dist/icons/black/png/256x256/nt_mostlysunny.png
new file mode 100644
index 0000000..ed2cc5a
Binary files /dev/null and b/dist/icons/black/png/256x256/nt_mostlysunny.png differ
diff --git a/dist/icons/black/png/256x256/nt_partlycloudy.png b/dist/icons/black/png/256x256/nt_partlycloudy.png
new file mode 100644
index 0000000..ed2cc5a
Binary files /dev/null and b/dist/icons/black/png/256x256/nt_partlycloudy.png differ
diff --git a/dist/icons/black/png/256x256/nt_partlysunny.png b/dist/icons/black/png/256x256/nt_partlysunny.png
new file mode 100644
index 0000000..97e4ade
Binary files /dev/null and b/dist/icons/black/png/256x256/nt_partlysunny.png differ
diff --git a/dist/icons/black/png/256x256/nt_rain.png b/dist/icons/black/png/256x256/nt_rain.png
new file mode 100755
index 0000000..87e9b97
Binary files /dev/null and b/dist/icons/black/png/256x256/nt_rain.png differ
diff --git a/dist/icons/black/png/256x256/nt_sleet.png b/dist/icons/black/png/256x256/nt_sleet.png
new file mode 100755
index 0000000..54dd3bc
Binary files /dev/null and b/dist/icons/black/png/256x256/nt_sleet.png differ
diff --git a/dist/icons/black/png/256x256/nt_snow.png b/dist/icons/black/png/256x256/nt_snow.png
new file mode 100755
index 0000000..d934834
Binary files /dev/null and b/dist/icons/black/png/256x256/nt_snow.png differ
diff --git a/dist/icons/black/png/256x256/nt_sunny.png b/dist/icons/black/png/256x256/nt_sunny.png
new file mode 100644
index 0000000..841725f
Binary files /dev/null and b/dist/icons/black/png/256x256/nt_sunny.png differ
diff --git a/dist/icons/black/png/256x256/nt_tstorms.png b/dist/icons/black/png/256x256/nt_tstorms.png
new file mode 100755
index 0000000..b719354
Binary files /dev/null and b/dist/icons/black/png/256x256/nt_tstorms.png differ
diff --git a/dist/icons/black/png/256x256/nt_unknown.png b/dist/icons/black/png/256x256/nt_unknown.png
new file mode 100755
index 0000000..e70ca4c
Binary files /dev/null and b/dist/icons/black/png/256x256/nt_unknown.png differ
diff --git a/dist/icons/black/png/32x32/_nt_spritesheet.png b/dist/icons/black/png/32x32/_nt_spritesheet.png
new file mode 100644
index 0000000..cd025a0
Binary files /dev/null and b/dist/icons/black/png/32x32/_nt_spritesheet.png differ
diff --git a/dist/icons/black/png/32x32/_spritesheet.png b/dist/icons/black/png/32x32/_spritesheet.png
index 59615e2..83d319c 100755
Binary files a/dist/icons/black/png/32x32/_spritesheet.png and b/dist/icons/black/png/32x32/_spritesheet.png differ
diff --git a/dist/icons/black/png/32x32/nt_chanceflurries.png b/dist/icons/black/png/32x32/nt_chanceflurries.png
new file mode 100755
index 0000000..829ec98
Binary files /dev/null and b/dist/icons/black/png/32x32/nt_chanceflurries.png differ
diff --git a/dist/icons/black/png/32x32/nt_chancerain.png b/dist/icons/black/png/32x32/nt_chancerain.png
new file mode 100755
index 0000000..5d2a5d3
Binary files /dev/null and b/dist/icons/black/png/32x32/nt_chancerain.png differ
diff --git a/dist/icons/black/png/32x32/nt_chancesleet.png b/dist/icons/black/png/32x32/nt_chancesleet.png
new file mode 100755
index 0000000..2ac9af9
Binary files /dev/null and b/dist/icons/black/png/32x32/nt_chancesleet.png differ
diff --git a/dist/icons/black/png/32x32/nt_chancesnow.png b/dist/icons/black/png/32x32/nt_chancesnow.png
new file mode 100755
index 0000000..614118c
Binary files /dev/null and b/dist/icons/black/png/32x32/nt_chancesnow.png differ
diff --git a/dist/icons/black/png/32x32/nt_chancetstorms.png b/dist/icons/black/png/32x32/nt_chancetstorms.png
new file mode 100755
index 0000000..2536fe6
Binary files /dev/null and b/dist/icons/black/png/32x32/nt_chancetstorms.png differ
diff --git a/dist/icons/black/png/32x32/nt_clear.png b/dist/icons/black/png/32x32/nt_clear.png
new file mode 100644
index 0000000..02732fb
Binary files /dev/null and b/dist/icons/black/png/32x32/nt_clear.png differ
diff --git a/dist/icons/black/png/32x32/nt_cloudy.png b/dist/icons/black/png/32x32/nt_cloudy.png
new file mode 100755
index 0000000..5e0bd49
Binary files /dev/null and b/dist/icons/black/png/32x32/nt_cloudy.png differ
diff --git a/dist/icons/black/png/32x32/nt_flurries.png b/dist/icons/black/png/32x32/nt_flurries.png
new file mode 100755
index 0000000..93afa86
Binary files /dev/null and b/dist/icons/black/png/32x32/nt_flurries.png differ
diff --git a/dist/icons/black/png/32x32/nt_fog.png b/dist/icons/black/png/32x32/nt_fog.png
new file mode 100755
index 0000000..ff385b9
Binary files /dev/null and b/dist/icons/black/png/32x32/nt_fog.png differ
diff --git a/dist/icons/black/png/32x32/nt_hazy.png b/dist/icons/black/png/32x32/nt_hazy.png
new file mode 100755
index 0000000..ff385b9
Binary files /dev/null and b/dist/icons/black/png/32x32/nt_hazy.png differ
diff --git a/dist/icons/black/png/32x32/nt_mostlycloudy.png b/dist/icons/black/png/32x32/nt_mostlycloudy.png
new file mode 100644
index 0000000..4b22604
Binary files /dev/null and b/dist/icons/black/png/32x32/nt_mostlycloudy.png differ
diff --git a/dist/icons/black/png/32x32/nt_mostlysunny.png b/dist/icons/black/png/32x32/nt_mostlysunny.png
new file mode 100644
index 0000000..9880772
Binary files /dev/null and b/dist/icons/black/png/32x32/nt_mostlysunny.png differ
diff --git a/dist/icons/black/png/32x32/nt_partlycloudy.png b/dist/icons/black/png/32x32/nt_partlycloudy.png
new file mode 100644
index 0000000..9880772
Binary files /dev/null and b/dist/icons/black/png/32x32/nt_partlycloudy.png differ
diff --git a/dist/icons/black/png/32x32/nt_partlysunny.png b/dist/icons/black/png/32x32/nt_partlysunny.png
new file mode 100644
index 0000000..4b22604
Binary files /dev/null and b/dist/icons/black/png/32x32/nt_partlysunny.png differ
diff --git a/dist/icons/black/png/32x32/nt_rain.png b/dist/icons/black/png/32x32/nt_rain.png
new file mode 100755
index 0000000..4fe048b
Binary files /dev/null and b/dist/icons/black/png/32x32/nt_rain.png differ
diff --git a/dist/icons/black/png/32x32/nt_sleet.png b/dist/icons/black/png/32x32/nt_sleet.png
new file mode 100755
index 0000000..b1cd664
Binary files /dev/null and b/dist/icons/black/png/32x32/nt_sleet.png differ
diff --git a/dist/icons/black/png/32x32/nt_snow.png b/dist/icons/black/png/32x32/nt_snow.png
new file mode 100755
index 0000000..1b8930d
Binary files /dev/null and b/dist/icons/black/png/32x32/nt_snow.png differ
diff --git a/dist/icons/black/png/32x32/nt_sunny.png b/dist/icons/black/png/32x32/nt_sunny.png
new file mode 100644
index 0000000..02732fb
Binary files /dev/null and b/dist/icons/black/png/32x32/nt_sunny.png differ
diff --git a/dist/icons/black/png/32x32/nt_tstorms.png b/dist/icons/black/png/32x32/nt_tstorms.png
new file mode 100755
index 0000000..319f9e0
Binary files /dev/null and b/dist/icons/black/png/32x32/nt_tstorms.png differ
diff --git a/dist/icons/black/png/32x32/nt_unknown.png b/dist/icons/black/png/32x32/nt_unknown.png
new file mode 100755
index 0000000..620b3c3
Binary files /dev/null and b/dist/icons/black/png/32x32/nt_unknown.png differ
diff --git a/dist/icons/black/png/64x64/_nt_spritesheet.png b/dist/icons/black/png/64x64/_nt_spritesheet.png
new file mode 100644
index 0000000..8425785
Binary files /dev/null and b/dist/icons/black/png/64x64/_nt_spritesheet.png differ
diff --git a/dist/icons/black/png/64x64/_spritesheet.png b/dist/icons/black/png/64x64/_spritesheet.png
index 6737c49..6f6fb95 100755
Binary files a/dist/icons/black/png/64x64/_spritesheet.png and b/dist/icons/black/png/64x64/_spritesheet.png differ
diff --git a/dist/icons/black/png/64x64/nt_chanceflurries.png b/dist/icons/black/png/64x64/nt_chanceflurries.png
new file mode 100755
index 0000000..70361dd
Binary files /dev/null and b/dist/icons/black/png/64x64/nt_chanceflurries.png differ
diff --git a/dist/icons/black/png/64x64/nt_chancerain.png b/dist/icons/black/png/64x64/nt_chancerain.png
new file mode 100755
index 0000000..2672bb9
Binary files /dev/null and b/dist/icons/black/png/64x64/nt_chancerain.png differ
diff --git a/dist/icons/black/png/64x64/nt_chancesleet.png b/dist/icons/black/png/64x64/nt_chancesleet.png
new file mode 100755
index 0000000..8ced1e7
Binary files /dev/null and b/dist/icons/black/png/64x64/nt_chancesleet.png differ
diff --git a/dist/icons/black/png/64x64/nt_chancesnow.png b/dist/icons/black/png/64x64/nt_chancesnow.png
new file mode 100755
index 0000000..48b5fd0
Binary files /dev/null and b/dist/icons/black/png/64x64/nt_chancesnow.png differ
diff --git a/dist/icons/black/png/64x64/nt_chancetstorms.png b/dist/icons/black/png/64x64/nt_chancetstorms.png
new file mode 100755
index 0000000..00f80b1
Binary files /dev/null and b/dist/icons/black/png/64x64/nt_chancetstorms.png differ
diff --git a/dist/icons/black/png/64x64/nt_clear.png b/dist/icons/black/png/64x64/nt_clear.png
new file mode 100644
index 0000000..6ec1054
Binary files /dev/null and b/dist/icons/black/png/64x64/nt_clear.png differ
diff --git a/dist/icons/black/png/64x64/nt_cloudy.png b/dist/icons/black/png/64x64/nt_cloudy.png
new file mode 100755
index 0000000..15e045a
Binary files /dev/null and b/dist/icons/black/png/64x64/nt_cloudy.png differ
diff --git a/dist/icons/black/png/64x64/nt_flurries.png b/dist/icons/black/png/64x64/nt_flurries.png
new file mode 100755
index 0000000..c70b4a8
Binary files /dev/null and b/dist/icons/black/png/64x64/nt_flurries.png differ
diff --git a/dist/icons/black/png/64x64/nt_fog.png b/dist/icons/black/png/64x64/nt_fog.png
new file mode 100755
index 0000000..0df7177
Binary files /dev/null and b/dist/icons/black/png/64x64/nt_fog.png differ
diff --git a/dist/icons/black/png/64x64/nt_hazy.png b/dist/icons/black/png/64x64/nt_hazy.png
new file mode 100755
index 0000000..0df7177
Binary files /dev/null and b/dist/icons/black/png/64x64/nt_hazy.png differ
diff --git a/dist/icons/black/png/64x64/nt_mostlycloudy.png b/dist/icons/black/png/64x64/nt_mostlycloudy.png
new file mode 100644
index 0000000..28cd4fa
Binary files /dev/null and b/dist/icons/black/png/64x64/nt_mostlycloudy.png differ
diff --git a/dist/icons/black/png/64x64/nt_mostlysunny.png b/dist/icons/black/png/64x64/nt_mostlysunny.png
new file mode 100644
index 0000000..f3ace7d
Binary files /dev/null and b/dist/icons/black/png/64x64/nt_mostlysunny.png differ
diff --git a/dist/icons/black/png/64x64/nt_partlycloudy.png b/dist/icons/black/png/64x64/nt_partlycloudy.png
new file mode 100644
index 0000000..f3ace7d
Binary files /dev/null and b/dist/icons/black/png/64x64/nt_partlycloudy.png differ
diff --git a/dist/icons/black/png/64x64/nt_partlysunny.png b/dist/icons/black/png/64x64/nt_partlysunny.png
new file mode 100644
index 0000000..28cd4fa
Binary files /dev/null and b/dist/icons/black/png/64x64/nt_partlysunny.png differ
diff --git a/dist/icons/black/png/64x64/nt_rain.png b/dist/icons/black/png/64x64/nt_rain.png
new file mode 100755
index 0000000..2c04a87
Binary files /dev/null and b/dist/icons/black/png/64x64/nt_rain.png differ
diff --git a/dist/icons/black/png/64x64/nt_sleet.png b/dist/icons/black/png/64x64/nt_sleet.png
new file mode 100755
index 0000000..314e0ee
Binary files /dev/null and b/dist/icons/black/png/64x64/nt_sleet.png differ
diff --git a/dist/icons/black/png/64x64/nt_snow.png b/dist/icons/black/png/64x64/nt_snow.png
new file mode 100755
index 0000000..795e06d
Binary files /dev/null and b/dist/icons/black/png/64x64/nt_snow.png differ
diff --git a/dist/icons/black/png/64x64/nt_sunny.png b/dist/icons/black/png/64x64/nt_sunny.png
new file mode 100644
index 0000000..6ec1054
Binary files /dev/null and b/dist/icons/black/png/64x64/nt_sunny.png differ
diff --git a/dist/icons/black/png/64x64/nt_tstorms.png b/dist/icons/black/png/64x64/nt_tstorms.png
new file mode 100755
index 0000000..0b5ecbb
Binary files /dev/null and b/dist/icons/black/png/64x64/nt_tstorms.png differ
diff --git a/dist/icons/black/png/64x64/nt_unknown.png b/dist/icons/black/png/64x64/nt_unknown.png
new file mode 100755
index 0000000..1518ef1
Binary files /dev/null and b/dist/icons/black/png/64x64/nt_unknown.png differ
diff --git a/dist/icons/black/svg/nt_chanceflurries.svg b/dist/icons/black/svg/nt_chanceflurries.svg
new file mode 100644
index 0000000..f9cb1d0
--- /dev/null
+++ b/dist/icons/black/svg/nt_chanceflurries.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/black/svg/nt_chancerain.svg b/dist/icons/black/svg/nt_chancerain.svg
new file mode 100644
index 0000000..e434526
--- /dev/null
+++ b/dist/icons/black/svg/nt_chancerain.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/black/svg/nt_chancesleet.svg b/dist/icons/black/svg/nt_chancesleet.svg
new file mode 100644
index 0000000..d9ada06
--- /dev/null
+++ b/dist/icons/black/svg/nt_chancesleet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/black/svg/nt_chancesnow.svg b/dist/icons/black/svg/nt_chancesnow.svg
new file mode 100644
index 0000000..1bcb3cd
--- /dev/null
+++ b/dist/icons/black/svg/nt_chancesnow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/black/svg/nt_chancetstorms.svg b/dist/icons/black/svg/nt_chancetstorms.svg
new file mode 100644
index 0000000..637eee9
--- /dev/null
+++ b/dist/icons/black/svg/nt_chancetstorms.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/black/svg/nt_clear.svg b/dist/icons/black/svg/nt_clear.svg
new file mode 100644
index 0000000..2af0c4c
--- /dev/null
+++ b/dist/icons/black/svg/nt_clear.svg
@@ -0,0 +1,11 @@
+
+
+
diff --git a/dist/icons/black/svg/nt_cloudy.svg b/dist/icons/black/svg/nt_cloudy.svg
new file mode 100644
index 0000000..41a2dd7
--- /dev/null
+++ b/dist/icons/black/svg/nt_cloudy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/black/svg/nt_flurries.svg b/dist/icons/black/svg/nt_flurries.svg
new file mode 100644
index 0000000..cb97d7f
--- /dev/null
+++ b/dist/icons/black/svg/nt_flurries.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/black/svg/nt_fog.svg b/dist/icons/black/svg/nt_fog.svg
new file mode 100644
index 0000000..d5ffdd9
--- /dev/null
+++ b/dist/icons/black/svg/nt_fog.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/black/svg/nt_hazy.svg b/dist/icons/black/svg/nt_hazy.svg
new file mode 100644
index 0000000..a2de0c2
--- /dev/null
+++ b/dist/icons/black/svg/nt_hazy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/black/svg/nt_mostlycloudy.svg b/dist/icons/black/svg/nt_mostlycloudy.svg
new file mode 100644
index 0000000..a3794e1
--- /dev/null
+++ b/dist/icons/black/svg/nt_mostlycloudy.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/dist/icons/black/svg/nt_mostlysunny.svg b/dist/icons/black/svg/nt_mostlysunny.svg
new file mode 100644
index 0000000..d60429a
--- /dev/null
+++ b/dist/icons/black/svg/nt_mostlysunny.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/dist/icons/black/svg/nt_partlycloudy.svg b/dist/icons/black/svg/nt_partlycloudy.svg
new file mode 100644
index 0000000..d60429a
--- /dev/null
+++ b/dist/icons/black/svg/nt_partlycloudy.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/dist/icons/black/svg/nt_partlysunny.svg b/dist/icons/black/svg/nt_partlysunny.svg
new file mode 100644
index 0000000..a3794e1
--- /dev/null
+++ b/dist/icons/black/svg/nt_partlysunny.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/dist/icons/black/svg/nt_rain.svg b/dist/icons/black/svg/nt_rain.svg
new file mode 100644
index 0000000..990ddee
--- /dev/null
+++ b/dist/icons/black/svg/nt_rain.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/black/svg/nt_sleet.svg b/dist/icons/black/svg/nt_sleet.svg
new file mode 100644
index 0000000..20a0482
--- /dev/null
+++ b/dist/icons/black/svg/nt_sleet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/black/svg/nt_snow.svg b/dist/icons/black/svg/nt_snow.svg
new file mode 100644
index 0000000..c777b4c
--- /dev/null
+++ b/dist/icons/black/svg/nt_snow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/black/svg/nt_sunny.svg b/dist/icons/black/svg/nt_sunny.svg
new file mode 100644
index 0000000..2af0c4c
--- /dev/null
+++ b/dist/icons/black/svg/nt_sunny.svg
@@ -0,0 +1,11 @@
+
+
+
diff --git a/dist/icons/black/svg/nt_tstorms.svg b/dist/icons/black/svg/nt_tstorms.svg
new file mode 100644
index 0000000..6a0cfea
--- /dev/null
+++ b/dist/icons/black/svg/nt_tstorms.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/black/svg/nt_unknown.svg b/dist/icons/black/svg/nt_unknown.svg
new file mode 100644
index 0000000..e1231d6
--- /dev/null
+++ b/dist/icons/black/svg/nt_unknown.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/solid-black/icon-preview-nt.png b/dist/icons/solid-black/icon-preview-nt.png
new file mode 100644
index 0000000..5e7d4cf
Binary files /dev/null and b/dist/icons/solid-black/icon-preview-nt.png differ
diff --git a/dist/icons/solid-black/icon-preview.png b/dist/icons/solid-black/icon-preview.png
new file mode 100644
index 0000000..45ccbd9
Binary files /dev/null and b/dist/icons/solid-black/icon-preview.png differ
diff --git a/dist/icons/solid-black/png/128x128/_nt_spritesheet.png b/dist/icons/solid-black/png/128x128/_nt_spritesheet.png
new file mode 100644
index 0000000..23e4286
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/_nt_spritesheet.png differ
diff --git a/dist/icons/solid-black/png/128x128/_spritesheet.png b/dist/icons/solid-black/png/128x128/_spritesheet.png
new file mode 100755
index 0000000..b8ad5d3
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/_spritesheet.png differ
diff --git a/dist/icons/solid-black/png/128x128/chanceflurries.png b/dist/icons/solid-black/png/128x128/chanceflurries.png
new file mode 100755
index 0000000..4248f86
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/chanceflurries.png differ
diff --git a/dist/icons/solid-black/png/128x128/chancerain.png b/dist/icons/solid-black/png/128x128/chancerain.png
new file mode 100755
index 0000000..55c59e6
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/chancerain.png differ
diff --git a/dist/icons/solid-black/png/128x128/chancesleet.png b/dist/icons/solid-black/png/128x128/chancesleet.png
new file mode 100755
index 0000000..90ff99f
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/chancesleet.png differ
diff --git a/dist/icons/solid-black/png/128x128/chancesnow.png b/dist/icons/solid-black/png/128x128/chancesnow.png
new file mode 100755
index 0000000..242f113
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/chancesnow.png differ
diff --git a/dist/icons/solid-black/png/128x128/chancetstorms.png b/dist/icons/solid-black/png/128x128/chancetstorms.png
new file mode 100755
index 0000000..cd346dc
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/chancetstorms.png differ
diff --git a/dist/icons/solid-black/png/128x128/clear.png b/dist/icons/solid-black/png/128x128/clear.png
new file mode 100755
index 0000000..29bcb91
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/clear.png differ
diff --git a/dist/icons/solid-black/png/128x128/cloudy.png b/dist/icons/solid-black/png/128x128/cloudy.png
new file mode 100755
index 0000000..b7f639a
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/cloudy.png differ
diff --git a/dist/icons/solid-black/png/128x128/flurries.png b/dist/icons/solid-black/png/128x128/flurries.png
new file mode 100755
index 0000000..d05e74d
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/flurries.png differ
diff --git a/dist/icons/solid-black/png/128x128/fog.png b/dist/icons/solid-black/png/128x128/fog.png
new file mode 100755
index 0000000..98bf80d
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/fog.png differ
diff --git a/dist/icons/solid-black/png/128x128/hazy.png b/dist/icons/solid-black/png/128x128/hazy.png
new file mode 100755
index 0000000..2660f16
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/hazy.png differ
diff --git a/dist/icons/solid-black/png/128x128/mostlycloudy.png b/dist/icons/solid-black/png/128x128/mostlycloudy.png
new file mode 100755
index 0000000..c02bc4c
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/mostlycloudy.png differ
diff --git a/dist/icons/solid-black/png/128x128/mostlysunny.png b/dist/icons/solid-black/png/128x128/mostlysunny.png
new file mode 100755
index 0000000..70512e9
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/mostlysunny.png differ
diff --git a/dist/icons/solid-black/png/128x128/nt_chanceflurries.png b/dist/icons/solid-black/png/128x128/nt_chanceflurries.png
new file mode 100755
index 0000000..d68480a
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/nt_chanceflurries.png differ
diff --git a/dist/icons/solid-black/png/128x128/nt_chancerain.png b/dist/icons/solid-black/png/128x128/nt_chancerain.png
new file mode 100755
index 0000000..b9deadc
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/nt_chancerain.png differ
diff --git a/dist/icons/solid-black/png/128x128/nt_chancesleet.png b/dist/icons/solid-black/png/128x128/nt_chancesleet.png
new file mode 100755
index 0000000..fc6e8dd
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/nt_chancesleet.png differ
diff --git a/dist/icons/solid-black/png/128x128/nt_chancesnow.png b/dist/icons/solid-black/png/128x128/nt_chancesnow.png
new file mode 100755
index 0000000..c1ba21a
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/nt_chancesnow.png differ
diff --git a/dist/icons/solid-black/png/128x128/nt_chancetstorms.png b/dist/icons/solid-black/png/128x128/nt_chancetstorms.png
new file mode 100755
index 0000000..42b5a75
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/nt_chancetstorms.png differ
diff --git a/dist/icons/solid-black/png/128x128/nt_clear.png b/dist/icons/solid-black/png/128x128/nt_clear.png
new file mode 100644
index 0000000..617bd90
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/nt_clear.png differ
diff --git a/dist/icons/solid-black/png/128x128/nt_cloudy.png b/dist/icons/solid-black/png/128x128/nt_cloudy.png
new file mode 100755
index 0000000..32e9781
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/nt_cloudy.png differ
diff --git a/dist/icons/solid-black/png/128x128/nt_flurries.png b/dist/icons/solid-black/png/128x128/nt_flurries.png
new file mode 100755
index 0000000..6cdd51f
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/nt_flurries.png differ
diff --git a/dist/icons/solid-black/png/128x128/nt_fog.png b/dist/icons/solid-black/png/128x128/nt_fog.png
new file mode 100755
index 0000000..126b424
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/nt_fog.png differ
diff --git a/dist/icons/solid-black/png/128x128/nt_hazy.png b/dist/icons/solid-black/png/128x128/nt_hazy.png
new file mode 100755
index 0000000..b90cb51
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/nt_hazy.png differ
diff --git a/dist/icons/solid-black/png/128x128/nt_mostlycloudy.png b/dist/icons/solid-black/png/128x128/nt_mostlycloudy.png
new file mode 100644
index 0000000..70c9e60
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/nt_mostlycloudy.png differ
diff --git a/dist/icons/solid-black/png/128x128/nt_mostlysunny.png b/dist/icons/solid-black/png/128x128/nt_mostlysunny.png
new file mode 100644
index 0000000..e10c8dc
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/nt_mostlysunny.png differ
diff --git a/dist/icons/solid-black/png/128x128/nt_partlycloudy.png b/dist/icons/solid-black/png/128x128/nt_partlycloudy.png
new file mode 100644
index 0000000..3536624
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/nt_partlycloudy.png differ
diff --git a/dist/icons/solid-black/png/128x128/nt_partlysunny.png b/dist/icons/solid-black/png/128x128/nt_partlysunny.png
new file mode 100644
index 0000000..12d213c
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/nt_partlysunny.png differ
diff --git a/dist/icons/solid-black/png/128x128/nt_rain.png b/dist/icons/solid-black/png/128x128/nt_rain.png
new file mode 100755
index 0000000..78dcae6
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/nt_rain.png differ
diff --git a/dist/icons/solid-black/png/128x128/nt_sleet.png b/dist/icons/solid-black/png/128x128/nt_sleet.png
new file mode 100755
index 0000000..d4f8129
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/nt_sleet.png differ
diff --git a/dist/icons/solid-black/png/128x128/nt_snow.png b/dist/icons/solid-black/png/128x128/nt_snow.png
new file mode 100755
index 0000000..80b5b60
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/nt_snow.png differ
diff --git a/dist/icons/solid-black/png/128x128/nt_sunny.png b/dist/icons/solid-black/png/128x128/nt_sunny.png
new file mode 100644
index 0000000..4c9d987
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/nt_sunny.png differ
diff --git a/dist/icons/solid-black/png/128x128/nt_tstorms.png b/dist/icons/solid-black/png/128x128/nt_tstorms.png
new file mode 100755
index 0000000..6411000
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/nt_tstorms.png differ
diff --git a/dist/icons/solid-black/png/128x128/nt_unknown.png b/dist/icons/solid-black/png/128x128/nt_unknown.png
new file mode 100755
index 0000000..26aaf0f
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/nt_unknown.png differ
diff --git a/dist/icons/solid-black/png/128x128/partlycloudy.png b/dist/icons/solid-black/png/128x128/partlycloudy.png
new file mode 100755
index 0000000..8ee8b61
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/partlycloudy.png differ
diff --git a/dist/icons/solid-black/png/128x128/partlysunny.png b/dist/icons/solid-black/png/128x128/partlysunny.png
new file mode 100755
index 0000000..aecfa3b
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/partlysunny.png differ
diff --git a/dist/icons/solid-black/png/128x128/rain.png b/dist/icons/solid-black/png/128x128/rain.png
new file mode 100755
index 0000000..b8e7c37
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/rain.png differ
diff --git a/dist/icons/solid-black/png/128x128/sleet.png b/dist/icons/solid-black/png/128x128/sleet.png
new file mode 100755
index 0000000..dd00d58
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/sleet.png differ
diff --git a/dist/icons/solid-black/png/128x128/snow.png b/dist/icons/solid-black/png/128x128/snow.png
new file mode 100755
index 0000000..a64e604
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/snow.png differ
diff --git a/dist/icons/solid-black/png/128x128/sunny.png b/dist/icons/solid-black/png/128x128/sunny.png
new file mode 100755
index 0000000..3f96ba5
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/sunny.png differ
diff --git a/dist/icons/solid-black/png/128x128/tstorms.png b/dist/icons/solid-black/png/128x128/tstorms.png
new file mode 100755
index 0000000..70590cc
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/tstorms.png differ
diff --git a/dist/icons/solid-black/png/128x128/unknown.png b/dist/icons/solid-black/png/128x128/unknown.png
new file mode 100755
index 0000000..2712080
Binary files /dev/null and b/dist/icons/solid-black/png/128x128/unknown.png differ
diff --git a/dist/icons/solid-black/png/16x16/_nt_spritesheet.png b/dist/icons/solid-black/png/16x16/_nt_spritesheet.png
new file mode 100644
index 0000000..d23d0f7
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/_nt_spritesheet.png differ
diff --git a/dist/icons/solid-black/png/16x16/_spritesheet.png b/dist/icons/solid-black/png/16x16/_spritesheet.png
new file mode 100755
index 0000000..4129aa7
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/_spritesheet.png differ
diff --git a/dist/icons/solid-black/png/16x16/chanceflurries.png b/dist/icons/solid-black/png/16x16/chanceflurries.png
new file mode 100755
index 0000000..2a391d5
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/chanceflurries.png differ
diff --git a/dist/icons/solid-black/png/16x16/chancerain.png b/dist/icons/solid-black/png/16x16/chancerain.png
new file mode 100755
index 0000000..4473cab
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/chancerain.png differ
diff --git a/dist/icons/solid-black/png/16x16/chancesleet.png b/dist/icons/solid-black/png/16x16/chancesleet.png
new file mode 100755
index 0000000..e0487fc
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/chancesleet.png differ
diff --git a/dist/icons/solid-black/png/16x16/chancesnow.png b/dist/icons/solid-black/png/16x16/chancesnow.png
new file mode 100755
index 0000000..fa2bf01
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/chancesnow.png differ
diff --git a/dist/icons/solid-black/png/16x16/chancetstorms.png b/dist/icons/solid-black/png/16x16/chancetstorms.png
new file mode 100755
index 0000000..6e094a7
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/chancetstorms.png differ
diff --git a/dist/icons/solid-black/png/16x16/clear.png b/dist/icons/solid-black/png/16x16/clear.png
new file mode 100755
index 0000000..1949590
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/clear.png differ
diff --git a/dist/icons/solid-black/png/16x16/cloudy.png b/dist/icons/solid-black/png/16x16/cloudy.png
new file mode 100755
index 0000000..9ccde5f
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/cloudy.png differ
diff --git a/dist/icons/solid-black/png/16x16/flurries.png b/dist/icons/solid-black/png/16x16/flurries.png
new file mode 100755
index 0000000..7eb8539
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/flurries.png differ
diff --git a/dist/icons/solid-black/png/16x16/fog.png b/dist/icons/solid-black/png/16x16/fog.png
new file mode 100755
index 0000000..cc0019e
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/fog.png differ
diff --git a/dist/icons/solid-black/png/16x16/hazy.png b/dist/icons/solid-black/png/16x16/hazy.png
new file mode 100755
index 0000000..dc3a1c3
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/hazy.png differ
diff --git a/dist/icons/solid-black/png/16x16/mostlycloudy.png b/dist/icons/solid-black/png/16x16/mostlycloudy.png
new file mode 100755
index 0000000..fabb420
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/mostlycloudy.png differ
diff --git a/dist/icons/solid-black/png/16x16/mostlysunny.png b/dist/icons/solid-black/png/16x16/mostlysunny.png
new file mode 100755
index 0000000..fd809af
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/mostlysunny.png differ
diff --git a/dist/icons/solid-black/png/16x16/nt_chanceflurries.png b/dist/icons/solid-black/png/16x16/nt_chanceflurries.png
new file mode 100755
index 0000000..f9b74d7
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/nt_chanceflurries.png differ
diff --git a/dist/icons/solid-black/png/16x16/nt_chancerain.png b/dist/icons/solid-black/png/16x16/nt_chancerain.png
new file mode 100755
index 0000000..7470f8b
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/nt_chancerain.png differ
diff --git a/dist/icons/solid-black/png/16x16/nt_chancesleet.png b/dist/icons/solid-black/png/16x16/nt_chancesleet.png
new file mode 100755
index 0000000..ed73cd9
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/nt_chancesleet.png differ
diff --git a/dist/icons/solid-black/png/16x16/nt_chancesnow.png b/dist/icons/solid-black/png/16x16/nt_chancesnow.png
new file mode 100755
index 0000000..1e92754
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/nt_chancesnow.png differ
diff --git a/dist/icons/solid-black/png/16x16/nt_chancetstorms.png b/dist/icons/solid-black/png/16x16/nt_chancetstorms.png
new file mode 100755
index 0000000..680b03a
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/nt_chancetstorms.png differ
diff --git a/dist/icons/solid-black/png/16x16/nt_clear.png b/dist/icons/solid-black/png/16x16/nt_clear.png
new file mode 100644
index 0000000..f7c6bfc
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/nt_clear.png differ
diff --git a/dist/icons/solid-black/png/16x16/nt_cloudy.png b/dist/icons/solid-black/png/16x16/nt_cloudy.png
new file mode 100755
index 0000000..180c6ed
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/nt_cloudy.png differ
diff --git a/dist/icons/solid-black/png/16x16/nt_flurries.png b/dist/icons/solid-black/png/16x16/nt_flurries.png
new file mode 100755
index 0000000..be0a884
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/nt_flurries.png differ
diff --git a/dist/icons/solid-black/png/16x16/nt_fog.png b/dist/icons/solid-black/png/16x16/nt_fog.png
new file mode 100755
index 0000000..3de44c5
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/nt_fog.png differ
diff --git a/dist/icons/solid-black/png/16x16/nt_hazy.png b/dist/icons/solid-black/png/16x16/nt_hazy.png
new file mode 100755
index 0000000..b0be87e
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/nt_hazy.png differ
diff --git a/dist/icons/solid-black/png/16x16/nt_mostlycloudy.png b/dist/icons/solid-black/png/16x16/nt_mostlycloudy.png
new file mode 100644
index 0000000..da65602
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/nt_mostlycloudy.png differ
diff --git a/dist/icons/solid-black/png/16x16/nt_mostlysunny.png b/dist/icons/solid-black/png/16x16/nt_mostlysunny.png
new file mode 100644
index 0000000..6a60dbc
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/nt_mostlysunny.png differ
diff --git a/dist/icons/solid-black/png/16x16/nt_partlycloudy.png b/dist/icons/solid-black/png/16x16/nt_partlycloudy.png
new file mode 100644
index 0000000..8b4bb8f
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/nt_partlycloudy.png differ
diff --git a/dist/icons/solid-black/png/16x16/nt_partlysunny.png b/dist/icons/solid-black/png/16x16/nt_partlysunny.png
new file mode 100644
index 0000000..1a8c10f
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/nt_partlysunny.png differ
diff --git a/dist/icons/solid-black/png/16x16/nt_rain.png b/dist/icons/solid-black/png/16x16/nt_rain.png
new file mode 100755
index 0000000..f2a9ebb
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/nt_rain.png differ
diff --git a/dist/icons/solid-black/png/16x16/nt_sleet.png b/dist/icons/solid-black/png/16x16/nt_sleet.png
new file mode 100755
index 0000000..8a502cd
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/nt_sleet.png differ
diff --git a/dist/icons/solid-black/png/16x16/nt_snow.png b/dist/icons/solid-black/png/16x16/nt_snow.png
new file mode 100755
index 0000000..2421108
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/nt_snow.png differ
diff --git a/dist/icons/solid-black/png/16x16/nt_sunny.png b/dist/icons/solid-black/png/16x16/nt_sunny.png
new file mode 100644
index 0000000..0bd2788
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/nt_sunny.png differ
diff --git a/dist/icons/solid-black/png/16x16/nt_tstorms.png b/dist/icons/solid-black/png/16x16/nt_tstorms.png
new file mode 100755
index 0000000..3c7b7ab
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/nt_tstorms.png differ
diff --git a/dist/icons/solid-black/png/16x16/nt_unknown.png b/dist/icons/solid-black/png/16x16/nt_unknown.png
new file mode 100755
index 0000000..d574fd6
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/nt_unknown.png differ
diff --git a/dist/icons/solid-black/png/16x16/partlycloudy.png b/dist/icons/solid-black/png/16x16/partlycloudy.png
new file mode 100755
index 0000000..dd3b103
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/partlycloudy.png differ
diff --git a/dist/icons/solid-black/png/16x16/partlysunny.png b/dist/icons/solid-black/png/16x16/partlysunny.png
new file mode 100755
index 0000000..f25d10f
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/partlysunny.png differ
diff --git a/dist/icons/solid-black/png/16x16/rain.png b/dist/icons/solid-black/png/16x16/rain.png
new file mode 100755
index 0000000..03c121b
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/rain.png differ
diff --git a/dist/icons/solid-black/png/16x16/sleet.png b/dist/icons/solid-black/png/16x16/sleet.png
new file mode 100755
index 0000000..8dc440e
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/sleet.png differ
diff --git a/dist/icons/solid-black/png/16x16/snow.png b/dist/icons/solid-black/png/16x16/snow.png
new file mode 100755
index 0000000..107c579
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/snow.png differ
diff --git a/dist/icons/solid-black/png/16x16/sunny.png b/dist/icons/solid-black/png/16x16/sunny.png
new file mode 100755
index 0000000..0dc5b8f
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/sunny.png differ
diff --git a/dist/icons/solid-black/png/16x16/tstorms.png b/dist/icons/solid-black/png/16x16/tstorms.png
new file mode 100755
index 0000000..dba988a
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/tstorms.png differ
diff --git a/dist/icons/solid-black/png/16x16/unknown.png b/dist/icons/solid-black/png/16x16/unknown.png
new file mode 100755
index 0000000..1bcb2b7
Binary files /dev/null and b/dist/icons/solid-black/png/16x16/unknown.png differ
diff --git a/dist/icons/solid-black/png/256x256/_nt_spritesheet.png b/dist/icons/solid-black/png/256x256/_nt_spritesheet.png
new file mode 100644
index 0000000..1371ff8
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/_nt_spritesheet.png differ
diff --git a/dist/icons/solid-black/png/256x256/_spritesheet.png b/dist/icons/solid-black/png/256x256/_spritesheet.png
new file mode 100755
index 0000000..c359b45
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/_spritesheet.png differ
diff --git a/dist/icons/solid-black/png/256x256/chanceflurries.png b/dist/icons/solid-black/png/256x256/chanceflurries.png
new file mode 100755
index 0000000..15242c6
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/chanceflurries.png differ
diff --git a/dist/icons/solid-black/png/256x256/chancerain.png b/dist/icons/solid-black/png/256x256/chancerain.png
new file mode 100755
index 0000000..e5464cc
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/chancerain.png differ
diff --git a/dist/icons/solid-black/png/256x256/chancesleet.png b/dist/icons/solid-black/png/256x256/chancesleet.png
new file mode 100755
index 0000000..0bc095b
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/chancesleet.png differ
diff --git a/dist/icons/solid-black/png/256x256/chancesnow.png b/dist/icons/solid-black/png/256x256/chancesnow.png
new file mode 100755
index 0000000..0ae9f20
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/chancesnow.png differ
diff --git a/dist/icons/solid-black/png/256x256/chancetstorms.png b/dist/icons/solid-black/png/256x256/chancetstorms.png
new file mode 100755
index 0000000..acc9865
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/chancetstorms.png differ
diff --git a/dist/icons/solid-black/png/256x256/clear.png b/dist/icons/solid-black/png/256x256/clear.png
new file mode 100755
index 0000000..380927e
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/clear.png differ
diff --git a/dist/icons/solid-black/png/256x256/cloudy.png b/dist/icons/solid-black/png/256x256/cloudy.png
new file mode 100755
index 0000000..2f61d6e
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/cloudy.png differ
diff --git a/dist/icons/solid-black/png/256x256/flurries.png b/dist/icons/solid-black/png/256x256/flurries.png
new file mode 100755
index 0000000..7d1918a
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/flurries.png differ
diff --git a/dist/icons/solid-black/png/256x256/fog.png b/dist/icons/solid-black/png/256x256/fog.png
new file mode 100755
index 0000000..d5d3ebf
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/fog.png differ
diff --git a/dist/icons/solid-black/png/256x256/hazy.png b/dist/icons/solid-black/png/256x256/hazy.png
new file mode 100755
index 0000000..703ac9e
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/hazy.png differ
diff --git a/dist/icons/solid-black/png/256x256/mostlycloudy.png b/dist/icons/solid-black/png/256x256/mostlycloudy.png
new file mode 100755
index 0000000..7031d97
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/mostlycloudy.png differ
diff --git a/dist/icons/solid-black/png/256x256/mostlysunny.png b/dist/icons/solid-black/png/256x256/mostlysunny.png
new file mode 100755
index 0000000..b6ef44b
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/mostlysunny.png differ
diff --git a/dist/icons/solid-black/png/256x256/nt_chanceflurries.png b/dist/icons/solid-black/png/256x256/nt_chanceflurries.png
new file mode 100755
index 0000000..ec2d4d0
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/nt_chanceflurries.png differ
diff --git a/dist/icons/solid-black/png/256x256/nt_chancerain.png b/dist/icons/solid-black/png/256x256/nt_chancerain.png
new file mode 100755
index 0000000..54c41c4
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/nt_chancerain.png differ
diff --git a/dist/icons/solid-black/png/256x256/nt_chancesleet.png b/dist/icons/solid-black/png/256x256/nt_chancesleet.png
new file mode 100755
index 0000000..bb72d0c
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/nt_chancesleet.png differ
diff --git a/dist/icons/solid-black/png/256x256/nt_chancesnow.png b/dist/icons/solid-black/png/256x256/nt_chancesnow.png
new file mode 100755
index 0000000..d9f1053
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/nt_chancesnow.png differ
diff --git a/dist/icons/solid-black/png/256x256/nt_chancetstorms.png b/dist/icons/solid-black/png/256x256/nt_chancetstorms.png
new file mode 100755
index 0000000..1d28fa8
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/nt_chancetstorms.png differ
diff --git a/dist/icons/solid-black/png/256x256/nt_clear.png b/dist/icons/solid-black/png/256x256/nt_clear.png
new file mode 100644
index 0000000..1972fc9
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/nt_clear.png differ
diff --git a/dist/icons/solid-black/png/256x256/nt_cloudy.png b/dist/icons/solid-black/png/256x256/nt_cloudy.png
new file mode 100755
index 0000000..bd91c89
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/nt_cloudy.png differ
diff --git a/dist/icons/solid-black/png/256x256/nt_flurries.png b/dist/icons/solid-black/png/256x256/nt_flurries.png
new file mode 100755
index 0000000..0d43181
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/nt_flurries.png differ
diff --git a/dist/icons/solid-black/png/256x256/nt_fog.png b/dist/icons/solid-black/png/256x256/nt_fog.png
new file mode 100755
index 0000000..fbc98e7
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/nt_fog.png differ
diff --git a/dist/icons/solid-black/png/256x256/nt_hazy.png b/dist/icons/solid-black/png/256x256/nt_hazy.png
new file mode 100755
index 0000000..17b7acd
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/nt_hazy.png differ
diff --git a/dist/icons/solid-black/png/256x256/nt_mostlycloudy.png b/dist/icons/solid-black/png/256x256/nt_mostlycloudy.png
new file mode 100644
index 0000000..97a4b84
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/nt_mostlycloudy.png differ
diff --git a/dist/icons/solid-black/png/256x256/nt_mostlysunny.png b/dist/icons/solid-black/png/256x256/nt_mostlysunny.png
new file mode 100644
index 0000000..19a5a99
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/nt_mostlysunny.png differ
diff --git a/dist/icons/solid-black/png/256x256/nt_partlycloudy.png b/dist/icons/solid-black/png/256x256/nt_partlycloudy.png
new file mode 100644
index 0000000..a8bd5ef
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/nt_partlycloudy.png differ
diff --git a/dist/icons/solid-black/png/256x256/nt_partlysunny.png b/dist/icons/solid-black/png/256x256/nt_partlysunny.png
new file mode 100644
index 0000000..38b7f3d
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/nt_partlysunny.png differ
diff --git a/dist/icons/solid-black/png/256x256/nt_rain.png b/dist/icons/solid-black/png/256x256/nt_rain.png
new file mode 100755
index 0000000..3066a19
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/nt_rain.png differ
diff --git a/dist/icons/solid-black/png/256x256/nt_sleet.png b/dist/icons/solid-black/png/256x256/nt_sleet.png
new file mode 100755
index 0000000..359062b
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/nt_sleet.png differ
diff --git a/dist/icons/solid-black/png/256x256/nt_snow.png b/dist/icons/solid-black/png/256x256/nt_snow.png
new file mode 100755
index 0000000..aed9929
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/nt_snow.png differ
diff --git a/dist/icons/solid-black/png/256x256/nt_sunny.png b/dist/icons/solid-black/png/256x256/nt_sunny.png
new file mode 100644
index 0000000..68777b4
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/nt_sunny.png differ
diff --git a/dist/icons/solid-black/png/256x256/nt_tstorms.png b/dist/icons/solid-black/png/256x256/nt_tstorms.png
new file mode 100755
index 0000000..16183c7
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/nt_tstorms.png differ
diff --git a/dist/icons/solid-black/png/256x256/nt_unknown.png b/dist/icons/solid-black/png/256x256/nt_unknown.png
new file mode 100755
index 0000000..f94f56e
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/nt_unknown.png differ
diff --git a/dist/icons/solid-black/png/256x256/partlycloudy.png b/dist/icons/solid-black/png/256x256/partlycloudy.png
new file mode 100755
index 0000000..c715bce
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/partlycloudy.png differ
diff --git a/dist/icons/solid-black/png/256x256/partlysunny.png b/dist/icons/solid-black/png/256x256/partlysunny.png
new file mode 100755
index 0000000..115ffec
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/partlysunny.png differ
diff --git a/dist/icons/solid-black/png/256x256/rain.png b/dist/icons/solid-black/png/256x256/rain.png
new file mode 100755
index 0000000..6900b65
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/rain.png differ
diff --git a/dist/icons/solid-black/png/256x256/sleet.png b/dist/icons/solid-black/png/256x256/sleet.png
new file mode 100755
index 0000000..c8f1d62
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/sleet.png differ
diff --git a/dist/icons/solid-black/png/256x256/snow.png b/dist/icons/solid-black/png/256x256/snow.png
new file mode 100755
index 0000000..3b27b0c
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/snow.png differ
diff --git a/dist/icons/solid-black/png/256x256/sunny.png b/dist/icons/solid-black/png/256x256/sunny.png
new file mode 100755
index 0000000..f5feabc
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/sunny.png differ
diff --git a/dist/icons/solid-black/png/256x256/tstorms.png b/dist/icons/solid-black/png/256x256/tstorms.png
new file mode 100755
index 0000000..74ff4d4
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/tstorms.png differ
diff --git a/dist/icons/solid-black/png/256x256/unknown.png b/dist/icons/solid-black/png/256x256/unknown.png
new file mode 100755
index 0000000..c6301ae
Binary files /dev/null and b/dist/icons/solid-black/png/256x256/unknown.png differ
diff --git a/dist/icons/solid-black/png/32x32/_nt_spritesheet.png b/dist/icons/solid-black/png/32x32/_nt_spritesheet.png
new file mode 100644
index 0000000..1f29ce0
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/_nt_spritesheet.png differ
diff --git a/dist/icons/solid-black/png/32x32/_spritesheet.png b/dist/icons/solid-black/png/32x32/_spritesheet.png
new file mode 100755
index 0000000..bb1a91a
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/_spritesheet.png differ
diff --git a/dist/icons/solid-black/png/32x32/chanceflurries.png b/dist/icons/solid-black/png/32x32/chanceflurries.png
new file mode 100755
index 0000000..32b8392
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/chanceflurries.png differ
diff --git a/dist/icons/solid-black/png/32x32/chancerain.png b/dist/icons/solid-black/png/32x32/chancerain.png
new file mode 100755
index 0000000..b656bbf
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/chancerain.png differ
diff --git a/dist/icons/solid-black/png/32x32/chancesleet.png b/dist/icons/solid-black/png/32x32/chancesleet.png
new file mode 100755
index 0000000..03a1f3d
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/chancesleet.png differ
diff --git a/dist/icons/solid-black/png/32x32/chancesnow.png b/dist/icons/solid-black/png/32x32/chancesnow.png
new file mode 100755
index 0000000..6f91ffc
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/chancesnow.png differ
diff --git a/dist/icons/solid-black/png/32x32/chancetstorms.png b/dist/icons/solid-black/png/32x32/chancetstorms.png
new file mode 100755
index 0000000..00e3503
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/chancetstorms.png differ
diff --git a/dist/icons/solid-black/png/32x32/clear.png b/dist/icons/solid-black/png/32x32/clear.png
new file mode 100755
index 0000000..83dbaa9
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/clear.png differ
diff --git a/dist/icons/solid-black/png/32x32/cloudy.png b/dist/icons/solid-black/png/32x32/cloudy.png
new file mode 100755
index 0000000..67b9317
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/cloudy.png differ
diff --git a/dist/icons/solid-black/png/32x32/flurries.png b/dist/icons/solid-black/png/32x32/flurries.png
new file mode 100755
index 0000000..4342805
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/flurries.png differ
diff --git a/dist/icons/solid-black/png/32x32/fog.png b/dist/icons/solid-black/png/32x32/fog.png
new file mode 100755
index 0000000..663d01e
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/fog.png differ
diff --git a/dist/icons/solid-black/png/32x32/hazy.png b/dist/icons/solid-black/png/32x32/hazy.png
new file mode 100755
index 0000000..a497a68
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/hazy.png differ
diff --git a/dist/icons/solid-black/png/32x32/mostlycloudy.png b/dist/icons/solid-black/png/32x32/mostlycloudy.png
new file mode 100755
index 0000000..5069add
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/mostlycloudy.png differ
diff --git a/dist/icons/solid-black/png/32x32/mostlysunny.png b/dist/icons/solid-black/png/32x32/mostlysunny.png
new file mode 100755
index 0000000..c170210
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/mostlysunny.png differ
diff --git a/dist/icons/solid-black/png/32x32/nt_chanceflurries.png b/dist/icons/solid-black/png/32x32/nt_chanceflurries.png
new file mode 100755
index 0000000..c04a9bf
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/nt_chanceflurries.png differ
diff --git a/dist/icons/solid-black/png/32x32/nt_chancerain.png b/dist/icons/solid-black/png/32x32/nt_chancerain.png
new file mode 100755
index 0000000..4d1220d
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/nt_chancerain.png differ
diff --git a/dist/icons/solid-black/png/32x32/nt_chancesleet.png b/dist/icons/solid-black/png/32x32/nt_chancesleet.png
new file mode 100755
index 0000000..1e52615
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/nt_chancesleet.png differ
diff --git a/dist/icons/solid-black/png/32x32/nt_chancesnow.png b/dist/icons/solid-black/png/32x32/nt_chancesnow.png
new file mode 100755
index 0000000..d601415
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/nt_chancesnow.png differ
diff --git a/dist/icons/solid-black/png/32x32/nt_chancetstorms.png b/dist/icons/solid-black/png/32x32/nt_chancetstorms.png
new file mode 100755
index 0000000..87f1c3f
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/nt_chancetstorms.png differ
diff --git a/dist/icons/solid-black/png/32x32/nt_clear.png b/dist/icons/solid-black/png/32x32/nt_clear.png
new file mode 100644
index 0000000..ecde292
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/nt_clear.png differ
diff --git a/dist/icons/solid-black/png/32x32/nt_cloudy.png b/dist/icons/solid-black/png/32x32/nt_cloudy.png
new file mode 100755
index 0000000..99adc76
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/nt_cloudy.png differ
diff --git a/dist/icons/solid-black/png/32x32/nt_flurries.png b/dist/icons/solid-black/png/32x32/nt_flurries.png
new file mode 100755
index 0000000..16686c8
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/nt_flurries.png differ
diff --git a/dist/icons/solid-black/png/32x32/nt_fog.png b/dist/icons/solid-black/png/32x32/nt_fog.png
new file mode 100755
index 0000000..405cbeb
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/nt_fog.png differ
diff --git a/dist/icons/solid-black/png/32x32/nt_hazy.png b/dist/icons/solid-black/png/32x32/nt_hazy.png
new file mode 100755
index 0000000..31103bf
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/nt_hazy.png differ
diff --git a/dist/icons/solid-black/png/32x32/nt_mostlycloudy.png b/dist/icons/solid-black/png/32x32/nt_mostlycloudy.png
new file mode 100644
index 0000000..df0eb9e
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/nt_mostlycloudy.png differ
diff --git a/dist/icons/solid-black/png/32x32/nt_mostlysunny.png b/dist/icons/solid-black/png/32x32/nt_mostlysunny.png
new file mode 100644
index 0000000..80b13a4
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/nt_mostlysunny.png differ
diff --git a/dist/icons/solid-black/png/32x32/nt_partlycloudy.png b/dist/icons/solid-black/png/32x32/nt_partlycloudy.png
new file mode 100644
index 0000000..acb690b
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/nt_partlycloudy.png differ
diff --git a/dist/icons/solid-black/png/32x32/nt_partlysunny.png b/dist/icons/solid-black/png/32x32/nt_partlysunny.png
new file mode 100644
index 0000000..a4eb0d2
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/nt_partlysunny.png differ
diff --git a/dist/icons/solid-black/png/32x32/nt_rain.png b/dist/icons/solid-black/png/32x32/nt_rain.png
new file mode 100755
index 0000000..6f02f23
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/nt_rain.png differ
diff --git a/dist/icons/solid-black/png/32x32/nt_sleet.png b/dist/icons/solid-black/png/32x32/nt_sleet.png
new file mode 100755
index 0000000..0984173
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/nt_sleet.png differ
diff --git a/dist/icons/solid-black/png/32x32/nt_snow.png b/dist/icons/solid-black/png/32x32/nt_snow.png
new file mode 100755
index 0000000..24941d4
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/nt_snow.png differ
diff --git a/dist/icons/solid-black/png/32x32/nt_sunny.png b/dist/icons/solid-black/png/32x32/nt_sunny.png
new file mode 100644
index 0000000..62494fb
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/nt_sunny.png differ
diff --git a/dist/icons/solid-black/png/32x32/nt_tstorms.png b/dist/icons/solid-black/png/32x32/nt_tstorms.png
new file mode 100755
index 0000000..bc70ca7
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/nt_tstorms.png differ
diff --git a/dist/icons/solid-black/png/32x32/nt_unknown.png b/dist/icons/solid-black/png/32x32/nt_unknown.png
new file mode 100755
index 0000000..880225e
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/nt_unknown.png differ
diff --git a/dist/icons/solid-black/png/32x32/partlycloudy.png b/dist/icons/solid-black/png/32x32/partlycloudy.png
new file mode 100755
index 0000000..966c752
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/partlycloudy.png differ
diff --git a/dist/icons/solid-black/png/32x32/partlysunny.png b/dist/icons/solid-black/png/32x32/partlysunny.png
new file mode 100755
index 0000000..9df6e7c
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/partlysunny.png differ
diff --git a/dist/icons/solid-black/png/32x32/rain.png b/dist/icons/solid-black/png/32x32/rain.png
new file mode 100755
index 0000000..0535620
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/rain.png differ
diff --git a/dist/icons/solid-black/png/32x32/sleet.png b/dist/icons/solid-black/png/32x32/sleet.png
new file mode 100755
index 0000000..392ebcd
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/sleet.png differ
diff --git a/dist/icons/solid-black/png/32x32/snow.png b/dist/icons/solid-black/png/32x32/snow.png
new file mode 100755
index 0000000..6f76262
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/snow.png differ
diff --git a/dist/icons/solid-black/png/32x32/sunny.png b/dist/icons/solid-black/png/32x32/sunny.png
new file mode 100755
index 0000000..94ca5dd
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/sunny.png differ
diff --git a/dist/icons/solid-black/png/32x32/tstorms.png b/dist/icons/solid-black/png/32x32/tstorms.png
new file mode 100755
index 0000000..db8cbb2
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/tstorms.png differ
diff --git a/dist/icons/solid-black/png/32x32/unknown.png b/dist/icons/solid-black/png/32x32/unknown.png
new file mode 100755
index 0000000..0ed1104
Binary files /dev/null and b/dist/icons/solid-black/png/32x32/unknown.png differ
diff --git a/dist/icons/solid-black/png/64x64/_nt_spritesheet.png b/dist/icons/solid-black/png/64x64/_nt_spritesheet.png
new file mode 100644
index 0000000..738cab0
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/_nt_spritesheet.png differ
diff --git a/dist/icons/solid-black/png/64x64/_spritesheet.png b/dist/icons/solid-black/png/64x64/_spritesheet.png
new file mode 100755
index 0000000..6cda6ac
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/_spritesheet.png differ
diff --git a/dist/icons/solid-black/png/64x64/chanceflurries.png b/dist/icons/solid-black/png/64x64/chanceflurries.png
new file mode 100755
index 0000000..eebd11c
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/chanceflurries.png differ
diff --git a/dist/icons/solid-black/png/64x64/chancerain.png b/dist/icons/solid-black/png/64x64/chancerain.png
new file mode 100755
index 0000000..a801ba8
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/chancerain.png differ
diff --git a/dist/icons/solid-black/png/64x64/chancesleet.png b/dist/icons/solid-black/png/64x64/chancesleet.png
new file mode 100755
index 0000000..f0f67b4
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/chancesleet.png differ
diff --git a/dist/icons/solid-black/png/64x64/chancesnow.png b/dist/icons/solid-black/png/64x64/chancesnow.png
new file mode 100755
index 0000000..954891e
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/chancesnow.png differ
diff --git a/dist/icons/solid-black/png/64x64/chancetstorms.png b/dist/icons/solid-black/png/64x64/chancetstorms.png
new file mode 100755
index 0000000..eb5cc97
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/chancetstorms.png differ
diff --git a/dist/icons/solid-black/png/64x64/clear.png b/dist/icons/solid-black/png/64x64/clear.png
new file mode 100755
index 0000000..d05e211
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/clear.png differ
diff --git a/dist/icons/solid-black/png/64x64/cloudy.png b/dist/icons/solid-black/png/64x64/cloudy.png
new file mode 100755
index 0000000..8d2bb30
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/cloudy.png differ
diff --git a/dist/icons/solid-black/png/64x64/flurries.png b/dist/icons/solid-black/png/64x64/flurries.png
new file mode 100755
index 0000000..961eaa3
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/flurries.png differ
diff --git a/dist/icons/solid-black/png/64x64/fog.png b/dist/icons/solid-black/png/64x64/fog.png
new file mode 100755
index 0000000..dc93c46
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/fog.png differ
diff --git a/dist/icons/solid-black/png/64x64/hazy.png b/dist/icons/solid-black/png/64x64/hazy.png
new file mode 100755
index 0000000..556ad43
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/hazy.png differ
diff --git a/dist/icons/solid-black/png/64x64/mostlycloudy.png b/dist/icons/solid-black/png/64x64/mostlycloudy.png
new file mode 100755
index 0000000..4f4742a
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/mostlycloudy.png differ
diff --git a/dist/icons/solid-black/png/64x64/mostlysunny.png b/dist/icons/solid-black/png/64x64/mostlysunny.png
new file mode 100755
index 0000000..f048fb8
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/mostlysunny.png differ
diff --git a/dist/icons/solid-black/png/64x64/nt_chanceflurries.png b/dist/icons/solid-black/png/64x64/nt_chanceflurries.png
new file mode 100755
index 0000000..0a72551
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/nt_chanceflurries.png differ
diff --git a/dist/icons/solid-black/png/64x64/nt_chancerain.png b/dist/icons/solid-black/png/64x64/nt_chancerain.png
new file mode 100755
index 0000000..d806f39
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/nt_chancerain.png differ
diff --git a/dist/icons/solid-black/png/64x64/nt_chancesleet.png b/dist/icons/solid-black/png/64x64/nt_chancesleet.png
new file mode 100755
index 0000000..d738dfe
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/nt_chancesleet.png differ
diff --git a/dist/icons/solid-black/png/64x64/nt_chancesnow.png b/dist/icons/solid-black/png/64x64/nt_chancesnow.png
new file mode 100755
index 0000000..e32f2e1
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/nt_chancesnow.png differ
diff --git a/dist/icons/solid-black/png/64x64/nt_chancetstorms.png b/dist/icons/solid-black/png/64x64/nt_chancetstorms.png
new file mode 100755
index 0000000..f949530
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/nt_chancetstorms.png differ
diff --git a/dist/icons/solid-black/png/64x64/nt_clear.png b/dist/icons/solid-black/png/64x64/nt_clear.png
new file mode 100644
index 0000000..528f7ae
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/nt_clear.png differ
diff --git a/dist/icons/solid-black/png/64x64/nt_cloudy.png b/dist/icons/solid-black/png/64x64/nt_cloudy.png
new file mode 100755
index 0000000..9d438a6
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/nt_cloudy.png differ
diff --git a/dist/icons/solid-black/png/64x64/nt_flurries.png b/dist/icons/solid-black/png/64x64/nt_flurries.png
new file mode 100755
index 0000000..056e86d
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/nt_flurries.png differ
diff --git a/dist/icons/solid-black/png/64x64/nt_fog.png b/dist/icons/solid-black/png/64x64/nt_fog.png
new file mode 100755
index 0000000..7d29a1e
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/nt_fog.png differ
diff --git a/dist/icons/solid-black/png/64x64/nt_hazy.png b/dist/icons/solid-black/png/64x64/nt_hazy.png
new file mode 100755
index 0000000..174e2b1
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/nt_hazy.png differ
diff --git a/dist/icons/solid-black/png/64x64/nt_mostlycloudy.png b/dist/icons/solid-black/png/64x64/nt_mostlycloudy.png
new file mode 100644
index 0000000..49ce54a
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/nt_mostlycloudy.png differ
diff --git a/dist/icons/solid-black/png/64x64/nt_mostlysunny.png b/dist/icons/solid-black/png/64x64/nt_mostlysunny.png
new file mode 100644
index 0000000..c177ffe
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/nt_mostlysunny.png differ
diff --git a/dist/icons/solid-black/png/64x64/nt_partlycloudy.png b/dist/icons/solid-black/png/64x64/nt_partlycloudy.png
new file mode 100644
index 0000000..42121d2
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/nt_partlycloudy.png differ
diff --git a/dist/icons/solid-black/png/64x64/nt_partlysunny.png b/dist/icons/solid-black/png/64x64/nt_partlysunny.png
new file mode 100644
index 0000000..854599c
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/nt_partlysunny.png differ
diff --git a/dist/icons/solid-black/png/64x64/nt_rain.png b/dist/icons/solid-black/png/64x64/nt_rain.png
new file mode 100755
index 0000000..847af20
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/nt_rain.png differ
diff --git a/dist/icons/solid-black/png/64x64/nt_sleet.png b/dist/icons/solid-black/png/64x64/nt_sleet.png
new file mode 100755
index 0000000..61cfd29
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/nt_sleet.png differ
diff --git a/dist/icons/solid-black/png/64x64/nt_snow.png b/dist/icons/solid-black/png/64x64/nt_snow.png
new file mode 100755
index 0000000..3c1a71a
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/nt_snow.png differ
diff --git a/dist/icons/solid-black/png/64x64/nt_sunny.png b/dist/icons/solid-black/png/64x64/nt_sunny.png
new file mode 100644
index 0000000..36d3e6a
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/nt_sunny.png differ
diff --git a/dist/icons/solid-black/png/64x64/nt_tstorms.png b/dist/icons/solid-black/png/64x64/nt_tstorms.png
new file mode 100755
index 0000000..2385f38
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/nt_tstorms.png differ
diff --git a/dist/icons/solid-black/png/64x64/nt_unknown.png b/dist/icons/solid-black/png/64x64/nt_unknown.png
new file mode 100755
index 0000000..ad7ea14
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/nt_unknown.png differ
diff --git a/dist/icons/solid-black/png/64x64/partlycloudy.png b/dist/icons/solid-black/png/64x64/partlycloudy.png
new file mode 100755
index 0000000..aec452e
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/partlycloudy.png differ
diff --git a/dist/icons/solid-black/png/64x64/partlysunny.png b/dist/icons/solid-black/png/64x64/partlysunny.png
new file mode 100755
index 0000000..9ec5db8
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/partlysunny.png differ
diff --git a/dist/icons/solid-black/png/64x64/rain.png b/dist/icons/solid-black/png/64x64/rain.png
new file mode 100755
index 0000000..63f9e6d
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/rain.png differ
diff --git a/dist/icons/solid-black/png/64x64/sleet.png b/dist/icons/solid-black/png/64x64/sleet.png
new file mode 100755
index 0000000..6e0737f
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/sleet.png differ
diff --git a/dist/icons/solid-black/png/64x64/snow.png b/dist/icons/solid-black/png/64x64/snow.png
new file mode 100755
index 0000000..f7219e1
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/snow.png differ
diff --git a/dist/icons/solid-black/png/64x64/sunny.png b/dist/icons/solid-black/png/64x64/sunny.png
new file mode 100755
index 0000000..992090d
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/sunny.png differ
diff --git a/dist/icons/solid-black/png/64x64/tstorms.png b/dist/icons/solid-black/png/64x64/tstorms.png
new file mode 100755
index 0000000..ca3b1cc
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/tstorms.png differ
diff --git a/dist/icons/solid-black/png/64x64/unknown.png b/dist/icons/solid-black/png/64x64/unknown.png
new file mode 100755
index 0000000..1b56596
Binary files /dev/null and b/dist/icons/solid-black/png/64x64/unknown.png differ
diff --git a/dist/icons/solid-black/svg/chanceflurries.svg b/dist/icons/solid-black/svg/chanceflurries.svg
new file mode 100644
index 0000000..b9d1be6
--- /dev/null
+++ b/dist/icons/solid-black/svg/chanceflurries.svg
@@ -0,0 +1,15 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/chancerain.svg b/dist/icons/solid-black/svg/chancerain.svg
new file mode 100644
index 0000000..e561c6b
--- /dev/null
+++ b/dist/icons/solid-black/svg/chancerain.svg
@@ -0,0 +1,18 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/chancesleet.svg b/dist/icons/solid-black/svg/chancesleet.svg
new file mode 100644
index 0000000..1ef8569
--- /dev/null
+++ b/dist/icons/solid-black/svg/chancesleet.svg
@@ -0,0 +1,14 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/chancesnow.svg b/dist/icons/solid-black/svg/chancesnow.svg
new file mode 100644
index 0000000..9876cbb
--- /dev/null
+++ b/dist/icons/solid-black/svg/chancesnow.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/chancetstorms.svg b/dist/icons/solid-black/svg/chancetstorms.svg
new file mode 100644
index 0000000..89d39ee
--- /dev/null
+++ b/dist/icons/solid-black/svg/chancetstorms.svg
@@ -0,0 +1,12 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/clear.svg b/dist/icons/solid-black/svg/clear.svg
new file mode 100644
index 0000000..77aae5b
--- /dev/null
+++ b/dist/icons/solid-black/svg/clear.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/cloudy.svg b/dist/icons/solid-black/svg/cloudy.svg
new file mode 100644
index 0000000..41a2dd7
--- /dev/null
+++ b/dist/icons/solid-black/svg/cloudy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/solid-black/svg/flurries.svg b/dist/icons/solid-black/svg/flurries.svg
new file mode 100644
index 0000000..86c60a0
--- /dev/null
+++ b/dist/icons/solid-black/svg/flurries.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/fog.svg b/dist/icons/solid-black/svg/fog.svg
new file mode 100644
index 0000000..d5ffdd9
--- /dev/null
+++ b/dist/icons/solid-black/svg/fog.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/solid-black/svg/hazy.svg b/dist/icons/solid-black/svg/hazy.svg
new file mode 100644
index 0000000..a2de0c2
--- /dev/null
+++ b/dist/icons/solid-black/svg/hazy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/solid-black/svg/mostlycloudy.svg b/dist/icons/solid-black/svg/mostlycloudy.svg
new file mode 100644
index 0000000..8a459dc
--- /dev/null
+++ b/dist/icons/solid-black/svg/mostlycloudy.svg
@@ -0,0 +1,19 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/mostlysunny.svg b/dist/icons/solid-black/svg/mostlysunny.svg
new file mode 100644
index 0000000..92d80df
--- /dev/null
+++ b/dist/icons/solid-black/svg/mostlysunny.svg
@@ -0,0 +1,22 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/nt_chanceflurries.svg b/dist/icons/solid-black/svg/nt_chanceflurries.svg
new file mode 100644
index 0000000..b9d1be6
--- /dev/null
+++ b/dist/icons/solid-black/svg/nt_chanceflurries.svg
@@ -0,0 +1,15 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/nt_chancerain.svg b/dist/icons/solid-black/svg/nt_chancerain.svg
new file mode 100644
index 0000000..e561c6b
--- /dev/null
+++ b/dist/icons/solid-black/svg/nt_chancerain.svg
@@ -0,0 +1,18 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/nt_chancesleet.svg b/dist/icons/solid-black/svg/nt_chancesleet.svg
new file mode 100644
index 0000000..1ef8569
--- /dev/null
+++ b/dist/icons/solid-black/svg/nt_chancesleet.svg
@@ -0,0 +1,14 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/nt_chancesnow.svg b/dist/icons/solid-black/svg/nt_chancesnow.svg
new file mode 100644
index 0000000..9876cbb
--- /dev/null
+++ b/dist/icons/solid-black/svg/nt_chancesnow.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/nt_chancetstorms.svg b/dist/icons/solid-black/svg/nt_chancetstorms.svg
new file mode 100644
index 0000000..89d39ee
--- /dev/null
+++ b/dist/icons/solid-black/svg/nt_chancetstorms.svg
@@ -0,0 +1,12 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/nt_clear.svg b/dist/icons/solid-black/svg/nt_clear.svg
new file mode 100644
index 0000000..3cd27ea
--- /dev/null
+++ b/dist/icons/solid-black/svg/nt_clear.svg
@@ -0,0 +1,8 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/nt_cloudy.svg b/dist/icons/solid-black/svg/nt_cloudy.svg
new file mode 100644
index 0000000..41a2dd7
--- /dev/null
+++ b/dist/icons/solid-black/svg/nt_cloudy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/solid-black/svg/nt_flurries.svg b/dist/icons/solid-black/svg/nt_flurries.svg
new file mode 100644
index 0000000..86c60a0
--- /dev/null
+++ b/dist/icons/solid-black/svg/nt_flurries.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/nt_fog.svg b/dist/icons/solid-black/svg/nt_fog.svg
new file mode 100644
index 0000000..d5ffdd9
--- /dev/null
+++ b/dist/icons/solid-black/svg/nt_fog.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/solid-black/svg/nt_hazy.svg b/dist/icons/solid-black/svg/nt_hazy.svg
new file mode 100644
index 0000000..a2de0c2
--- /dev/null
+++ b/dist/icons/solid-black/svg/nt_hazy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/solid-black/svg/nt_mostlycloudy.svg b/dist/icons/solid-black/svg/nt_mostlycloudy.svg
new file mode 100644
index 0000000..9c87f1e
--- /dev/null
+++ b/dist/icons/solid-black/svg/nt_mostlycloudy.svg
@@ -0,0 +1,14 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/nt_mostlysunny.svg b/dist/icons/solid-black/svg/nt_mostlysunny.svg
new file mode 100644
index 0000000..4f497c6
--- /dev/null
+++ b/dist/icons/solid-black/svg/nt_mostlysunny.svg
@@ -0,0 +1,14 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/nt_partlycloudy.svg b/dist/icons/solid-black/svg/nt_partlycloudy.svg
new file mode 100644
index 0000000..4f497c6
--- /dev/null
+++ b/dist/icons/solid-black/svg/nt_partlycloudy.svg
@@ -0,0 +1,14 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/nt_partlysunny.svg b/dist/icons/solid-black/svg/nt_partlysunny.svg
new file mode 100644
index 0000000..9c87f1e
--- /dev/null
+++ b/dist/icons/solid-black/svg/nt_partlysunny.svg
@@ -0,0 +1,14 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/nt_rain.svg b/dist/icons/solid-black/svg/nt_rain.svg
new file mode 100644
index 0000000..ee36fc8
--- /dev/null
+++ b/dist/icons/solid-black/svg/nt_rain.svg
@@ -0,0 +1,14 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/nt_sleet.svg b/dist/icons/solid-black/svg/nt_sleet.svg
new file mode 100644
index 0000000..ed4d830
--- /dev/null
+++ b/dist/icons/solid-black/svg/nt_sleet.svg
@@ -0,0 +1,15 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/nt_snow.svg b/dist/icons/solid-black/svg/nt_snow.svg
new file mode 100644
index 0000000..5dc91d0
--- /dev/null
+++ b/dist/icons/solid-black/svg/nt_snow.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/nt_sunny.svg b/dist/icons/solid-black/svg/nt_sunny.svg
new file mode 100644
index 0000000..3cd27ea
--- /dev/null
+++ b/dist/icons/solid-black/svg/nt_sunny.svg
@@ -0,0 +1,8 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/nt_tstorms.svg b/dist/icons/solid-black/svg/nt_tstorms.svg
new file mode 100644
index 0000000..c17fac6
--- /dev/null
+++ b/dist/icons/solid-black/svg/nt_tstorms.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/nt_unknown.svg b/dist/icons/solid-black/svg/nt_unknown.svg
new file mode 100644
index 0000000..e1231d6
--- /dev/null
+++ b/dist/icons/solid-black/svg/nt_unknown.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/solid-black/svg/partlycloudy.svg b/dist/icons/solid-black/svg/partlycloudy.svg
new file mode 100644
index 0000000..9b3b2dd
--- /dev/null
+++ b/dist/icons/solid-black/svg/partlycloudy.svg
@@ -0,0 +1,22 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/partlysunny.svg b/dist/icons/solid-black/svg/partlysunny.svg
new file mode 100644
index 0000000..e458d3c
--- /dev/null
+++ b/dist/icons/solid-black/svg/partlysunny.svg
@@ -0,0 +1,19 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/rain.svg b/dist/icons/solid-black/svg/rain.svg
new file mode 100644
index 0000000..ee36fc8
--- /dev/null
+++ b/dist/icons/solid-black/svg/rain.svg
@@ -0,0 +1,14 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/sleet.svg b/dist/icons/solid-black/svg/sleet.svg
new file mode 100644
index 0000000..ed4d830
--- /dev/null
+++ b/dist/icons/solid-black/svg/sleet.svg
@@ -0,0 +1,15 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/snow.svg b/dist/icons/solid-black/svg/snow.svg
new file mode 100644
index 0000000..5dc91d0
--- /dev/null
+++ b/dist/icons/solid-black/svg/snow.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/sunny.svg b/dist/icons/solid-black/svg/sunny.svg
new file mode 100644
index 0000000..71db92b
--- /dev/null
+++ b/dist/icons/solid-black/svg/sunny.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/tstorms.svg b/dist/icons/solid-black/svg/tstorms.svg
new file mode 100644
index 0000000..c17fac6
--- /dev/null
+++ b/dist/icons/solid-black/svg/tstorms.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/dist/icons/solid-black/svg/unknown.svg b/dist/icons/solid-black/svg/unknown.svg
new file mode 100644
index 0000000..e1231d6
--- /dev/null
+++ b/dist/icons/solid-black/svg/unknown.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/solid-white/icon-preview-nt.png b/dist/icons/solid-white/icon-preview-nt.png
new file mode 100644
index 0000000..deadd3e
Binary files /dev/null and b/dist/icons/solid-white/icon-preview-nt.png differ
diff --git a/dist/icons/solid-white/icon-preview.png b/dist/icons/solid-white/icon-preview.png
new file mode 100644
index 0000000..bd01380
Binary files /dev/null and b/dist/icons/solid-white/icon-preview.png differ
diff --git a/dist/icons/solid-white/png/128x128/_nt_spritesheet.png b/dist/icons/solid-white/png/128x128/_nt_spritesheet.png
new file mode 100644
index 0000000..8455d29
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/_nt_spritesheet.png differ
diff --git a/dist/icons/solid-white/png/128x128/_spritesheet.png b/dist/icons/solid-white/png/128x128/_spritesheet.png
new file mode 100755
index 0000000..4a1ad4a
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/_spritesheet.png differ
diff --git a/dist/icons/solid-white/png/128x128/chanceflurries.png b/dist/icons/solid-white/png/128x128/chanceflurries.png
new file mode 100755
index 0000000..304a48e
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/chanceflurries.png differ
diff --git a/dist/icons/solid-white/png/128x128/chancerain.png b/dist/icons/solid-white/png/128x128/chancerain.png
new file mode 100755
index 0000000..38b5474
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/chancerain.png differ
diff --git a/dist/icons/solid-white/png/128x128/chancesleet.png b/dist/icons/solid-white/png/128x128/chancesleet.png
new file mode 100755
index 0000000..6c1767f
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/chancesleet.png differ
diff --git a/dist/icons/solid-white/png/128x128/chancesnow.png b/dist/icons/solid-white/png/128x128/chancesnow.png
new file mode 100755
index 0000000..b7547bf
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/chancesnow.png differ
diff --git a/dist/icons/solid-white/png/128x128/chancetstorms.png b/dist/icons/solid-white/png/128x128/chancetstorms.png
new file mode 100755
index 0000000..9206012
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/chancetstorms.png differ
diff --git a/dist/icons/solid-white/png/128x128/clear.png b/dist/icons/solid-white/png/128x128/clear.png
new file mode 100755
index 0000000..df7931e
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/clear.png differ
diff --git a/dist/icons/solid-white/png/128x128/cloudy.png b/dist/icons/solid-white/png/128x128/cloudy.png
new file mode 100755
index 0000000..6543a2f
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/cloudy.png differ
diff --git a/dist/icons/solid-white/png/128x128/flurries.png b/dist/icons/solid-white/png/128x128/flurries.png
new file mode 100755
index 0000000..8f52bc0
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/flurries.png differ
diff --git a/dist/icons/solid-white/png/128x128/fog.png b/dist/icons/solid-white/png/128x128/fog.png
new file mode 100755
index 0000000..a083b4b
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/fog.png differ
diff --git a/dist/icons/solid-white/png/128x128/hazy.png b/dist/icons/solid-white/png/128x128/hazy.png
new file mode 100755
index 0000000..535d905
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/hazy.png differ
diff --git a/dist/icons/solid-white/png/128x128/mostlycloudy.png b/dist/icons/solid-white/png/128x128/mostlycloudy.png
new file mode 100755
index 0000000..ea1e55e
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/mostlycloudy.png differ
diff --git a/dist/icons/solid-white/png/128x128/mostlysunny.png b/dist/icons/solid-white/png/128x128/mostlysunny.png
new file mode 100755
index 0000000..6b1e793
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/mostlysunny.png differ
diff --git a/dist/icons/solid-white/png/128x128/nt_chanceflurries.png b/dist/icons/solid-white/png/128x128/nt_chanceflurries.png
new file mode 100755
index 0000000..94f0cf1
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/nt_chanceflurries.png differ
diff --git a/dist/icons/solid-white/png/128x128/nt_chancerain.png b/dist/icons/solid-white/png/128x128/nt_chancerain.png
new file mode 100755
index 0000000..410c8b8
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/nt_chancerain.png differ
diff --git a/dist/icons/solid-white/png/128x128/nt_chancesleet.png b/dist/icons/solid-white/png/128x128/nt_chancesleet.png
new file mode 100755
index 0000000..ec5f509
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/nt_chancesleet.png differ
diff --git a/dist/icons/solid-white/png/128x128/nt_chancesnow.png b/dist/icons/solid-white/png/128x128/nt_chancesnow.png
new file mode 100755
index 0000000..228339c
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/nt_chancesnow.png differ
diff --git a/dist/icons/solid-white/png/128x128/nt_chancetstorms.png b/dist/icons/solid-white/png/128x128/nt_chancetstorms.png
new file mode 100755
index 0000000..9b1cfa8
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/nt_chancetstorms.png differ
diff --git a/dist/icons/solid-white/png/128x128/nt_clear.png b/dist/icons/solid-white/png/128x128/nt_clear.png
new file mode 100644
index 0000000..f568f00
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/nt_clear.png differ
diff --git a/dist/icons/solid-white/png/128x128/nt_cloudy.png b/dist/icons/solid-white/png/128x128/nt_cloudy.png
new file mode 100755
index 0000000..0e4857d
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/nt_cloudy.png differ
diff --git a/dist/icons/solid-white/png/128x128/nt_flurries.png b/dist/icons/solid-white/png/128x128/nt_flurries.png
new file mode 100755
index 0000000..e44b49d
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/nt_flurries.png differ
diff --git a/dist/icons/solid-white/png/128x128/nt_fog.png b/dist/icons/solid-white/png/128x128/nt_fog.png
new file mode 100755
index 0000000..4822664
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/nt_fog.png differ
diff --git a/dist/icons/solid-white/png/128x128/nt_hazy.png b/dist/icons/solid-white/png/128x128/nt_hazy.png
new file mode 100755
index 0000000..b350b99
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/nt_hazy.png differ
diff --git a/dist/icons/solid-white/png/128x128/nt_mostlycloudy.png b/dist/icons/solid-white/png/128x128/nt_mostlycloudy.png
new file mode 100644
index 0000000..90d090f
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/nt_mostlycloudy.png differ
diff --git a/dist/icons/solid-white/png/128x128/nt_mostlysunny.png b/dist/icons/solid-white/png/128x128/nt_mostlysunny.png
new file mode 100644
index 0000000..847c473
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/nt_mostlysunny.png differ
diff --git a/dist/icons/solid-white/png/128x128/nt_partlycloudy.png b/dist/icons/solid-white/png/128x128/nt_partlycloudy.png
new file mode 100644
index 0000000..6531100
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/nt_partlycloudy.png differ
diff --git a/dist/icons/solid-white/png/128x128/nt_partlysunny.png b/dist/icons/solid-white/png/128x128/nt_partlysunny.png
new file mode 100644
index 0000000..58ab39c
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/nt_partlysunny.png differ
diff --git a/dist/icons/solid-white/png/128x128/nt_rain.png b/dist/icons/solid-white/png/128x128/nt_rain.png
new file mode 100755
index 0000000..fe4cd59
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/nt_rain.png differ
diff --git a/dist/icons/solid-white/png/128x128/nt_sleet.png b/dist/icons/solid-white/png/128x128/nt_sleet.png
new file mode 100755
index 0000000..9877d7a
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/nt_sleet.png differ
diff --git a/dist/icons/solid-white/png/128x128/nt_snow.png b/dist/icons/solid-white/png/128x128/nt_snow.png
new file mode 100755
index 0000000..7bd9872
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/nt_snow.png differ
diff --git a/dist/icons/solid-white/png/128x128/nt_sunny.png b/dist/icons/solid-white/png/128x128/nt_sunny.png
new file mode 100644
index 0000000..ffe619d
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/nt_sunny.png differ
diff --git a/dist/icons/solid-white/png/128x128/nt_tstorms.png b/dist/icons/solid-white/png/128x128/nt_tstorms.png
new file mode 100755
index 0000000..c1fb7de
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/nt_tstorms.png differ
diff --git a/dist/icons/solid-white/png/128x128/nt_unknown.png b/dist/icons/solid-white/png/128x128/nt_unknown.png
new file mode 100755
index 0000000..72f0de1
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/nt_unknown.png differ
diff --git a/dist/icons/solid-white/png/128x128/partlycloudy.png b/dist/icons/solid-white/png/128x128/partlycloudy.png
new file mode 100755
index 0000000..6116332
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/partlycloudy.png differ
diff --git a/dist/icons/solid-white/png/128x128/partlysunny.png b/dist/icons/solid-white/png/128x128/partlysunny.png
new file mode 100755
index 0000000..1bd3616
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/partlysunny.png differ
diff --git a/dist/icons/solid-white/png/128x128/rain.png b/dist/icons/solid-white/png/128x128/rain.png
new file mode 100755
index 0000000..1dc85c4
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/rain.png differ
diff --git a/dist/icons/solid-white/png/128x128/sleet.png b/dist/icons/solid-white/png/128x128/sleet.png
new file mode 100755
index 0000000..ef6aae0
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/sleet.png differ
diff --git a/dist/icons/solid-white/png/128x128/snow.png b/dist/icons/solid-white/png/128x128/snow.png
new file mode 100755
index 0000000..ac84189
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/snow.png differ
diff --git a/dist/icons/solid-white/png/128x128/sunny.png b/dist/icons/solid-white/png/128x128/sunny.png
new file mode 100755
index 0000000..2bc3bbc
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/sunny.png differ
diff --git a/dist/icons/solid-white/png/128x128/tstorms.png b/dist/icons/solid-white/png/128x128/tstorms.png
new file mode 100755
index 0000000..29d51e1
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/tstorms.png differ
diff --git a/dist/icons/solid-white/png/128x128/unknown.png b/dist/icons/solid-white/png/128x128/unknown.png
new file mode 100755
index 0000000..092a133
Binary files /dev/null and b/dist/icons/solid-white/png/128x128/unknown.png differ
diff --git a/dist/icons/solid-white/png/16x16/_nt_spritesheet.png b/dist/icons/solid-white/png/16x16/_nt_spritesheet.png
new file mode 100644
index 0000000..15db1c8
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/_nt_spritesheet.png differ
diff --git a/dist/icons/solid-white/png/16x16/_spritesheet.png b/dist/icons/solid-white/png/16x16/_spritesheet.png
new file mode 100755
index 0000000..7f9d1c5
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/_spritesheet.png differ
diff --git a/dist/icons/solid-white/png/16x16/chanceflurries.png b/dist/icons/solid-white/png/16x16/chanceflurries.png
new file mode 100755
index 0000000..afbecfd
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/chanceflurries.png differ
diff --git a/dist/icons/solid-white/png/16x16/chancerain.png b/dist/icons/solid-white/png/16x16/chancerain.png
new file mode 100755
index 0000000..8e7aea0
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/chancerain.png differ
diff --git a/dist/icons/solid-white/png/16x16/chancesleet.png b/dist/icons/solid-white/png/16x16/chancesleet.png
new file mode 100755
index 0000000..326fd15
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/chancesleet.png differ
diff --git a/dist/icons/solid-white/png/16x16/chancesnow.png b/dist/icons/solid-white/png/16x16/chancesnow.png
new file mode 100755
index 0000000..efa575d
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/chancesnow.png differ
diff --git a/dist/icons/solid-white/png/16x16/chancetstorms.png b/dist/icons/solid-white/png/16x16/chancetstorms.png
new file mode 100755
index 0000000..f8db1df
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/chancetstorms.png differ
diff --git a/dist/icons/solid-white/png/16x16/clear.png b/dist/icons/solid-white/png/16x16/clear.png
new file mode 100755
index 0000000..29981b4
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/clear.png differ
diff --git a/dist/icons/solid-white/png/16x16/cloudy.png b/dist/icons/solid-white/png/16x16/cloudy.png
new file mode 100755
index 0000000..0a1b01c
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/cloudy.png differ
diff --git a/dist/icons/solid-white/png/16x16/flurries.png b/dist/icons/solid-white/png/16x16/flurries.png
new file mode 100755
index 0000000..2e2a048
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/flurries.png differ
diff --git a/dist/icons/solid-white/png/16x16/fog.png b/dist/icons/solid-white/png/16x16/fog.png
new file mode 100755
index 0000000..da7b6f7
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/fog.png differ
diff --git a/dist/icons/solid-white/png/16x16/hazy.png b/dist/icons/solid-white/png/16x16/hazy.png
new file mode 100755
index 0000000..f7d91eb
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/hazy.png differ
diff --git a/dist/icons/solid-white/png/16x16/mostlycloudy.png b/dist/icons/solid-white/png/16x16/mostlycloudy.png
new file mode 100755
index 0000000..275ed44
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/mostlycloudy.png differ
diff --git a/dist/icons/solid-white/png/16x16/mostlysunny.png b/dist/icons/solid-white/png/16x16/mostlysunny.png
new file mode 100755
index 0000000..fb5fbf4
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/mostlysunny.png differ
diff --git a/dist/icons/solid-white/png/16x16/nt_chanceflurries.png b/dist/icons/solid-white/png/16x16/nt_chanceflurries.png
new file mode 100755
index 0000000..b1a5580
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/nt_chanceflurries.png differ
diff --git a/dist/icons/solid-white/png/16x16/nt_chancerain.png b/dist/icons/solid-white/png/16x16/nt_chancerain.png
new file mode 100755
index 0000000..7311e92
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/nt_chancerain.png differ
diff --git a/dist/icons/solid-white/png/16x16/nt_chancesleet.png b/dist/icons/solid-white/png/16x16/nt_chancesleet.png
new file mode 100755
index 0000000..1000e65
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/nt_chancesleet.png differ
diff --git a/dist/icons/solid-white/png/16x16/nt_chancesnow.png b/dist/icons/solid-white/png/16x16/nt_chancesnow.png
new file mode 100755
index 0000000..fed0f1a
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/nt_chancesnow.png differ
diff --git a/dist/icons/solid-white/png/16x16/nt_chancetstorms.png b/dist/icons/solid-white/png/16x16/nt_chancetstorms.png
new file mode 100755
index 0000000..0f5e4a2
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/nt_chancetstorms.png differ
diff --git a/dist/icons/solid-white/png/16x16/nt_clear.png b/dist/icons/solid-white/png/16x16/nt_clear.png
new file mode 100644
index 0000000..c2ca35c
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/nt_clear.png differ
diff --git a/dist/icons/solid-white/png/16x16/nt_cloudy.png b/dist/icons/solid-white/png/16x16/nt_cloudy.png
new file mode 100755
index 0000000..111e05e
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/nt_cloudy.png differ
diff --git a/dist/icons/solid-white/png/16x16/nt_flurries.png b/dist/icons/solid-white/png/16x16/nt_flurries.png
new file mode 100755
index 0000000..09aa1cd
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/nt_flurries.png differ
diff --git a/dist/icons/solid-white/png/16x16/nt_fog.png b/dist/icons/solid-white/png/16x16/nt_fog.png
new file mode 100755
index 0000000..0ab3c4b
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/nt_fog.png differ
diff --git a/dist/icons/solid-white/png/16x16/nt_hazy.png b/dist/icons/solid-white/png/16x16/nt_hazy.png
new file mode 100755
index 0000000..b830479
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/nt_hazy.png differ
diff --git a/dist/icons/solid-white/png/16x16/nt_mostlycloudy.png b/dist/icons/solid-white/png/16x16/nt_mostlycloudy.png
new file mode 100644
index 0000000..d8c2930
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/nt_mostlycloudy.png differ
diff --git a/dist/icons/solid-white/png/16x16/nt_mostlysunny.png b/dist/icons/solid-white/png/16x16/nt_mostlysunny.png
new file mode 100644
index 0000000..a41c1aa
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/nt_mostlysunny.png differ
diff --git a/dist/icons/solid-white/png/16x16/nt_partlycloudy.png b/dist/icons/solid-white/png/16x16/nt_partlycloudy.png
new file mode 100644
index 0000000..4804437
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/nt_partlycloudy.png differ
diff --git a/dist/icons/solid-white/png/16x16/nt_partlysunny.png b/dist/icons/solid-white/png/16x16/nt_partlysunny.png
new file mode 100644
index 0000000..906ab93
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/nt_partlysunny.png differ
diff --git a/dist/icons/solid-white/png/16x16/nt_rain.png b/dist/icons/solid-white/png/16x16/nt_rain.png
new file mode 100755
index 0000000..5905973
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/nt_rain.png differ
diff --git a/dist/icons/solid-white/png/16x16/nt_sleet.png b/dist/icons/solid-white/png/16x16/nt_sleet.png
new file mode 100755
index 0000000..1a5fd91
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/nt_sleet.png differ
diff --git a/dist/icons/solid-white/png/16x16/nt_snow.png b/dist/icons/solid-white/png/16x16/nt_snow.png
new file mode 100755
index 0000000..d186e2e
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/nt_snow.png differ
diff --git a/dist/icons/solid-white/png/16x16/nt_sunny.png b/dist/icons/solid-white/png/16x16/nt_sunny.png
new file mode 100644
index 0000000..cd2289d
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/nt_sunny.png differ
diff --git a/dist/icons/solid-white/png/16x16/nt_tstorms.png b/dist/icons/solid-white/png/16x16/nt_tstorms.png
new file mode 100755
index 0000000..a6308b3
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/nt_tstorms.png differ
diff --git a/dist/icons/solid-white/png/16x16/nt_unknown.png b/dist/icons/solid-white/png/16x16/nt_unknown.png
new file mode 100755
index 0000000..3f5eb1f
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/nt_unknown.png differ
diff --git a/dist/icons/solid-white/png/16x16/partlycloudy.png b/dist/icons/solid-white/png/16x16/partlycloudy.png
new file mode 100755
index 0000000..8bda6bd
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/partlycloudy.png differ
diff --git a/dist/icons/solid-white/png/16x16/partlysunny.png b/dist/icons/solid-white/png/16x16/partlysunny.png
new file mode 100755
index 0000000..2f6b7e6
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/partlysunny.png differ
diff --git a/dist/icons/solid-white/png/16x16/rain.png b/dist/icons/solid-white/png/16x16/rain.png
new file mode 100755
index 0000000..ffe7dee
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/rain.png differ
diff --git a/dist/icons/solid-white/png/16x16/sleet.png b/dist/icons/solid-white/png/16x16/sleet.png
new file mode 100755
index 0000000..71b818f
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/sleet.png differ
diff --git a/dist/icons/solid-white/png/16x16/snow.png b/dist/icons/solid-white/png/16x16/snow.png
new file mode 100755
index 0000000..183f919
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/snow.png differ
diff --git a/dist/icons/solid-white/png/16x16/sunny.png b/dist/icons/solid-white/png/16x16/sunny.png
new file mode 100755
index 0000000..415f731
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/sunny.png differ
diff --git a/dist/icons/solid-white/png/16x16/tstorms.png b/dist/icons/solid-white/png/16x16/tstorms.png
new file mode 100755
index 0000000..6211d9d
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/tstorms.png differ
diff --git a/dist/icons/solid-white/png/16x16/unknown.png b/dist/icons/solid-white/png/16x16/unknown.png
new file mode 100755
index 0000000..b5c2d88
Binary files /dev/null and b/dist/icons/solid-white/png/16x16/unknown.png differ
diff --git a/dist/icons/solid-white/png/256x256/_nt_spritesheet.png b/dist/icons/solid-white/png/256x256/_nt_spritesheet.png
new file mode 100644
index 0000000..771f4f4
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/_nt_spritesheet.png differ
diff --git a/dist/icons/solid-white/png/256x256/_spritesheet.png b/dist/icons/solid-white/png/256x256/_spritesheet.png
new file mode 100644
index 0000000..98cef42
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/_spritesheet.png differ
diff --git a/dist/icons/solid-white/png/256x256/chanceflurries.png b/dist/icons/solid-white/png/256x256/chanceflurries.png
new file mode 100755
index 0000000..9e3b0bc
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/chanceflurries.png differ
diff --git a/dist/icons/solid-white/png/256x256/chancerain.png b/dist/icons/solid-white/png/256x256/chancerain.png
new file mode 100755
index 0000000..0527e0b
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/chancerain.png differ
diff --git a/dist/icons/solid-white/png/256x256/chancesleet.png b/dist/icons/solid-white/png/256x256/chancesleet.png
new file mode 100755
index 0000000..160978e
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/chancesleet.png differ
diff --git a/dist/icons/solid-white/png/256x256/chancesnow.png b/dist/icons/solid-white/png/256x256/chancesnow.png
new file mode 100755
index 0000000..02935f5
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/chancesnow.png differ
diff --git a/dist/icons/solid-white/png/256x256/chancetstorms.png b/dist/icons/solid-white/png/256x256/chancetstorms.png
new file mode 100755
index 0000000..43cc787
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/chancetstorms.png differ
diff --git a/dist/icons/solid-white/png/256x256/clear.png b/dist/icons/solid-white/png/256x256/clear.png
new file mode 100755
index 0000000..a0de378
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/clear.png differ
diff --git a/dist/icons/solid-white/png/256x256/cloudy.png b/dist/icons/solid-white/png/256x256/cloudy.png
new file mode 100755
index 0000000..f93ea69
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/cloudy.png differ
diff --git a/dist/icons/solid-white/png/256x256/flurries.png b/dist/icons/solid-white/png/256x256/flurries.png
new file mode 100755
index 0000000..c78229a
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/flurries.png differ
diff --git a/dist/icons/solid-white/png/256x256/fog.png b/dist/icons/solid-white/png/256x256/fog.png
new file mode 100755
index 0000000..5750c7e
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/fog.png differ
diff --git a/dist/icons/solid-white/png/256x256/hazy.png b/dist/icons/solid-white/png/256x256/hazy.png
new file mode 100755
index 0000000..bf73f95
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/hazy.png differ
diff --git a/dist/icons/solid-white/png/256x256/mostlycloudy.png b/dist/icons/solid-white/png/256x256/mostlycloudy.png
new file mode 100755
index 0000000..87ecd15
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/mostlycloudy.png differ
diff --git a/dist/icons/solid-white/png/256x256/mostlysunny.png b/dist/icons/solid-white/png/256x256/mostlysunny.png
new file mode 100755
index 0000000..8c6ef0e
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/mostlysunny.png differ
diff --git a/dist/icons/solid-white/png/256x256/nt_chanceflurries.png b/dist/icons/solid-white/png/256x256/nt_chanceflurries.png
new file mode 100755
index 0000000..cdc233d
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/nt_chanceflurries.png differ
diff --git a/dist/icons/solid-white/png/256x256/nt_chancerain.png b/dist/icons/solid-white/png/256x256/nt_chancerain.png
new file mode 100755
index 0000000..6f192f3
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/nt_chancerain.png differ
diff --git a/dist/icons/solid-white/png/256x256/nt_chancesleet.png b/dist/icons/solid-white/png/256x256/nt_chancesleet.png
new file mode 100755
index 0000000..7bef4a2
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/nt_chancesleet.png differ
diff --git a/dist/icons/solid-white/png/256x256/nt_chancesnow.png b/dist/icons/solid-white/png/256x256/nt_chancesnow.png
new file mode 100755
index 0000000..c62f259
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/nt_chancesnow.png differ
diff --git a/dist/icons/solid-white/png/256x256/nt_chancetstorms.png b/dist/icons/solid-white/png/256x256/nt_chancetstorms.png
new file mode 100755
index 0000000..a2225cd
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/nt_chancetstorms.png differ
diff --git a/dist/icons/solid-white/png/256x256/nt_clear.png b/dist/icons/solid-white/png/256x256/nt_clear.png
new file mode 100644
index 0000000..4c55b02
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/nt_clear.png differ
diff --git a/dist/icons/solid-white/png/256x256/nt_cloudy.png b/dist/icons/solid-white/png/256x256/nt_cloudy.png
new file mode 100755
index 0000000..6c7e6b6
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/nt_cloudy.png differ
diff --git a/dist/icons/solid-white/png/256x256/nt_flurries.png b/dist/icons/solid-white/png/256x256/nt_flurries.png
new file mode 100755
index 0000000..754e91f
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/nt_flurries.png differ
diff --git a/dist/icons/solid-white/png/256x256/nt_fog.png b/dist/icons/solid-white/png/256x256/nt_fog.png
new file mode 100755
index 0000000..15f0280
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/nt_fog.png differ
diff --git a/dist/icons/solid-white/png/256x256/nt_hazy.png b/dist/icons/solid-white/png/256x256/nt_hazy.png
new file mode 100755
index 0000000..bcb79dc
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/nt_hazy.png differ
diff --git a/dist/icons/solid-white/png/256x256/nt_mostlycloudy.png b/dist/icons/solid-white/png/256x256/nt_mostlycloudy.png
new file mode 100644
index 0000000..b401613
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/nt_mostlycloudy.png differ
diff --git a/dist/icons/solid-white/png/256x256/nt_mostlysunny.png b/dist/icons/solid-white/png/256x256/nt_mostlysunny.png
new file mode 100644
index 0000000..e6cc4e6
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/nt_mostlysunny.png differ
diff --git a/dist/icons/solid-white/png/256x256/nt_partlycloudy.png b/dist/icons/solid-white/png/256x256/nt_partlycloudy.png
new file mode 100644
index 0000000..39b2a84
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/nt_partlycloudy.png differ
diff --git a/dist/icons/solid-white/png/256x256/nt_partlysunny.png b/dist/icons/solid-white/png/256x256/nt_partlysunny.png
new file mode 100644
index 0000000..ed408d4
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/nt_partlysunny.png differ
diff --git a/dist/icons/solid-white/png/256x256/nt_rain.png b/dist/icons/solid-white/png/256x256/nt_rain.png
new file mode 100755
index 0000000..11dbe3b
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/nt_rain.png differ
diff --git a/dist/icons/solid-white/png/256x256/nt_sleet.png b/dist/icons/solid-white/png/256x256/nt_sleet.png
new file mode 100755
index 0000000..c89a756
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/nt_sleet.png differ
diff --git a/dist/icons/solid-white/png/256x256/nt_snow.png b/dist/icons/solid-white/png/256x256/nt_snow.png
new file mode 100755
index 0000000..5a13b9a
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/nt_snow.png differ
diff --git a/dist/icons/solid-white/png/256x256/nt_sunny.png b/dist/icons/solid-white/png/256x256/nt_sunny.png
new file mode 100644
index 0000000..040b41c
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/nt_sunny.png differ
diff --git a/dist/icons/solid-white/png/256x256/nt_tstorms.png b/dist/icons/solid-white/png/256x256/nt_tstorms.png
new file mode 100755
index 0000000..3829cb4
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/nt_tstorms.png differ
diff --git a/dist/icons/solid-white/png/256x256/nt_unknown.png b/dist/icons/solid-white/png/256x256/nt_unknown.png
new file mode 100755
index 0000000..e22a9a0
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/nt_unknown.png differ
diff --git a/dist/icons/solid-white/png/256x256/partlycloudy.png b/dist/icons/solid-white/png/256x256/partlycloudy.png
new file mode 100755
index 0000000..e38e101
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/partlycloudy.png differ
diff --git a/dist/icons/solid-white/png/256x256/partlysunny.png b/dist/icons/solid-white/png/256x256/partlysunny.png
new file mode 100755
index 0000000..28576df
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/partlysunny.png differ
diff --git a/dist/icons/solid-white/png/256x256/rain.png b/dist/icons/solid-white/png/256x256/rain.png
new file mode 100755
index 0000000..081a761
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/rain.png differ
diff --git a/dist/icons/solid-white/png/256x256/sleet.png b/dist/icons/solid-white/png/256x256/sleet.png
new file mode 100755
index 0000000..35ec498
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/sleet.png differ
diff --git a/dist/icons/solid-white/png/256x256/snow.png b/dist/icons/solid-white/png/256x256/snow.png
new file mode 100755
index 0000000..2a85376
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/snow.png differ
diff --git a/dist/icons/solid-white/png/256x256/sunny.png b/dist/icons/solid-white/png/256x256/sunny.png
new file mode 100755
index 0000000..a31787b
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/sunny.png differ
diff --git a/dist/icons/solid-white/png/256x256/tstorms.png b/dist/icons/solid-white/png/256x256/tstorms.png
new file mode 100755
index 0000000..75ae4f0
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/tstorms.png differ
diff --git a/dist/icons/solid-white/png/256x256/unknown.png b/dist/icons/solid-white/png/256x256/unknown.png
new file mode 100755
index 0000000..0e33fd2
Binary files /dev/null and b/dist/icons/solid-white/png/256x256/unknown.png differ
diff --git a/dist/icons/solid-white/png/32x32/_nt_spritesheet.png b/dist/icons/solid-white/png/32x32/_nt_spritesheet.png
new file mode 100644
index 0000000..c076b13
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/_nt_spritesheet.png differ
diff --git a/dist/icons/solid-white/png/32x32/_spritesheet.png b/dist/icons/solid-white/png/32x32/_spritesheet.png
new file mode 100755
index 0000000..b01547c
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/_spritesheet.png differ
diff --git a/dist/icons/solid-white/png/32x32/chanceflurries.png b/dist/icons/solid-white/png/32x32/chanceflurries.png
new file mode 100755
index 0000000..95fec37
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/chanceflurries.png differ
diff --git a/dist/icons/solid-white/png/32x32/chancerain.png b/dist/icons/solid-white/png/32x32/chancerain.png
new file mode 100755
index 0000000..6d4766d
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/chancerain.png differ
diff --git a/dist/icons/solid-white/png/32x32/chancesleet.png b/dist/icons/solid-white/png/32x32/chancesleet.png
new file mode 100755
index 0000000..33c36d2
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/chancesleet.png differ
diff --git a/dist/icons/solid-white/png/32x32/chancesnow.png b/dist/icons/solid-white/png/32x32/chancesnow.png
new file mode 100755
index 0000000..edd5a91
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/chancesnow.png differ
diff --git a/dist/icons/solid-white/png/32x32/chancetstorms.png b/dist/icons/solid-white/png/32x32/chancetstorms.png
new file mode 100755
index 0000000..8639428
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/chancetstorms.png differ
diff --git a/dist/icons/solid-white/png/32x32/clear.png b/dist/icons/solid-white/png/32x32/clear.png
new file mode 100755
index 0000000..ff0cf0e
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/clear.png differ
diff --git a/dist/icons/solid-white/png/32x32/cloudy.png b/dist/icons/solid-white/png/32x32/cloudy.png
new file mode 100755
index 0000000..ea6f2fa
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/cloudy.png differ
diff --git a/dist/icons/solid-white/png/32x32/flurries.png b/dist/icons/solid-white/png/32x32/flurries.png
new file mode 100755
index 0000000..15d3ca3
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/flurries.png differ
diff --git a/dist/icons/solid-white/png/32x32/fog.png b/dist/icons/solid-white/png/32x32/fog.png
new file mode 100755
index 0000000..f0468a7
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/fog.png differ
diff --git a/dist/icons/solid-white/png/32x32/hazy.png b/dist/icons/solid-white/png/32x32/hazy.png
new file mode 100755
index 0000000..9c8ba39
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/hazy.png differ
diff --git a/dist/icons/solid-white/png/32x32/mostlycloudy.png b/dist/icons/solid-white/png/32x32/mostlycloudy.png
new file mode 100755
index 0000000..973b84a
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/mostlycloudy.png differ
diff --git a/dist/icons/solid-white/png/32x32/mostlysunny.png b/dist/icons/solid-white/png/32x32/mostlysunny.png
new file mode 100755
index 0000000..ac884a2
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/mostlysunny.png differ
diff --git a/dist/icons/solid-white/png/32x32/nt_chanceflurries.png b/dist/icons/solid-white/png/32x32/nt_chanceflurries.png
new file mode 100755
index 0000000..4591aa3
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/nt_chanceflurries.png differ
diff --git a/dist/icons/solid-white/png/32x32/nt_chancerain.png b/dist/icons/solid-white/png/32x32/nt_chancerain.png
new file mode 100755
index 0000000..1106c67
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/nt_chancerain.png differ
diff --git a/dist/icons/solid-white/png/32x32/nt_chancesleet.png b/dist/icons/solid-white/png/32x32/nt_chancesleet.png
new file mode 100755
index 0000000..34d8592
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/nt_chancesleet.png differ
diff --git a/dist/icons/solid-white/png/32x32/nt_chancesnow.png b/dist/icons/solid-white/png/32x32/nt_chancesnow.png
new file mode 100755
index 0000000..9d03d82
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/nt_chancesnow.png differ
diff --git a/dist/icons/solid-white/png/32x32/nt_chancetstorms.png b/dist/icons/solid-white/png/32x32/nt_chancetstorms.png
new file mode 100755
index 0000000..8a1423f
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/nt_chancetstorms.png differ
diff --git a/dist/icons/solid-white/png/32x32/nt_clear.png b/dist/icons/solid-white/png/32x32/nt_clear.png
new file mode 100644
index 0000000..1b02658
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/nt_clear.png differ
diff --git a/dist/icons/solid-white/png/32x32/nt_cloudy.png b/dist/icons/solid-white/png/32x32/nt_cloudy.png
new file mode 100755
index 0000000..f089b23
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/nt_cloudy.png differ
diff --git a/dist/icons/solid-white/png/32x32/nt_flurries.png b/dist/icons/solid-white/png/32x32/nt_flurries.png
new file mode 100755
index 0000000..730550c
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/nt_flurries.png differ
diff --git a/dist/icons/solid-white/png/32x32/nt_fog.png b/dist/icons/solid-white/png/32x32/nt_fog.png
new file mode 100755
index 0000000..37c79b1
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/nt_fog.png differ
diff --git a/dist/icons/solid-white/png/32x32/nt_hazy.png b/dist/icons/solid-white/png/32x32/nt_hazy.png
new file mode 100755
index 0000000..27ee652
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/nt_hazy.png differ
diff --git a/dist/icons/solid-white/png/32x32/nt_mostlycloudy.png b/dist/icons/solid-white/png/32x32/nt_mostlycloudy.png
new file mode 100644
index 0000000..57ece8e
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/nt_mostlycloudy.png differ
diff --git a/dist/icons/solid-white/png/32x32/nt_mostlysunny.png b/dist/icons/solid-white/png/32x32/nt_mostlysunny.png
new file mode 100644
index 0000000..d0f1d28
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/nt_mostlysunny.png differ
diff --git a/dist/icons/solid-white/png/32x32/nt_partlycloudy.png b/dist/icons/solid-white/png/32x32/nt_partlycloudy.png
new file mode 100644
index 0000000..a438743
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/nt_partlycloudy.png differ
diff --git a/dist/icons/solid-white/png/32x32/nt_partlysunny.png b/dist/icons/solid-white/png/32x32/nt_partlysunny.png
new file mode 100644
index 0000000..02d52fb
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/nt_partlysunny.png differ
diff --git a/dist/icons/solid-white/png/32x32/nt_rain.png b/dist/icons/solid-white/png/32x32/nt_rain.png
new file mode 100755
index 0000000..648758f
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/nt_rain.png differ
diff --git a/dist/icons/solid-white/png/32x32/nt_sleet.png b/dist/icons/solid-white/png/32x32/nt_sleet.png
new file mode 100755
index 0000000..0aa8dfa
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/nt_sleet.png differ
diff --git a/dist/icons/solid-white/png/32x32/nt_snow.png b/dist/icons/solid-white/png/32x32/nt_snow.png
new file mode 100755
index 0000000..b739767
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/nt_snow.png differ
diff --git a/dist/icons/solid-white/png/32x32/nt_sunny.png b/dist/icons/solid-white/png/32x32/nt_sunny.png
new file mode 100644
index 0000000..d7a6675
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/nt_sunny.png differ
diff --git a/dist/icons/solid-white/png/32x32/nt_tstorms.png b/dist/icons/solid-white/png/32x32/nt_tstorms.png
new file mode 100755
index 0000000..fed87f2
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/nt_tstorms.png differ
diff --git a/dist/icons/solid-white/png/32x32/nt_unknown.png b/dist/icons/solid-white/png/32x32/nt_unknown.png
new file mode 100755
index 0000000..329a6e2
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/nt_unknown.png differ
diff --git a/dist/icons/solid-white/png/32x32/partlycloudy.png b/dist/icons/solid-white/png/32x32/partlycloudy.png
new file mode 100755
index 0000000..ad3d715
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/partlycloudy.png differ
diff --git a/dist/icons/solid-white/png/32x32/partlysunny.png b/dist/icons/solid-white/png/32x32/partlysunny.png
new file mode 100755
index 0000000..ec62278
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/partlysunny.png differ
diff --git a/dist/icons/solid-white/png/32x32/rain.png b/dist/icons/solid-white/png/32x32/rain.png
new file mode 100755
index 0000000..316e9bc
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/rain.png differ
diff --git a/dist/icons/solid-white/png/32x32/sleet.png b/dist/icons/solid-white/png/32x32/sleet.png
new file mode 100755
index 0000000..4ab8d51
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/sleet.png differ
diff --git a/dist/icons/solid-white/png/32x32/snow.png b/dist/icons/solid-white/png/32x32/snow.png
new file mode 100755
index 0000000..f35eb0f
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/snow.png differ
diff --git a/dist/icons/solid-white/png/32x32/sunny.png b/dist/icons/solid-white/png/32x32/sunny.png
new file mode 100755
index 0000000..7d93fa6
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/sunny.png differ
diff --git a/dist/icons/solid-white/png/32x32/tstorms.png b/dist/icons/solid-white/png/32x32/tstorms.png
new file mode 100755
index 0000000..b7d7feb
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/tstorms.png differ
diff --git a/dist/icons/solid-white/png/32x32/unknown.png b/dist/icons/solid-white/png/32x32/unknown.png
new file mode 100755
index 0000000..9e2810c
Binary files /dev/null and b/dist/icons/solid-white/png/32x32/unknown.png differ
diff --git a/dist/icons/solid-white/png/64x64/_nt_spritesheet.png b/dist/icons/solid-white/png/64x64/_nt_spritesheet.png
new file mode 100644
index 0000000..66c69c8
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/_nt_spritesheet.png differ
diff --git a/dist/icons/solid-white/png/64x64/_spritesheet.png b/dist/icons/solid-white/png/64x64/_spritesheet.png
new file mode 100755
index 0000000..ab62180
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/_spritesheet.png differ
diff --git a/dist/icons/solid-white/png/64x64/chanceflurries.png b/dist/icons/solid-white/png/64x64/chanceflurries.png
new file mode 100755
index 0000000..706e9f9
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/chanceflurries.png differ
diff --git a/dist/icons/solid-white/png/64x64/chancerain.png b/dist/icons/solid-white/png/64x64/chancerain.png
new file mode 100755
index 0000000..9881251
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/chancerain.png differ
diff --git a/dist/icons/solid-white/png/64x64/chancesleet.png b/dist/icons/solid-white/png/64x64/chancesleet.png
new file mode 100755
index 0000000..0eb57fa
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/chancesleet.png differ
diff --git a/dist/icons/solid-white/png/64x64/chancesnow.png b/dist/icons/solid-white/png/64x64/chancesnow.png
new file mode 100755
index 0000000..ef61907
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/chancesnow.png differ
diff --git a/dist/icons/solid-white/png/64x64/chancetstorms.png b/dist/icons/solid-white/png/64x64/chancetstorms.png
new file mode 100755
index 0000000..f0d329c
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/chancetstorms.png differ
diff --git a/dist/icons/solid-white/png/64x64/clear.png b/dist/icons/solid-white/png/64x64/clear.png
new file mode 100755
index 0000000..d8aedc4
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/clear.png differ
diff --git a/dist/icons/solid-white/png/64x64/cloudy.png b/dist/icons/solid-white/png/64x64/cloudy.png
new file mode 100755
index 0000000..97ffcb8
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/cloudy.png differ
diff --git a/dist/icons/solid-white/png/64x64/flurries.png b/dist/icons/solid-white/png/64x64/flurries.png
new file mode 100755
index 0000000..9008fd4
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/flurries.png differ
diff --git a/dist/icons/solid-white/png/64x64/fog.png b/dist/icons/solid-white/png/64x64/fog.png
new file mode 100755
index 0000000..c6056e0
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/fog.png differ
diff --git a/dist/icons/solid-white/png/64x64/hazy.png b/dist/icons/solid-white/png/64x64/hazy.png
new file mode 100755
index 0000000..779258a
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/hazy.png differ
diff --git a/dist/icons/solid-white/png/64x64/mostlycloudy.png b/dist/icons/solid-white/png/64x64/mostlycloudy.png
new file mode 100755
index 0000000..252a64a
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/mostlycloudy.png differ
diff --git a/dist/icons/solid-white/png/64x64/mostlysunny.png b/dist/icons/solid-white/png/64x64/mostlysunny.png
new file mode 100755
index 0000000..36d8703
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/mostlysunny.png differ
diff --git a/dist/icons/solid-white/png/64x64/nt_chanceflurries.png b/dist/icons/solid-white/png/64x64/nt_chanceflurries.png
new file mode 100755
index 0000000..3033778
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/nt_chanceflurries.png differ
diff --git a/dist/icons/solid-white/png/64x64/nt_chancerain.png b/dist/icons/solid-white/png/64x64/nt_chancerain.png
new file mode 100755
index 0000000..00f8242
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/nt_chancerain.png differ
diff --git a/dist/icons/solid-white/png/64x64/nt_chancesleet.png b/dist/icons/solid-white/png/64x64/nt_chancesleet.png
new file mode 100755
index 0000000..8afddc5
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/nt_chancesleet.png differ
diff --git a/dist/icons/solid-white/png/64x64/nt_chancesnow.png b/dist/icons/solid-white/png/64x64/nt_chancesnow.png
new file mode 100755
index 0000000..433a7a9
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/nt_chancesnow.png differ
diff --git a/dist/icons/solid-white/png/64x64/nt_chancetstorms.png b/dist/icons/solid-white/png/64x64/nt_chancetstorms.png
new file mode 100755
index 0000000..25ff027
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/nt_chancetstorms.png differ
diff --git a/dist/icons/solid-white/png/64x64/nt_clear.png b/dist/icons/solid-white/png/64x64/nt_clear.png
new file mode 100644
index 0000000..837f94e
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/nt_clear.png differ
diff --git a/dist/icons/solid-white/png/64x64/nt_cloudy.png b/dist/icons/solid-white/png/64x64/nt_cloudy.png
new file mode 100755
index 0000000..ea272d0
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/nt_cloudy.png differ
diff --git a/dist/icons/solid-white/png/64x64/nt_flurries.png b/dist/icons/solid-white/png/64x64/nt_flurries.png
new file mode 100755
index 0000000..3350f22
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/nt_flurries.png differ
diff --git a/dist/icons/solid-white/png/64x64/nt_fog.png b/dist/icons/solid-white/png/64x64/nt_fog.png
new file mode 100755
index 0000000..e425042
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/nt_fog.png differ
diff --git a/dist/icons/solid-white/png/64x64/nt_hazy.png b/dist/icons/solid-white/png/64x64/nt_hazy.png
new file mode 100755
index 0000000..83d5371
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/nt_hazy.png differ
diff --git a/dist/icons/solid-white/png/64x64/nt_mostlycloudy.png b/dist/icons/solid-white/png/64x64/nt_mostlycloudy.png
new file mode 100644
index 0000000..6e9ff44
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/nt_mostlycloudy.png differ
diff --git a/dist/icons/solid-white/png/64x64/nt_mostlysunny.png b/dist/icons/solid-white/png/64x64/nt_mostlysunny.png
new file mode 100644
index 0000000..79c1a55
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/nt_mostlysunny.png differ
diff --git a/dist/icons/solid-white/png/64x64/nt_partlycloudy.png b/dist/icons/solid-white/png/64x64/nt_partlycloudy.png
new file mode 100644
index 0000000..9e8d62e
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/nt_partlycloudy.png differ
diff --git a/dist/icons/solid-white/png/64x64/nt_partlysunny.png b/dist/icons/solid-white/png/64x64/nt_partlysunny.png
new file mode 100644
index 0000000..eab6e12
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/nt_partlysunny.png differ
diff --git a/dist/icons/solid-white/png/64x64/nt_rain.png b/dist/icons/solid-white/png/64x64/nt_rain.png
new file mode 100755
index 0000000..10bdfaf
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/nt_rain.png differ
diff --git a/dist/icons/solid-white/png/64x64/nt_sleet.png b/dist/icons/solid-white/png/64x64/nt_sleet.png
new file mode 100755
index 0000000..c8e4b80
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/nt_sleet.png differ
diff --git a/dist/icons/solid-white/png/64x64/nt_snow.png b/dist/icons/solid-white/png/64x64/nt_snow.png
new file mode 100755
index 0000000..3659287
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/nt_snow.png differ
diff --git a/dist/icons/solid-white/png/64x64/nt_sunny.png b/dist/icons/solid-white/png/64x64/nt_sunny.png
new file mode 100644
index 0000000..cc0890d
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/nt_sunny.png differ
diff --git a/dist/icons/solid-white/png/64x64/nt_tstorms.png b/dist/icons/solid-white/png/64x64/nt_tstorms.png
new file mode 100755
index 0000000..aeb86ef
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/nt_tstorms.png differ
diff --git a/dist/icons/solid-white/png/64x64/nt_unknown.png b/dist/icons/solid-white/png/64x64/nt_unknown.png
new file mode 100755
index 0000000..32e8249
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/nt_unknown.png differ
diff --git a/dist/icons/solid-white/png/64x64/partlycloudy.png b/dist/icons/solid-white/png/64x64/partlycloudy.png
new file mode 100755
index 0000000..29b46e7
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/partlycloudy.png differ
diff --git a/dist/icons/solid-white/png/64x64/partlysunny.png b/dist/icons/solid-white/png/64x64/partlysunny.png
new file mode 100755
index 0000000..b32e885
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/partlysunny.png differ
diff --git a/dist/icons/solid-white/png/64x64/rain.png b/dist/icons/solid-white/png/64x64/rain.png
new file mode 100755
index 0000000..443c1b3
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/rain.png differ
diff --git a/dist/icons/solid-white/png/64x64/sleet.png b/dist/icons/solid-white/png/64x64/sleet.png
new file mode 100755
index 0000000..e9a32d4
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/sleet.png differ
diff --git a/dist/icons/solid-white/png/64x64/snow.png b/dist/icons/solid-white/png/64x64/snow.png
new file mode 100755
index 0000000..3042052
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/snow.png differ
diff --git a/dist/icons/solid-white/png/64x64/sunny.png b/dist/icons/solid-white/png/64x64/sunny.png
new file mode 100755
index 0000000..b7c8216
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/sunny.png differ
diff --git a/dist/icons/solid-white/png/64x64/tstorms.png b/dist/icons/solid-white/png/64x64/tstorms.png
new file mode 100755
index 0000000..b36af7d
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/tstorms.png differ
diff --git a/dist/icons/solid-white/png/64x64/unknown.png b/dist/icons/solid-white/png/64x64/unknown.png
new file mode 100755
index 0000000..2ba1aa3
Binary files /dev/null and b/dist/icons/solid-white/png/64x64/unknown.png differ
diff --git a/dist/icons/solid-white/svg/chanceflurries.svg b/dist/icons/solid-white/svg/chanceflurries.svg
new file mode 100644
index 0000000..d48d1d5
--- /dev/null
+++ b/dist/icons/solid-white/svg/chanceflurries.svg
@@ -0,0 +1,18 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/chancerain.svg b/dist/icons/solid-white/svg/chancerain.svg
new file mode 100644
index 0000000..9523118
--- /dev/null
+++ b/dist/icons/solid-white/svg/chancerain.svg
@@ -0,0 +1,21 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/chancesleet.svg b/dist/icons/solid-white/svg/chancesleet.svg
new file mode 100644
index 0000000..4b49976
--- /dev/null
+++ b/dist/icons/solid-white/svg/chancesleet.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/chancesnow.svg b/dist/icons/solid-white/svg/chancesnow.svg
new file mode 100644
index 0000000..16277c8
--- /dev/null
+++ b/dist/icons/solid-white/svg/chancesnow.svg
@@ -0,0 +1,20 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/chancetstorms.svg b/dist/icons/solid-white/svg/chancetstorms.svg
new file mode 100644
index 0000000..2d10b93
--- /dev/null
+++ b/dist/icons/solid-white/svg/chancetstorms.svg
@@ -0,0 +1,15 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/clear.svg b/dist/icons/solid-white/svg/clear.svg
new file mode 100644
index 0000000..75ff8c8
--- /dev/null
+++ b/dist/icons/solid-white/svg/clear.svg
@@ -0,0 +1,21 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/cloudy.svg b/dist/icons/solid-white/svg/cloudy.svg
new file mode 100644
index 0000000..27c6d48
--- /dev/null
+++ b/dist/icons/solid-white/svg/cloudy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/solid-white/svg/flurries.svg b/dist/icons/solid-white/svg/flurries.svg
new file mode 100644
index 0000000..5bffc3b
--- /dev/null
+++ b/dist/icons/solid-white/svg/flurries.svg
@@ -0,0 +1,20 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/fog.svg b/dist/icons/solid-white/svg/fog.svg
new file mode 100644
index 0000000..f2ea9ea
--- /dev/null
+++ b/dist/icons/solid-white/svg/fog.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/solid-white/svg/hazy.svg b/dist/icons/solid-white/svg/hazy.svg
new file mode 100644
index 0000000..c1c4dc4
--- /dev/null
+++ b/dist/icons/solid-white/svg/hazy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/solid-white/svg/mostlycloudy.svg b/dist/icons/solid-white/svg/mostlycloudy.svg
new file mode 100644
index 0000000..8e3e0ad
--- /dev/null
+++ b/dist/icons/solid-white/svg/mostlycloudy.svg
@@ -0,0 +1,22 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/mostlysunny.svg b/dist/icons/solid-white/svg/mostlysunny.svg
new file mode 100644
index 0000000..c22d8a3
--- /dev/null
+++ b/dist/icons/solid-white/svg/mostlysunny.svg
@@ -0,0 +1,25 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/nt_chanceflurries.svg b/dist/icons/solid-white/svg/nt_chanceflurries.svg
new file mode 100644
index 0000000..d48d1d5
--- /dev/null
+++ b/dist/icons/solid-white/svg/nt_chanceflurries.svg
@@ -0,0 +1,18 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/nt_chancerain.svg b/dist/icons/solid-white/svg/nt_chancerain.svg
new file mode 100644
index 0000000..9523118
--- /dev/null
+++ b/dist/icons/solid-white/svg/nt_chancerain.svg
@@ -0,0 +1,21 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/nt_chancesleet.svg b/dist/icons/solid-white/svg/nt_chancesleet.svg
new file mode 100644
index 0000000..4b49976
--- /dev/null
+++ b/dist/icons/solid-white/svg/nt_chancesleet.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/nt_chancesnow.svg b/dist/icons/solid-white/svg/nt_chancesnow.svg
new file mode 100644
index 0000000..16277c8
--- /dev/null
+++ b/dist/icons/solid-white/svg/nt_chancesnow.svg
@@ -0,0 +1,20 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/nt_chancetstorms.svg b/dist/icons/solid-white/svg/nt_chancetstorms.svg
new file mode 100644
index 0000000..2d10b93
--- /dev/null
+++ b/dist/icons/solid-white/svg/nt_chancetstorms.svg
@@ -0,0 +1,15 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/nt_clear.svg b/dist/icons/solid-white/svg/nt_clear.svg
new file mode 100644
index 0000000..63817f4
--- /dev/null
+++ b/dist/icons/solid-white/svg/nt_clear.svg
@@ -0,0 +1,11 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/nt_cloudy.svg b/dist/icons/solid-white/svg/nt_cloudy.svg
new file mode 100644
index 0000000..27c6d48
--- /dev/null
+++ b/dist/icons/solid-white/svg/nt_cloudy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/solid-white/svg/nt_flurries.svg b/dist/icons/solid-white/svg/nt_flurries.svg
new file mode 100644
index 0000000..5bffc3b
--- /dev/null
+++ b/dist/icons/solid-white/svg/nt_flurries.svg
@@ -0,0 +1,20 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/nt_fog.svg b/dist/icons/solid-white/svg/nt_fog.svg
new file mode 100644
index 0000000..f2ea9ea
--- /dev/null
+++ b/dist/icons/solid-white/svg/nt_fog.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/solid-white/svg/nt_hazy.svg b/dist/icons/solid-white/svg/nt_hazy.svg
new file mode 100644
index 0000000..c1c4dc4
--- /dev/null
+++ b/dist/icons/solid-white/svg/nt_hazy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/solid-white/svg/nt_mostlycloudy.svg b/dist/icons/solid-white/svg/nt_mostlycloudy.svg
new file mode 100644
index 0000000..31e6124
--- /dev/null
+++ b/dist/icons/solid-white/svg/nt_mostlycloudy.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/nt_mostlysunny.svg b/dist/icons/solid-white/svg/nt_mostlysunny.svg
new file mode 100644
index 0000000..bc079b0
--- /dev/null
+++ b/dist/icons/solid-white/svg/nt_mostlysunny.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/nt_partlycloudy.svg b/dist/icons/solid-white/svg/nt_partlycloudy.svg
new file mode 100644
index 0000000..bc079b0
--- /dev/null
+++ b/dist/icons/solid-white/svg/nt_partlycloudy.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/nt_partlysunny.svg b/dist/icons/solid-white/svg/nt_partlysunny.svg
new file mode 100644
index 0000000..31e6124
--- /dev/null
+++ b/dist/icons/solid-white/svg/nt_partlysunny.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/nt_rain.svg b/dist/icons/solid-white/svg/nt_rain.svg
new file mode 100644
index 0000000..38eb713
--- /dev/null
+++ b/dist/icons/solid-white/svg/nt_rain.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/nt_sleet.svg b/dist/icons/solid-white/svg/nt_sleet.svg
new file mode 100644
index 0000000..6ca2016
--- /dev/null
+++ b/dist/icons/solid-white/svg/nt_sleet.svg
@@ -0,0 +1,19 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/nt_snow.svg b/dist/icons/solid-white/svg/nt_snow.svg
new file mode 100644
index 0000000..30950fe
--- /dev/null
+++ b/dist/icons/solid-white/svg/nt_snow.svg
@@ -0,0 +1,20 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/nt_sunny.svg b/dist/icons/solid-white/svg/nt_sunny.svg
new file mode 100644
index 0000000..63817f4
--- /dev/null
+++ b/dist/icons/solid-white/svg/nt_sunny.svg
@@ -0,0 +1,11 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/nt_tstorms.svg b/dist/icons/solid-white/svg/nt_tstorms.svg
new file mode 100644
index 0000000..0cc5625
--- /dev/null
+++ b/dist/icons/solid-white/svg/nt_tstorms.svg
@@ -0,0 +1,21 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/nt_unknown.svg b/dist/icons/solid-white/svg/nt_unknown.svg
new file mode 100644
index 0000000..251d94e
--- /dev/null
+++ b/dist/icons/solid-white/svg/nt_unknown.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/solid-white/svg/partlycloudy.svg b/dist/icons/solid-white/svg/partlycloudy.svg
new file mode 100644
index 0000000..4b55919
--- /dev/null
+++ b/dist/icons/solid-white/svg/partlycloudy.svg
@@ -0,0 +1,25 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/partlysunny.svg b/dist/icons/solid-white/svg/partlysunny.svg
new file mode 100644
index 0000000..89882a3
--- /dev/null
+++ b/dist/icons/solid-white/svg/partlysunny.svg
@@ -0,0 +1,22 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/rain.svg b/dist/icons/solid-white/svg/rain.svg
new file mode 100644
index 0000000..38eb713
--- /dev/null
+++ b/dist/icons/solid-white/svg/rain.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/sleet.svg b/dist/icons/solid-white/svg/sleet.svg
new file mode 100644
index 0000000..6ca2016
--- /dev/null
+++ b/dist/icons/solid-white/svg/sleet.svg
@@ -0,0 +1,19 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/snow.svg b/dist/icons/solid-white/svg/snow.svg
new file mode 100644
index 0000000..30950fe
--- /dev/null
+++ b/dist/icons/solid-white/svg/snow.svg
@@ -0,0 +1,20 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/sunny.svg b/dist/icons/solid-white/svg/sunny.svg
new file mode 100644
index 0000000..042dc7a
--- /dev/null
+++ b/dist/icons/solid-white/svg/sunny.svg
@@ -0,0 +1,21 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/tstorms.svg b/dist/icons/solid-white/svg/tstorms.svg
new file mode 100644
index 0000000..0cc5625
--- /dev/null
+++ b/dist/icons/solid-white/svg/tstorms.svg
@@ -0,0 +1,21 @@
+
+
+
diff --git a/dist/icons/solid-white/svg/unknown.svg b/dist/icons/solid-white/svg/unknown.svg
new file mode 100644
index 0000000..251d94e
--- /dev/null
+++ b/dist/icons/solid-white/svg/unknown.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/white/icon-preview-nt.png b/dist/icons/white/icon-preview-nt.png
new file mode 100644
index 0000000..4026f5c
Binary files /dev/null and b/dist/icons/white/icon-preview-nt.png differ
diff --git a/dist/icons/white/icon-preview.png b/dist/icons/white/icon-preview.png
old mode 100755
new mode 100644
index 75fe3be..072e649
Binary files a/dist/icons/white/icon-preview.png and b/dist/icons/white/icon-preview.png differ
diff --git a/dist/icons/white/png/128x128/_nt_spritesheet.png b/dist/icons/white/png/128x128/_nt_spritesheet.png
new file mode 100644
index 0000000..0700816
Binary files /dev/null and b/dist/icons/white/png/128x128/_nt_spritesheet.png differ
diff --git a/dist/icons/white/png/128x128/_spritesheet.png b/dist/icons/white/png/128x128/_spritesheet.png
index 8066388..974385e 100755
Binary files a/dist/icons/white/png/128x128/_spritesheet.png and b/dist/icons/white/png/128x128/_spritesheet.png differ
diff --git a/dist/icons/white/png/128x128/nt_chanceflurries.png b/dist/icons/white/png/128x128/nt_chanceflurries.png
new file mode 100755
index 0000000..373479d
Binary files /dev/null and b/dist/icons/white/png/128x128/nt_chanceflurries.png differ
diff --git a/dist/icons/white/png/128x128/nt_chancerain.png b/dist/icons/white/png/128x128/nt_chancerain.png
new file mode 100755
index 0000000..ef82ca7
Binary files /dev/null and b/dist/icons/white/png/128x128/nt_chancerain.png differ
diff --git a/dist/icons/white/png/128x128/nt_chancesleet.png b/dist/icons/white/png/128x128/nt_chancesleet.png
new file mode 100755
index 0000000..12e18c1
Binary files /dev/null and b/dist/icons/white/png/128x128/nt_chancesleet.png differ
diff --git a/dist/icons/white/png/128x128/nt_chancesnow.png b/dist/icons/white/png/128x128/nt_chancesnow.png
new file mode 100755
index 0000000..55a3492
Binary files /dev/null and b/dist/icons/white/png/128x128/nt_chancesnow.png differ
diff --git a/dist/icons/white/png/128x128/nt_chancetstorms.png b/dist/icons/white/png/128x128/nt_chancetstorms.png
new file mode 100755
index 0000000..2f68213
Binary files /dev/null and b/dist/icons/white/png/128x128/nt_chancetstorms.png differ
diff --git a/dist/icons/white/png/128x128/nt_clear.png b/dist/icons/white/png/128x128/nt_clear.png
new file mode 100644
index 0000000..cc40d0f
Binary files /dev/null and b/dist/icons/white/png/128x128/nt_clear.png differ
diff --git a/dist/icons/white/png/128x128/nt_cloudy.png b/dist/icons/white/png/128x128/nt_cloudy.png
new file mode 100755
index 0000000..63cb1b2
Binary files /dev/null and b/dist/icons/white/png/128x128/nt_cloudy.png differ
diff --git a/dist/icons/white/png/128x128/nt_flurries.png b/dist/icons/white/png/128x128/nt_flurries.png
new file mode 100755
index 0000000..137804d
Binary files /dev/null and b/dist/icons/white/png/128x128/nt_flurries.png differ
diff --git a/dist/icons/white/png/128x128/nt_fog.png b/dist/icons/white/png/128x128/nt_fog.png
new file mode 100755
index 0000000..102142a
Binary files /dev/null and b/dist/icons/white/png/128x128/nt_fog.png differ
diff --git a/dist/icons/white/png/128x128/nt_hazy.png b/dist/icons/white/png/128x128/nt_hazy.png
new file mode 100755
index 0000000..102142a
Binary files /dev/null and b/dist/icons/white/png/128x128/nt_hazy.png differ
diff --git a/dist/icons/white/png/128x128/nt_mostlycloudy.png b/dist/icons/white/png/128x128/nt_mostlycloudy.png
new file mode 100644
index 0000000..061d1cd
Binary files /dev/null and b/dist/icons/white/png/128x128/nt_mostlycloudy.png differ
diff --git a/dist/icons/white/png/128x128/nt_mostlysunny.png b/dist/icons/white/png/128x128/nt_mostlysunny.png
new file mode 100644
index 0000000..9c34fab
Binary files /dev/null and b/dist/icons/white/png/128x128/nt_mostlysunny.png differ
diff --git a/dist/icons/white/png/128x128/nt_partlycloudy.png b/dist/icons/white/png/128x128/nt_partlycloudy.png
new file mode 100644
index 0000000..9c34fab
Binary files /dev/null and b/dist/icons/white/png/128x128/nt_partlycloudy.png differ
diff --git a/dist/icons/white/png/128x128/nt_partlysunny.png b/dist/icons/white/png/128x128/nt_partlysunny.png
new file mode 100644
index 0000000..061d1cd
Binary files /dev/null and b/dist/icons/white/png/128x128/nt_partlysunny.png differ
diff --git a/dist/icons/white/png/128x128/nt_rain.png b/dist/icons/white/png/128x128/nt_rain.png
new file mode 100755
index 0000000..49f0903
Binary files /dev/null and b/dist/icons/white/png/128x128/nt_rain.png differ
diff --git a/dist/icons/white/png/128x128/nt_sleet.png b/dist/icons/white/png/128x128/nt_sleet.png
new file mode 100755
index 0000000..fe1ebc5
Binary files /dev/null and b/dist/icons/white/png/128x128/nt_sleet.png differ
diff --git a/dist/icons/white/png/128x128/nt_snow.png b/dist/icons/white/png/128x128/nt_snow.png
new file mode 100755
index 0000000..0a7f006
Binary files /dev/null and b/dist/icons/white/png/128x128/nt_snow.png differ
diff --git a/dist/icons/white/png/128x128/nt_sunny.png b/dist/icons/white/png/128x128/nt_sunny.png
new file mode 100644
index 0000000..cc40d0f
Binary files /dev/null and b/dist/icons/white/png/128x128/nt_sunny.png differ
diff --git a/dist/icons/white/png/128x128/nt_tstorms.png b/dist/icons/white/png/128x128/nt_tstorms.png
new file mode 100755
index 0000000..2102104
Binary files /dev/null and b/dist/icons/white/png/128x128/nt_tstorms.png differ
diff --git a/dist/icons/white/png/128x128/nt_unknown.png b/dist/icons/white/png/128x128/nt_unknown.png
new file mode 100755
index 0000000..9b452d6
Binary files /dev/null and b/dist/icons/white/png/128x128/nt_unknown.png differ
diff --git a/dist/icons/white/png/16x16/_nt_spritesheet.png b/dist/icons/white/png/16x16/_nt_spritesheet.png
new file mode 100644
index 0000000..bd8c69f
Binary files /dev/null and b/dist/icons/white/png/16x16/_nt_spritesheet.png differ
diff --git a/dist/icons/white/png/16x16/_spritesheet.png b/dist/icons/white/png/16x16/_spritesheet.png
index 164799b..979836b 100755
Binary files a/dist/icons/white/png/16x16/_spritesheet.png and b/dist/icons/white/png/16x16/_spritesheet.png differ
diff --git a/dist/icons/white/png/16x16/nt_chanceflurries.png b/dist/icons/white/png/16x16/nt_chanceflurries.png
new file mode 100755
index 0000000..b669247
Binary files /dev/null and b/dist/icons/white/png/16x16/nt_chanceflurries.png differ
diff --git a/dist/icons/white/png/16x16/nt_chancerain.png b/dist/icons/white/png/16x16/nt_chancerain.png
new file mode 100755
index 0000000..12d73af
Binary files /dev/null and b/dist/icons/white/png/16x16/nt_chancerain.png differ
diff --git a/dist/icons/white/png/16x16/nt_chancesleet.png b/dist/icons/white/png/16x16/nt_chancesleet.png
new file mode 100755
index 0000000..5d7210f
Binary files /dev/null and b/dist/icons/white/png/16x16/nt_chancesleet.png differ
diff --git a/dist/icons/white/png/16x16/nt_chancesnow.png b/dist/icons/white/png/16x16/nt_chancesnow.png
new file mode 100755
index 0000000..3c60724
Binary files /dev/null and b/dist/icons/white/png/16x16/nt_chancesnow.png differ
diff --git a/dist/icons/white/png/16x16/nt_chancetstorms.png b/dist/icons/white/png/16x16/nt_chancetstorms.png
new file mode 100755
index 0000000..72beda5
Binary files /dev/null and b/dist/icons/white/png/16x16/nt_chancetstorms.png differ
diff --git a/dist/icons/white/png/16x16/nt_clear.png b/dist/icons/white/png/16x16/nt_clear.png
new file mode 100644
index 0000000..931a4b1
Binary files /dev/null and b/dist/icons/white/png/16x16/nt_clear.png differ
diff --git a/dist/icons/white/png/16x16/nt_cloudy.png b/dist/icons/white/png/16x16/nt_cloudy.png
new file mode 100755
index 0000000..be4de68
Binary files /dev/null and b/dist/icons/white/png/16x16/nt_cloudy.png differ
diff --git a/dist/icons/white/png/16x16/nt_flurries.png b/dist/icons/white/png/16x16/nt_flurries.png
new file mode 100755
index 0000000..82f869b
Binary files /dev/null and b/dist/icons/white/png/16x16/nt_flurries.png differ
diff --git a/dist/icons/white/png/16x16/nt_fog.png b/dist/icons/white/png/16x16/nt_fog.png
new file mode 100755
index 0000000..b39acdb
Binary files /dev/null and b/dist/icons/white/png/16x16/nt_fog.png differ
diff --git a/dist/icons/white/png/16x16/nt_hazy.png b/dist/icons/white/png/16x16/nt_hazy.png
new file mode 100755
index 0000000..b39acdb
Binary files /dev/null and b/dist/icons/white/png/16x16/nt_hazy.png differ
diff --git a/dist/icons/white/png/16x16/nt_mostlycloudy.png b/dist/icons/white/png/16x16/nt_mostlycloudy.png
new file mode 100644
index 0000000..06c7a64
Binary files /dev/null and b/dist/icons/white/png/16x16/nt_mostlycloudy.png differ
diff --git a/dist/icons/white/png/16x16/nt_mostlysunny.png b/dist/icons/white/png/16x16/nt_mostlysunny.png
new file mode 100644
index 0000000..10f1401
Binary files /dev/null and b/dist/icons/white/png/16x16/nt_mostlysunny.png differ
diff --git a/dist/icons/white/png/16x16/nt_partlycloudy.png b/dist/icons/white/png/16x16/nt_partlycloudy.png
new file mode 100644
index 0000000..10f1401
Binary files /dev/null and b/dist/icons/white/png/16x16/nt_partlycloudy.png differ
diff --git a/dist/icons/white/png/16x16/nt_partlysunny.png b/dist/icons/white/png/16x16/nt_partlysunny.png
new file mode 100644
index 0000000..06c7a64
Binary files /dev/null and b/dist/icons/white/png/16x16/nt_partlysunny.png differ
diff --git a/dist/icons/white/png/16x16/nt_rain.png b/dist/icons/white/png/16x16/nt_rain.png
new file mode 100755
index 0000000..176836d
Binary files /dev/null and b/dist/icons/white/png/16x16/nt_rain.png differ
diff --git a/dist/icons/white/png/16x16/nt_sleet.png b/dist/icons/white/png/16x16/nt_sleet.png
new file mode 100755
index 0000000..c73ee70
Binary files /dev/null and b/dist/icons/white/png/16x16/nt_sleet.png differ
diff --git a/dist/icons/white/png/16x16/nt_snow.png b/dist/icons/white/png/16x16/nt_snow.png
new file mode 100755
index 0000000..018e83a
Binary files /dev/null and b/dist/icons/white/png/16x16/nt_snow.png differ
diff --git a/dist/icons/white/png/16x16/nt_sunny.png b/dist/icons/white/png/16x16/nt_sunny.png
new file mode 100644
index 0000000..931a4b1
Binary files /dev/null and b/dist/icons/white/png/16x16/nt_sunny.png differ
diff --git a/dist/icons/white/png/16x16/nt_tstorms.png b/dist/icons/white/png/16x16/nt_tstorms.png
new file mode 100755
index 0000000..a0e6027
Binary files /dev/null and b/dist/icons/white/png/16x16/nt_tstorms.png differ
diff --git a/dist/icons/white/png/16x16/nt_unknown.png b/dist/icons/white/png/16x16/nt_unknown.png
new file mode 100755
index 0000000..0c59d91
Binary files /dev/null and b/dist/icons/white/png/16x16/nt_unknown.png differ
diff --git a/dist/icons/white/png/256x256/_nt_spritesheet.png b/dist/icons/white/png/256x256/_nt_spritesheet.png
new file mode 100644
index 0000000..0bf1f21
Binary files /dev/null and b/dist/icons/white/png/256x256/_nt_spritesheet.png differ
diff --git a/dist/icons/white/png/256x256/_spritesheet.png b/dist/icons/white/png/256x256/_spritesheet.png
old mode 100755
new mode 100644
index 9fe8f70..a64753c
Binary files a/dist/icons/white/png/256x256/_spritesheet.png and b/dist/icons/white/png/256x256/_spritesheet.png differ
diff --git a/dist/icons/white/png/256x256/nt_chanceflurries.png b/dist/icons/white/png/256x256/nt_chanceflurries.png
new file mode 100755
index 0000000..57c231e
Binary files /dev/null and b/dist/icons/white/png/256x256/nt_chanceflurries.png differ
diff --git a/dist/icons/white/png/256x256/nt_chancerain.png b/dist/icons/white/png/256x256/nt_chancerain.png
new file mode 100755
index 0000000..535f909
Binary files /dev/null and b/dist/icons/white/png/256x256/nt_chancerain.png differ
diff --git a/dist/icons/white/png/256x256/nt_chancesleet.png b/dist/icons/white/png/256x256/nt_chancesleet.png
new file mode 100755
index 0000000..4b035ce
Binary files /dev/null and b/dist/icons/white/png/256x256/nt_chancesleet.png differ
diff --git a/dist/icons/white/png/256x256/nt_chancesnow.png b/dist/icons/white/png/256x256/nt_chancesnow.png
new file mode 100755
index 0000000..8d7d960
Binary files /dev/null and b/dist/icons/white/png/256x256/nt_chancesnow.png differ
diff --git a/dist/icons/white/png/256x256/nt_chancetstorms.png b/dist/icons/white/png/256x256/nt_chancetstorms.png
new file mode 100755
index 0000000..32a72a3
Binary files /dev/null and b/dist/icons/white/png/256x256/nt_chancetstorms.png differ
diff --git a/dist/icons/white/png/256x256/nt_clear.png b/dist/icons/white/png/256x256/nt_clear.png
new file mode 100644
index 0000000..841725f
Binary files /dev/null and b/dist/icons/white/png/256x256/nt_clear.png differ
diff --git a/dist/icons/white/png/256x256/nt_cloudy.png b/dist/icons/white/png/256x256/nt_cloudy.png
new file mode 100755
index 0000000..a2f6aa4
Binary files /dev/null and b/dist/icons/white/png/256x256/nt_cloudy.png differ
diff --git a/dist/icons/white/png/256x256/nt_flurries.png b/dist/icons/white/png/256x256/nt_flurries.png
new file mode 100755
index 0000000..c4e3fb9
Binary files /dev/null and b/dist/icons/white/png/256x256/nt_flurries.png differ
diff --git a/dist/icons/white/png/256x256/nt_fog.png b/dist/icons/white/png/256x256/nt_fog.png
new file mode 100755
index 0000000..a4a961c
Binary files /dev/null and b/dist/icons/white/png/256x256/nt_fog.png differ
diff --git a/dist/icons/white/png/256x256/nt_hazy.png b/dist/icons/white/png/256x256/nt_hazy.png
new file mode 100755
index 0000000..a4a961c
Binary files /dev/null and b/dist/icons/white/png/256x256/nt_hazy.png differ
diff --git a/dist/icons/white/png/256x256/nt_mostlycloudy.png b/dist/icons/white/png/256x256/nt_mostlycloudy.png
new file mode 100644
index 0000000..d222de0
Binary files /dev/null and b/dist/icons/white/png/256x256/nt_mostlycloudy.png differ
diff --git a/dist/icons/white/png/256x256/nt_mostlysunny.png b/dist/icons/white/png/256x256/nt_mostlysunny.png
new file mode 100644
index 0000000..6f089cc
Binary files /dev/null and b/dist/icons/white/png/256x256/nt_mostlysunny.png differ
diff --git a/dist/icons/white/png/256x256/nt_partlycloudy.png b/dist/icons/white/png/256x256/nt_partlycloudy.png
new file mode 100644
index 0000000..6f089cc
Binary files /dev/null and b/dist/icons/white/png/256x256/nt_partlycloudy.png differ
diff --git a/dist/icons/white/png/256x256/nt_partlysunny.png b/dist/icons/white/png/256x256/nt_partlysunny.png
new file mode 100644
index 0000000..d222de0
Binary files /dev/null and b/dist/icons/white/png/256x256/nt_partlysunny.png differ
diff --git a/dist/icons/white/png/256x256/nt_rain.png b/dist/icons/white/png/256x256/nt_rain.png
new file mode 100755
index 0000000..657d9a6
Binary files /dev/null and b/dist/icons/white/png/256x256/nt_rain.png differ
diff --git a/dist/icons/white/png/256x256/nt_sleet.png b/dist/icons/white/png/256x256/nt_sleet.png
new file mode 100755
index 0000000..ee630d0
Binary files /dev/null and b/dist/icons/white/png/256x256/nt_sleet.png differ
diff --git a/dist/icons/white/png/256x256/nt_snow.png b/dist/icons/white/png/256x256/nt_snow.png
new file mode 100755
index 0000000..d934834
Binary files /dev/null and b/dist/icons/white/png/256x256/nt_snow.png differ
diff --git a/dist/icons/white/png/256x256/nt_sunny.png b/dist/icons/white/png/256x256/nt_sunny.png
new file mode 100644
index 0000000..841725f
Binary files /dev/null and b/dist/icons/white/png/256x256/nt_sunny.png differ
diff --git a/dist/icons/white/png/256x256/nt_tstorms.png b/dist/icons/white/png/256x256/nt_tstorms.png
new file mode 100755
index 0000000..cdd3111
Binary files /dev/null and b/dist/icons/white/png/256x256/nt_tstorms.png differ
diff --git a/dist/icons/white/png/256x256/nt_unknown.png b/dist/icons/white/png/256x256/nt_unknown.png
new file mode 100755
index 0000000..189ca85
Binary files /dev/null and b/dist/icons/white/png/256x256/nt_unknown.png differ
diff --git a/dist/icons/white/png/32x32/_nt_spritesheet.png b/dist/icons/white/png/32x32/_nt_spritesheet.png
new file mode 100644
index 0000000..b4eae40
Binary files /dev/null and b/dist/icons/white/png/32x32/_nt_spritesheet.png differ
diff --git a/dist/icons/white/png/32x32/_spritesheet.png b/dist/icons/white/png/32x32/_spritesheet.png
index e8187b2..fc8b145 100755
Binary files a/dist/icons/white/png/32x32/_spritesheet.png and b/dist/icons/white/png/32x32/_spritesheet.png differ
diff --git a/dist/icons/white/png/32x32/nt_chanceflurries.png b/dist/icons/white/png/32x32/nt_chanceflurries.png
new file mode 100755
index 0000000..7f4e72e
Binary files /dev/null and b/dist/icons/white/png/32x32/nt_chanceflurries.png differ
diff --git a/dist/icons/white/png/32x32/nt_chancerain.png b/dist/icons/white/png/32x32/nt_chancerain.png
new file mode 100755
index 0000000..15679e8
Binary files /dev/null and b/dist/icons/white/png/32x32/nt_chancerain.png differ
diff --git a/dist/icons/white/png/32x32/nt_chancesleet.png b/dist/icons/white/png/32x32/nt_chancesleet.png
new file mode 100755
index 0000000..a8321fb
Binary files /dev/null and b/dist/icons/white/png/32x32/nt_chancesleet.png differ
diff --git a/dist/icons/white/png/32x32/nt_chancesnow.png b/dist/icons/white/png/32x32/nt_chancesnow.png
new file mode 100755
index 0000000..d72d936
Binary files /dev/null and b/dist/icons/white/png/32x32/nt_chancesnow.png differ
diff --git a/dist/icons/white/png/32x32/nt_chancetstorms.png b/dist/icons/white/png/32x32/nt_chancetstorms.png
new file mode 100755
index 0000000..2e3ee3a
Binary files /dev/null and b/dist/icons/white/png/32x32/nt_chancetstorms.png differ
diff --git a/dist/icons/white/png/32x32/nt_clear.png b/dist/icons/white/png/32x32/nt_clear.png
new file mode 100644
index 0000000..02732fb
Binary files /dev/null and b/dist/icons/white/png/32x32/nt_clear.png differ
diff --git a/dist/icons/white/png/32x32/nt_cloudy.png b/dist/icons/white/png/32x32/nt_cloudy.png
new file mode 100755
index 0000000..cc3ef66
Binary files /dev/null and b/dist/icons/white/png/32x32/nt_cloudy.png differ
diff --git a/dist/icons/white/png/32x32/nt_flurries.png b/dist/icons/white/png/32x32/nt_flurries.png
new file mode 100755
index 0000000..b39c2ba
Binary files /dev/null and b/dist/icons/white/png/32x32/nt_flurries.png differ
diff --git a/dist/icons/white/png/32x32/nt_fog.png b/dist/icons/white/png/32x32/nt_fog.png
new file mode 100755
index 0000000..8e69a49
Binary files /dev/null and b/dist/icons/white/png/32x32/nt_fog.png differ
diff --git a/dist/icons/white/png/32x32/nt_hazy.png b/dist/icons/white/png/32x32/nt_hazy.png
new file mode 100755
index 0000000..8e69a49
Binary files /dev/null and b/dist/icons/white/png/32x32/nt_hazy.png differ
diff --git a/dist/icons/white/png/32x32/nt_mostlycloudy.png b/dist/icons/white/png/32x32/nt_mostlycloudy.png
new file mode 100644
index 0000000..898494a
Binary files /dev/null and b/dist/icons/white/png/32x32/nt_mostlycloudy.png differ
diff --git a/dist/icons/white/png/32x32/nt_mostlysunny.png b/dist/icons/white/png/32x32/nt_mostlysunny.png
new file mode 100644
index 0000000..1d4d739
Binary files /dev/null and b/dist/icons/white/png/32x32/nt_mostlysunny.png differ
diff --git a/dist/icons/white/png/32x32/nt_partlycloudy.png b/dist/icons/white/png/32x32/nt_partlycloudy.png
new file mode 100644
index 0000000..1d4d739
Binary files /dev/null and b/dist/icons/white/png/32x32/nt_partlycloudy.png differ
diff --git a/dist/icons/white/png/32x32/nt_partlysunny.png b/dist/icons/white/png/32x32/nt_partlysunny.png
new file mode 100644
index 0000000..898494a
Binary files /dev/null and b/dist/icons/white/png/32x32/nt_partlysunny.png differ
diff --git a/dist/icons/white/png/32x32/nt_rain.png b/dist/icons/white/png/32x32/nt_rain.png
new file mode 100755
index 0000000..9a39772
Binary files /dev/null and b/dist/icons/white/png/32x32/nt_rain.png differ
diff --git a/dist/icons/white/png/32x32/nt_sleet.png b/dist/icons/white/png/32x32/nt_sleet.png
new file mode 100755
index 0000000..9822213
Binary files /dev/null and b/dist/icons/white/png/32x32/nt_sleet.png differ
diff --git a/dist/icons/white/png/32x32/nt_snow.png b/dist/icons/white/png/32x32/nt_snow.png
new file mode 100755
index 0000000..1b8930d
Binary files /dev/null and b/dist/icons/white/png/32x32/nt_snow.png differ
diff --git a/dist/icons/white/png/32x32/nt_sunny.png b/dist/icons/white/png/32x32/nt_sunny.png
new file mode 100644
index 0000000..02732fb
Binary files /dev/null and b/dist/icons/white/png/32x32/nt_sunny.png differ
diff --git a/dist/icons/white/png/32x32/nt_tstorms.png b/dist/icons/white/png/32x32/nt_tstorms.png
new file mode 100755
index 0000000..81ed3ca
Binary files /dev/null and b/dist/icons/white/png/32x32/nt_tstorms.png differ
diff --git a/dist/icons/white/png/32x32/nt_unknown.png b/dist/icons/white/png/32x32/nt_unknown.png
new file mode 100755
index 0000000..a4353ee
Binary files /dev/null and b/dist/icons/white/png/32x32/nt_unknown.png differ
diff --git a/dist/icons/white/png/64x64/_nt_spritesheet.png b/dist/icons/white/png/64x64/_nt_spritesheet.png
new file mode 100644
index 0000000..d4ae849
Binary files /dev/null and b/dist/icons/white/png/64x64/_nt_spritesheet.png differ
diff --git a/dist/icons/white/png/64x64/_spritesheet.png b/dist/icons/white/png/64x64/_spritesheet.png
index ae5ae9b..bab51f9 100755
Binary files a/dist/icons/white/png/64x64/_spritesheet.png and b/dist/icons/white/png/64x64/_spritesheet.png differ
diff --git a/dist/icons/white/png/64x64/nt_chanceflurries.png b/dist/icons/white/png/64x64/nt_chanceflurries.png
new file mode 100755
index 0000000..3ddbe1c
Binary files /dev/null and b/dist/icons/white/png/64x64/nt_chanceflurries.png differ
diff --git a/dist/icons/white/png/64x64/nt_chancerain.png b/dist/icons/white/png/64x64/nt_chancerain.png
new file mode 100755
index 0000000..c81fe61
Binary files /dev/null and b/dist/icons/white/png/64x64/nt_chancerain.png differ
diff --git a/dist/icons/white/png/64x64/nt_chancesleet.png b/dist/icons/white/png/64x64/nt_chancesleet.png
new file mode 100755
index 0000000..fe57a17
Binary files /dev/null and b/dist/icons/white/png/64x64/nt_chancesleet.png differ
diff --git a/dist/icons/white/png/64x64/nt_chancesnow.png b/dist/icons/white/png/64x64/nt_chancesnow.png
new file mode 100755
index 0000000..9922529
Binary files /dev/null and b/dist/icons/white/png/64x64/nt_chancesnow.png differ
diff --git a/dist/icons/white/png/64x64/nt_chancetstorms.png b/dist/icons/white/png/64x64/nt_chancetstorms.png
new file mode 100755
index 0000000..52c56c6
Binary files /dev/null and b/dist/icons/white/png/64x64/nt_chancetstorms.png differ
diff --git a/dist/icons/white/png/64x64/nt_clear.png b/dist/icons/white/png/64x64/nt_clear.png
new file mode 100644
index 0000000..6ec1054
Binary files /dev/null and b/dist/icons/white/png/64x64/nt_clear.png differ
diff --git a/dist/icons/white/png/64x64/nt_cloudy.png b/dist/icons/white/png/64x64/nt_cloudy.png
new file mode 100755
index 0000000..223721d
Binary files /dev/null and b/dist/icons/white/png/64x64/nt_cloudy.png differ
diff --git a/dist/icons/white/png/64x64/nt_flurries.png b/dist/icons/white/png/64x64/nt_flurries.png
new file mode 100755
index 0000000..d9135a0
Binary files /dev/null and b/dist/icons/white/png/64x64/nt_flurries.png differ
diff --git a/dist/icons/white/png/64x64/nt_fog.png b/dist/icons/white/png/64x64/nt_fog.png
new file mode 100755
index 0000000..c8be780
Binary files /dev/null and b/dist/icons/white/png/64x64/nt_fog.png differ
diff --git a/dist/icons/white/png/64x64/nt_hazy.png b/dist/icons/white/png/64x64/nt_hazy.png
new file mode 100755
index 0000000..c8be780
Binary files /dev/null and b/dist/icons/white/png/64x64/nt_hazy.png differ
diff --git a/dist/icons/white/png/64x64/nt_mostlycloudy.png b/dist/icons/white/png/64x64/nt_mostlycloudy.png
new file mode 100644
index 0000000..545042e
Binary files /dev/null and b/dist/icons/white/png/64x64/nt_mostlycloudy.png differ
diff --git a/dist/icons/white/png/64x64/nt_mostlysunny.png b/dist/icons/white/png/64x64/nt_mostlysunny.png
new file mode 100644
index 0000000..382bd21
Binary files /dev/null and b/dist/icons/white/png/64x64/nt_mostlysunny.png differ
diff --git a/dist/icons/white/png/64x64/nt_partlycloudy.png b/dist/icons/white/png/64x64/nt_partlycloudy.png
new file mode 100644
index 0000000..382bd21
Binary files /dev/null and b/dist/icons/white/png/64x64/nt_partlycloudy.png differ
diff --git a/dist/icons/white/png/64x64/nt_partlysunny.png b/dist/icons/white/png/64x64/nt_partlysunny.png
new file mode 100644
index 0000000..545042e
Binary files /dev/null and b/dist/icons/white/png/64x64/nt_partlysunny.png differ
diff --git a/dist/icons/white/png/64x64/nt_rain.png b/dist/icons/white/png/64x64/nt_rain.png
new file mode 100755
index 0000000..3aed14e
Binary files /dev/null and b/dist/icons/white/png/64x64/nt_rain.png differ
diff --git a/dist/icons/white/png/64x64/nt_sleet.png b/dist/icons/white/png/64x64/nt_sleet.png
new file mode 100755
index 0000000..ba69171
Binary files /dev/null and b/dist/icons/white/png/64x64/nt_sleet.png differ
diff --git a/dist/icons/white/png/64x64/nt_snow.png b/dist/icons/white/png/64x64/nt_snow.png
new file mode 100755
index 0000000..795e06d
Binary files /dev/null and b/dist/icons/white/png/64x64/nt_snow.png differ
diff --git a/dist/icons/white/png/64x64/nt_sunny.png b/dist/icons/white/png/64x64/nt_sunny.png
new file mode 100644
index 0000000..6ec1054
Binary files /dev/null and b/dist/icons/white/png/64x64/nt_sunny.png differ
diff --git a/dist/icons/white/png/64x64/nt_tstorms.png b/dist/icons/white/png/64x64/nt_tstorms.png
new file mode 100755
index 0000000..285f960
Binary files /dev/null and b/dist/icons/white/png/64x64/nt_tstorms.png differ
diff --git a/dist/icons/white/png/64x64/nt_unknown.png b/dist/icons/white/png/64x64/nt_unknown.png
new file mode 100755
index 0000000..1b66c1b
Binary files /dev/null and b/dist/icons/white/png/64x64/nt_unknown.png differ
diff --git a/dist/icons/white/svg/nt_chanceflurries.svg b/dist/icons/white/svg/nt_chanceflurries.svg
new file mode 100644
index 0000000..ceb0ceb
--- /dev/null
+++ b/dist/icons/white/svg/nt_chanceflurries.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/white/svg/nt_chancerain.svg b/dist/icons/white/svg/nt_chancerain.svg
new file mode 100644
index 0000000..a8f53f5
--- /dev/null
+++ b/dist/icons/white/svg/nt_chancerain.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/white/svg/nt_chancesleet.svg b/dist/icons/white/svg/nt_chancesleet.svg
new file mode 100644
index 0000000..cf5f8b8
--- /dev/null
+++ b/dist/icons/white/svg/nt_chancesleet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/white/svg/nt_chancesnow.svg b/dist/icons/white/svg/nt_chancesnow.svg
new file mode 100644
index 0000000..f400cd0
--- /dev/null
+++ b/dist/icons/white/svg/nt_chancesnow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/white/svg/nt_chancetstorms.svg b/dist/icons/white/svg/nt_chancetstorms.svg
new file mode 100644
index 0000000..36cdab1
--- /dev/null
+++ b/dist/icons/white/svg/nt_chancetstorms.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/white/svg/nt_clear.svg b/dist/icons/white/svg/nt_clear.svg
new file mode 100644
index 0000000..2af0c4c
--- /dev/null
+++ b/dist/icons/white/svg/nt_clear.svg
@@ -0,0 +1,11 @@
+
+
+
diff --git a/dist/icons/white/svg/nt_cloudy.svg b/dist/icons/white/svg/nt_cloudy.svg
new file mode 100644
index 0000000..27c6d48
--- /dev/null
+++ b/dist/icons/white/svg/nt_cloudy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/white/svg/nt_flurries.svg b/dist/icons/white/svg/nt_flurries.svg
new file mode 100644
index 0000000..df1876f
--- /dev/null
+++ b/dist/icons/white/svg/nt_flurries.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/white/svg/nt_fog.svg b/dist/icons/white/svg/nt_fog.svg
new file mode 100644
index 0000000..f2ea9ea
--- /dev/null
+++ b/dist/icons/white/svg/nt_fog.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/white/svg/nt_hazy.svg b/dist/icons/white/svg/nt_hazy.svg
new file mode 100644
index 0000000..c1c4dc4
--- /dev/null
+++ b/dist/icons/white/svg/nt_hazy.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/white/svg/nt_mostlycloudy.svg b/dist/icons/white/svg/nt_mostlycloudy.svg
new file mode 100644
index 0000000..7af604b
--- /dev/null
+++ b/dist/icons/white/svg/nt_mostlycloudy.svg
@@ -0,0 +1,18 @@
+
+
+
diff --git a/dist/icons/white/svg/nt_mostlysunny.svg b/dist/icons/white/svg/nt_mostlysunny.svg
new file mode 100644
index 0000000..88890f9
--- /dev/null
+++ b/dist/icons/white/svg/nt_mostlysunny.svg
@@ -0,0 +1,18 @@
+
+
+
diff --git a/dist/icons/white/svg/nt_partlycloudy.svg b/dist/icons/white/svg/nt_partlycloudy.svg
new file mode 100644
index 0000000..88890f9
--- /dev/null
+++ b/dist/icons/white/svg/nt_partlycloudy.svg
@@ -0,0 +1,18 @@
+
+
+
diff --git a/dist/icons/white/svg/nt_partlysunny.svg b/dist/icons/white/svg/nt_partlysunny.svg
new file mode 100644
index 0000000..7af604b
--- /dev/null
+++ b/dist/icons/white/svg/nt_partlysunny.svg
@@ -0,0 +1,18 @@
+
+
+
diff --git a/dist/icons/white/svg/nt_rain.svg b/dist/icons/white/svg/nt_rain.svg
new file mode 100644
index 0000000..46e7336
--- /dev/null
+++ b/dist/icons/white/svg/nt_rain.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/white/svg/nt_sleet.svg b/dist/icons/white/svg/nt_sleet.svg
new file mode 100644
index 0000000..3ff6621
--- /dev/null
+++ b/dist/icons/white/svg/nt_sleet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/white/svg/nt_snow.svg b/dist/icons/white/svg/nt_snow.svg
new file mode 100644
index 0000000..86b432e
--- /dev/null
+++ b/dist/icons/white/svg/nt_snow.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/white/svg/nt_sunny.svg b/dist/icons/white/svg/nt_sunny.svg
new file mode 100644
index 0000000..2af0c4c
--- /dev/null
+++ b/dist/icons/white/svg/nt_sunny.svg
@@ -0,0 +1,11 @@
+
+
+
diff --git a/dist/icons/white/svg/nt_tstorms.svg b/dist/icons/white/svg/nt_tstorms.svg
new file mode 100644
index 0000000..0352ca6
--- /dev/null
+++ b/dist/icons/white/svg/nt_tstorms.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/icons/white/svg/nt_unknown.svg b/dist/icons/white/svg/nt_unknown.svg
new file mode 100644
index 0000000..251d94e
--- /dev/null
+++ b/dist/icons/white/svg/nt_unknown.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/dist/wu-icons-style.css b/dist/wu-icons-style.css
index 8d2dd75..c697888 100644
--- a/dist/wu-icons-style.css
+++ b/dist/wu-icons-style.css
@@ -1,70 +1,249 @@
.wu {
- display: inline-block;
- background-repeat: no-repeat;
- padding: 0;
- margin: 0;
+ display: inline-block;
+ background-repeat: no-repeat;
+ padding: 0;
+ margin: 0;
}
+/*! Setup Default Sizes */
.wu-16 { width: 16px; height: 16px; }
.wu-32 { width: 32px; height: 32px; }
.wu-64 { width: 64px; height: 64px; }
.wu-128 { width: 128px; height: 128px; }
.wu-256 { width: 256px; height: 256px; }
-.wu-black.wu-chanceflurries { background: url(icons/black/svg/chanceflurries.svg), linear-gradient(transparent, transparent); }
-.wu-black.wu-chancerain { background: url(icons/black/svg/chancerain.svg), linear-gradient(transparent, transparent); }
-.wu-black.wu-chancesleet { background: url(icons/black/svg/chancesleet.svg), linear-gradient(transparent, transparent); }
-.wu-black.wu-chancesnow { background: url(icons/black/svg/chancesnow.svg), linear-gradient(transparent, transparent); }
-.wu-black.wu-chancetstorms { background: url(icons/black/svg/chancetstorms.svg), linear-gradient(transparent, transparent); }
-.wu-black.wu-clear { background: url(icons/black/svg/clear.svg), linear-gradient(transparent, transparent); }
-.wu-black.wu-cloudy { background: url(icons/black/svg/cloudy.svg), linear-gradient(transparent, transparent); }
-.wu-black.wu-flurries { background: url(icons/black/svg/flurries.svg), linear-gradient(transparent, transparent); }
-.wu-black.wu-fog { background: url(icons/black/svg/fog.svg), linear-gradient(transparent, transparent); }
-.wu-black.wu-hazy { background: url(icons/black/svg/hazy.svg), linear-gradient(transparent, transparent); }
-.wu-black.wu-mostlycloudy { background: url(icons/black/svg/mostlycloudy.svg), linear-gradient(transparent, transparent); }
-.wu-black.wu-mostlysunny { background: url(icons/black/svg/mostlysunny.svg), linear-gradient(transparent, transparent); }
-.wu-black.wu-partlycloudy { background: url(icons/black/svg/partlycloudy.svg), linear-gradient(transparent, transparent); }
-.wu-black.wu-partlysunny { background: url(icons/black/svg/partlysunny.svg), linear-gradient(transparent, transparent); }
-.wu-black.wu-rain { background: url(icons/black/svg/rain.svg), linear-gradient(transparent, transparent); }
-.wu-black.wu-sleet { background: url(icons/black/svg/sleet.svg), linear-gradient(transparent, transparent); }
-.wu-black.wu-snow { background: url(icons/black/svg/snow.svg), linear-gradient(transparent, transparent); }
-.wu-black.wu-sunny { background: url(icons/black/svg/sunny.svg), linear-gradient(transparent, transparent); }
-.wu-black.wu-tstorms { background: url(icons/black/svg/tstorms.svg), linear-gradient(transparent, transparent); }
-.wu-black.wu-unknown { background: url(icons/black/svg/unknown.svg), linear-gradient(transparent, transparent); }
+/*! Black Day SVG Icons */
+.wu-black.wu-chanceflurries { background: url(icons/black/svg/chanceflurries.svg); }
+.wu-black.wu-chancerain { background: url(icons/black/svg/chancerain.svg); }
+.wu-black.wu-chancesleet { background: url(icons/black/svg/chancesleet.svg); }
+.wu-black.wu-chancesnow { background: url(icons/black/svg/chancesnow.svg); }
+.wu-black.wu-chancetstorms { background: url(icons/black/svg/chancetstorms.svg); }
+.wu-black.wu-clear { background: url(icons/black/svg/clear.svg); }
+.wu-black.wu-cloudy { background: url(icons/black/svg/cloudy.svg); }
+.wu-black.wu-flurries { background: url(icons/black/svg/flurries.svg); }
+.wu-black.wu-fog { background: url(icons/black/svg/fog.svg); }
+.wu-black.wu-hazy { background: url(icons/black/svg/hazy.svg); }
+.wu-black.wu-mostlycloudy { background: url(icons/black/svg/mostlycloudy.svg); }
+.wu-black.wu-mostlysunny { background: url(icons/black/svg/mostlysunny.svg); }
+.wu-black.wu-partlycloudy { background: url(icons/black/svg/partlycloudy.svg); }
+.wu-black.wu-partlysunny { background: url(icons/black/svg/partlysunny.svg); }
+.wu-black.wu-rain { background: url(icons/black/svg/rain.svg); }
+.wu-black.wu-sleet { background: url(icons/black/svg/sleet.svg); }
+.wu-black.wu-snow { background: url(icons/black/svg/snow.svg); }
+.wu-black.wu-sunny { background: url(icons/black/svg/sunny.svg); }
+.wu-black.wu-tstorms { background: url(icons/black/svg/tstorms.svg); }
+.wu-black.wu-unknown { background: url(icons/black/svg/unknown.svg); }
-.wu-white.wu-chanceflurries { background: url(icons/white/svg/chanceflurries.svg), linear-gradient(transparent, transparent); }
-.wu-white.wu-chancerain { background: url(icons/white/svg/chancerain.svg), linear-gradient(transparent, transparent); }
-.wu-white.wu-chancesleet { background: url(icons/white/svg/chancesleet.svg), linear-gradient(transparent, transparent); }
-.wu-white.wu-chancesnow { background: url(icons/white/svg/chancesnow.svg), linear-gradient(transparent, transparent); }
-.wu-white.wu-chancetstorms { background: url(icons/white/svg/chancetstorms.svg), linear-gradient(transparent, transparent); }
-.wu-white.wu-clear { background: url(icons/white/svg/clear.svg), linear-gradient(transparent, transparent); }
-.wu-white.wu-cloudy { background: url(icons/white/svg/cloudy.svg), linear-gradient(transparent, transparent); }
-.wu-white.wu-flurries { background: url(icons/white/svg/flurries.svg), linear-gradient(transparent, transparent); }
-.wu-white.wu-fog { background: url(icons/white/svg/fog.svg), linear-gradient(transparent, transparent); }
-.wu-white.wu-hazy { background: url(icons/white/svg/hazy.svg), linear-gradient(transparent, transparent); }
-.wu-white.wu-mostlycloudy { background: url(icons/white/svg/mostlycloudy.svg), linear-gradient(transparent, transparent); }
-.wu-white.wu-mostlysunny { background: url(icons/white/svg/mostlysunny.svg), linear-gradient(transparent, transparent); }
-.wu-white.wu-partlycloudy { background: url(icons/white/svg/partlycloudy.svg), linear-gradient(transparent, transparent); }
-.wu-white.wu-partlysunny { background: url(icons/white/svg/partlysunny.svg), linear-gradient(transparent, transparent); }
-.wu-white.wu-rain { background: url(icons/white/svg/rain.svg), linear-gradient(transparent, transparent); }
-.wu-white.wu-sleet { background: url(icons/white/svg/sleet.svg), linear-gradient(transparent, transparent); }
-.wu-white.wu-snow { background: url(icons/white/svg/snow.svg), linear-gradient(transparent, transparent); }
-.wu-white.wu-sunny { background: url(icons/white/svg/sunny.svg), linear-gradient(transparent, transparent); }
-.wu-white.wu-tstorms { background: url(icons/white/svg/tstorms.svg), linear-gradient(transparent, transparent); }
-.wu-white.wu-unknown { background: url(icons/white/svg/unknown.svg), linear-gradient(transparent, transparent); }
+/*! White Day SVG Icons */
+.wu-white.wu-chanceflurries { background: url(icons/white/svg/chanceflurries.svg); }
+.wu-white.wu-chancerain { background: url(icons/white/svg/chancerain.svg); }
+.wu-white.wu-chancesleet { background: url(icons/white/svg/chancesleet.svg); }
+.wu-white.wu-chancesnow { background: url(icons/white/svg/chancesnow.svg); }
+.wu-white.wu-chancetstorms { background: url(icons/white/svg/chancetstorms.svg); }
+.wu-white.wu-clear { background: url(icons/white/svg/clear.svg); }
+.wu-white.wu-cloudy { background: url(icons/white/svg/cloudy.svg); }
+.wu-white.wu-flurries { background: url(icons/white/svg/flurries.svg); }
+.wu-white.wu-fog { background: url(icons/white/svg/fog.svg); }
+.wu-white.wu-hazy { background: url(icons/white/svg/hazy.svg); }
+.wu-white.wu-mostlycloudy { background: url(icons/white/svg/mostlycloudy.svg); }
+.wu-white.wu-mostlysunny { background: url(icons/white/svg/mostlysunny.svg); }
+.wu-white.wu-partlycloudy { background: url(icons/white/svg/partlycloudy.svg); }
+.wu-white.wu-partlysunny { background: url(icons/white/svg/partlysunny.svg); }
+.wu-white.wu-rain { background: url(icons/white/svg/rain.svg); }
+.wu-white.wu-sleet { background: url(icons/white/svg/sleet.svg); }
+.wu-white.wu-snow { background: url(icons/white/svg/snow.svg); }
+.wu-white.wu-sunny { background: url(icons/white/svg/sunny.svg); }
+.wu-white.wu-tstorms { background: url(icons/white/svg/tstorms.svg); }
+.wu-white.wu-unknown { background: url(icons/white/svg/unknown.svg); }
+/*! Solid Back Day SVG Icons */
+.wu-solid-black.wu-chanceflurries { background: url(icons/solid-black/svg/chanceflurries.svg); }
+.wu-solid-black.wu-chancerain { background: url(icons/solid-black/svg/chancerain.svg); }
+.wu-solid-black.wu-chancesleet { background: url(icons/solid-black/svg/chancesleet.svg); }
+.wu-solid-black.wu-chancesnow { background: url(icons/solid-black/svg/chancesnow.svg); }
+.wu-solid-black.wu-chancetstorms { background: url(icons/solid-black/svg/chancetstorms.svg); }
+.wu-solid-black.wu-clear { background: url(icons/solid-black/svg/clear.svg); }
+.wu-solid-black.wu-cloudy { background: url(icons/solid-black/svg/cloudy.svg); }
+.wu-solid-black.wu-flurries { background: url(icons/solid-black/svg/flurries.svg); }
+.wu-solid-black.wu-fog { background: url(icons/solid-black/svg/fog.svg); }
+.wu-solid-black.wu-hazy { background: url(icons/solid-black/svg/hazy.svg); }
+.wu-solid-black.wu-mostlycloudy { background: url(icons/solid-black/svg/mostlycloudy.svg); }
+.wu-solid-black.wu-mostlysunny { background: url(icons/solid-black/svg/mostlysunny.svg); }
+.wu-solid-black.wu-partlycloudy { background: url(icons/solid-black/svg/partlycloudy.svg); }
+.wu-solid-black.wu-partlysunny { background: url(icons/solid-black/svg/partlysunny.svg); }
+.wu-solid-black.wu-rain { background: url(icons/solid-black/svg/rain.svg); }
+.wu-solid-black.wu-sleet { background: url(icons/solid-black/svg/sleet.svg); }
+.wu-solid-black.wu-snow { background: url(icons/solid-black/svg/snow.svg); }
+.wu-solid-black.wu-sunny { background: url(icons/solid-black/svg/sunny.svg); }
+.wu-solid-black.wu-tstorms { background: url(icons/solid-black/svg/tstorms.svg); }
+.wu-solid-black.wu-unknown { background: url(icons/solid-black/svg/unknown.svg); }
+
+/*! Solid White Day SVG Icons */
+.wu-solid-white.wu-chanceflurries { background: url(icons/solid-white/svg/chanceflurries.svg); }
+.wu-solid-white.wu-chancerain { background: url(icons/solid-white/svg/chancerain.svg); }
+.wu-solid-white.wu-chancesleet { background: url(icons/solid-white/svg/chancesleet.svg); }
+.wu-solid-white.wu-chancesnow { background: url(icons/solid-white/svg/chancesnow.svg); }
+.wu-solid-white.wu-chancetstorms { background: url(icons/solid-white/svg/chancetstorms.svg); }
+.wu-solid-white.wu-clear { background: url(icons/solid-white/svg/clear.svg); }
+.wu-solid-white.wu-cloudy { background: url(icons/solid-white/svg/cloudy.svg); }
+.wu-solid-white.wu-flurries { background: url(icons/solid-white/svg/flurries.svg); }
+.wu-solid-white.wu-fog { background: url(icons/solid-white/svg/fog.svg); }
+.wu-solid-white.wu-hazy { background: url(icons/solid-white/svg/hazy.svg); }
+.wu-solid-white.wu-mostlycloudy { background: url(icons/solid-white/svg/mostlycloudy.svg); }
+.wu-solid-white.wu-mostlysunny { background: url(icons/solid-white/svg/mostlysunny.svg); }
+.wu-solid-white.wu-partlycloudy { background: url(icons/solid-white/svg/partlycloudy.svg); }
+.wu-solid-white.wu-partlysunny { background: url(icons/solid-white/svg/partlysunny.svg); }
+.wu-solid-white.wu-rain { background: url(icons/solid-white/svg/rain.svg); }
+.wu-solid-white.wu-sleet { background: url(icons/solid-white/svg/sleet.svg); }
+.wu-solid-white.wu-snow { background: url(icons/solid-white/svg/snow.svg); }
+.wu-solid-white.wu-sunny { background: url(icons/solid-white/svg/sunny.svg); }
+.wu-solid-white.wu-tstorms { background: url(icons/solid-white/svg/tstorms.svg); }
+.wu-solid-white.wu-unknown { background: url(icons/solid-white/svg/unknown.svg); }
+
+/*! Black Night SVG Icons */
+.wu-night.wu-black.wu-chanceflurries { background: url(icons/black/svg/nt_chanceflurries.svg); }
+.wu-night.wu-black.wu-chancerain { background: url(icons/black/svg/nt_chancerain.svg); }
+.wu-night.wu-black.wu-chancesleet { background: url(icons/black/svg/nt_chancesleet.svg); }
+.wu-night.wu-black.wu-chancesnow { background: url(icons/black/svg/nt_chancesnow.svg); }
+.wu-night.wu-black.wu-chancetstorms { background: url(icons/black/svg/nt_chancetstorms.svg); }
+.wu-night.wu-black.wu-clear { background: url(icons/black/svg/nt_clear.svg); }
+.wu-night.wu-black.wu-cloudy { background: url(icons/black/svg/nt_cloudy.svg); }
+.wu-night.wu-black.wu-flurries { background: url(icons/black/svg/nt_flurries.svg); }
+.wu-night.wu-black.wu-fog { background: url(icons/black/svg/nt_fog.svg); }
+.wu-night.wu-black.wu-hazy { background: url(icons/black/svg/nt_hazy.svg); }
+.wu-night.wu-black.wu-mostlycloudy { background: url(icons/black/svg/nt_mostlycloudy.svg); }
+.wu-night.wu-black.wu-mostlysunny { background: url(icons/black/svg/nt_mostlysunny.svg); }
+.wu-night.wu-black.wu-partlycloudy { background: url(icons/black/svg/nt_partlycloudy.svg); }
+.wu-night.wu-black.wu-partlysunny { background: url(icons/black/svg/nt_partlysunny.svg); }
+.wu-night.wu-black.wu-rain { background: url(icons/black/svg/nt_rain.svg); }
+.wu-night.wu-black.wu-sleet { background: url(icons/black/svg/nt_sleet.svg); }
+.wu-night.wu-black.wu-snow { background: url(icons/black/svg/nt_snow.svg); }
+.wu-night.wu-black.wu-sunny { background: url(icons/black/svg/nt_sunny.svg); }
+.wu-night.wu-black.wu-tstorms { background: url(icons/black/svg/nt_tstorms.svg); }
+.wu-night.wu-black.wu-unknown { background: url(icons/black/svg/nt_unknown.svg); }
+
+/*! White Night SVG Icons */
+.wu-night.wu-white.wu-chanceflurries { background: url(icons/white/svg/nt_chanceflurries.svg); }
+.wu-night.wu-white.wu-chancerain { background: url(icons/white/svg/nt_chancerain.svg); }
+.wu-night.wu-white.wu-chancesleet { background: url(icons/white/svg/nt_chancesleet.svg); }
+.wu-night.wu-white.wu-chancesnow { background: url(icons/white/svg/nt_chancesnow.svg); }
+.wu-night.wu-white.wu-chancetstorms { background: url(icons/white/svg/nt_chancetstorms.svg); }
+.wu-night.wu-white.wu-clear { background: url(icons/white/svg/nt_clear.svg); }
+.wu-night.wu-white.wu-cloudy { background: url(icons/white/svg/nt_cloudy.svg); }
+.wu-night.wu-white.wu-flurries { background: url(icons/white/svg/nt_flurries.svg); }
+.wu-night.wu-white.wu-fog { background: url(icons/white/svg/nt_fog.svg); }
+.wu-night.wu-white.wu-hazy { background: url(icons/white/svg/nt_hazy.svg); }
+.wu-night.wu-white.wu-mostlycloudy { background: url(icons/white/svg/nt_mostlycloudy.svg); }
+.wu-night.wu-white.wu-mostlysunny { background: url(icons/white/svg/nt_mostlysunny.svg); }
+.wu-night.wu-white.wu-partlycloudy { background: url(icons/white/svg/nt_partlycloudy.svg); }
+.wu-night.wu-white.wu-partlysunny { background: url(icons/white/svg/nt_partlysunny.svg); }
+.wu-night.wu-white.wu-rain { background: url(icons/white/svg/nt_rain.svg); }
+.wu-night.wu-white.wu-sleet { background: url(icons/white/svg/nt_sleet.svg); }
+.wu-night.wu-white.wu-snow { background: url(icons/white/svg/nt_snow.svg); }
+.wu-night.wu-white.wu-sunny { background: url(icons/white/svg/nt_sunny.svg); }
+.wu-night.wu-white.wu-tstorms { background: url(icons/white/svg/nt_tstorms.svg); }
+.wu-night.wu-white.wu-unknown { background: url(icons/white/svg/nt_unknown.svg); }
+
+/*! Solid Back Night SVG Icons */
+.wu-night.wu-solid-black.wu-chanceflurries { background: url(icons/solid-black/svg/nt_chanceflurries.svg); }
+.wu-night.wu-solid-black.wu-chancerain { background: url(icons/solid-black/svg/nt_chancerain.svg); }
+.wu-night.wu-solid-black.wu-chancesleet { background: url(icons/solid-black/svg/nt_chancesleet.svg); }
+.wu-night.wu-solid-black.wu-chancesnow { background: url(icons/solid-black/svg/nt_chancesnow.svg); }
+.wu-night.wu-solid-black.wu-chancetstorms { background: url(icons/solid-black/svg/nt_chancetstorms.svg); }
+.wu-night.wu-solid-black.wu-clear { background: url(icons/solid-black/svg/nt_clear.svg); }
+.wu-night.wu-solid-black.wu-cloudy { background: url(icons/solid-black/svg/nt_cloudy.svg); }
+.wu-night.wu-solid-black.wu-flurries { background: url(icons/solid-black/svg/nt_flurries.svg); }
+.wu-night.wu-solid-black.wu-fog { background: url(icons/solid-black/svg/nt_fog.svg); }
+.wu-night.wu-solid-black.wu-hazy { background: url(icons/solid-black/svg/nt_hazy.svg); }
+.wu-night.wu-solid-black.wu-mostlycloudy { background: url(icons/solid-black/svg/nt_mostlycloudy.svg); }
+.wu-night.wu-solid-black.wu-mostlysunny { background: url(icons/solid-black/svg/nt_mostlysunny.svg); }
+.wu-night.wu-solid-black.wu-partlycloudy { background: url(icons/solid-black/svg/nt_partlycloudy.svg); }
+.wu-night.wu-solid-black.wu-partlysunny { background: url(icons/solid-black/svg/nt_partlysunny.svg); }
+.wu-night.wu-solid-black.wu-rain { background: url(icons/solid-black/svg/nt_rain.svg); }
+.wu-night.wu-solid-black.wu-sleet { background: url(icons/solid-black/svg/nt_sleet.svg); }
+.wu-night.wu-solid-black.wu-snow { background: url(icons/solid-black/svg/nt_snow.svg); }
+.wu-night.wu-solid-black.wu-sunny { background: url(icons/solid-black/svg/nt_sunny.svg); }
+.wu-night.wu-solid-black.wu-tstorms { background: url(icons/solid-black/svg/nt_tstorms.svg); }
+.wu-night.wu-solid-black.wu-unknown { background: url(icons/solid-black/svg/nt_unknown.svg); }
+
+/*! Solid White Night SVG Icons */
+.wu-night.wu-solid-white.wu-chanceflurries { background: url(icons/solid-white/svg/nt_chanceflurries.svg); }
+.wu-night.wu-solid-white.wu-chancerain { background: url(icons/solid-white/svg/nt_chancerain.svg); }
+.wu-night.wu-solid-white.wu-chancesleet { background: url(icons/solid-white/svg/nt_chancesleet.svg); }
+.wu-night.wu-solid-white.wu-chancesnow { background: url(icons/solid-white/svg/nt_chancesnow.svg); }
+.wu-night.wu-solid-white.wu-chancetstorms { background: url(icons/solid-white/svg/nt_chancetstorms.svg); }
+.wu-night.wu-solid-white.wu-clear { background: url(icons/solid-white/svg/nt_clear.svg); }
+.wu-night.wu-solid-white.wu-cloudy { background: url(icons/solid-white/svg/nt_cloudy.svg); }
+.wu-night.wu-solid-white.wu-flurries { background: url(icons/solid-white/svg/nt_flurries.svg); }
+.wu-night.wu-solid-white.wu-fog { background: url(icons/solid-white/svg/nt_fog.svg); }
+.wu-night.wu-solid-white.wu-hazy { background: url(icons/solid-white/svg/nt_hazy.svg); }
+.wu-night.wu-solid-white.wu-mostlycloudy { background: url(icons/solid-white/svg/nt_mostlycloudy.svg); }
+.wu-night.wu-solid-white.wu-mostlysunny { background: url(icons/solid-white/svg/nt_mostlysunny.svg); }
+.wu-night.wu-solid-white.wu-partlycloudy { background: url(icons/solid-white/svg/nt_partlycloudy.svg); }
+.wu-night.wu-solid-white.wu-partlysunny { background: url(icons/solid-white/svg/nt_partlysunny.svg); }
+.wu-night.wu-solid-white.wu-rain { background: url(icons/solid-white/svg/nt_rain.svg); }
+.wu-night.wu-solid-white.wu-sleet { background: url(icons/solid-white/svg/nt_sleet.svg); }
+.wu-night.wu-solid-white.wu-snow { background: url(icons/solid-white/svg/nt_snow.svg); }
+.wu-night.wu-solid-white.wu-sunny { background: url(icons/solid-white/svg/nt_sunny.svg); }
+.wu-night.wu-solid-white.wu-tstorms { background: url(icons/solid-white/svg/nt_tstorms.svg); }
+.wu-night.wu-solid-white.wu-unknown { background: url(icons/solid-white/svg/nt_unknown.svg); }
+
+/*! Black Day PNG Icons */
.no-svg .wu-16.wu-black { background-image: url(icons/black/png/16x16/_spritesheet.png); }
.no-svg .wu-32.wu-black { background-image: url(icons/black/png/32x32/_spritesheet.png); }
.no-svg .wu-64.wu-black { background-image: url(icons/black/png/64x64/_spritesheet.png); }
.no-svg .wu-128.wu-black { background-image: url(icons/black/png/128x128/_spritesheet.png); }
.no-svg .wu-256.wu-black { background-image: url(icons/black/png/256x256/_spritesheet.png); }
+/*! White Day PNG Icons */
.no-svg .wu-16.wu-white { background-image: url(icons/white/png/16x16/_spritesheet.png); }
.no-svg .wu-32.wu-white { background-image: url(icons/white/png/32x32/_spritesheet.png); }
.no-svg .wu-64.wu-white { background-image: url(icons/white/png/64x64/_spritesheet.png); }
.no-svg .wu-128.wu-white { background-image: url(icons/white/png/128x128/_spritesheet.png); }
.no-svg .wu-256.wu-white { background-image: url(icons/white/png/256x256/_spritesheet.png); }
+/*! Solid Black Day PNG Icons */
+.no-svg .wu-16.wu-solid-black { background-image: url(icons/solid-black/png/16x16/_spritesheet.png); }
+.no-svg .wu-32.wu-solid-black { background-image: url(icons/solid-black/png/32x32/_spritesheet.png); }
+.no-svg .wu-64.wu-solid-black { background-image: url(icons/solid-black/png/64x64/_spritesheet.png); }
+.no-svg .wu-128.wu-solid-black { background-image: url(icons/solid-black/png/128x128/_spritesheet.png); }
+.no-svg .wu-256.wu-solid-black { background-image: url(icons/solid-black/png/256x256/_spritesheet.png); }
+
+/*! Solid White Day PNG Icons */
+.no-svg .wu-16.wu-solid-white { background-image: url(icons/solid-white/png/16x16/_spritesheet.png); }
+.no-svg .wu-32.wu-solid-white { background-image: url(icons/solid-white/png/32x32/_spritesheet.png); }
+.no-svg .wu-64.wu-solid-white { background-image: url(icons/solid-white/png/64x64/_spritesheet.png); }
+.no-svg .wu-128.wu-solid-white { background-image: url(icons/solid-white/png/128x128/_spritesheet.png); }
+.no-svg .wu-256.wu-solid-white { background-image: url(icons/solid-white/png/256x256/_spritesheet.png); }
+
+/*! Black Might PNG Icons */
+.no-svg .wu-16.wu-black.wu-night { background-image: url(icons/black/png/16x16/_nt_spritesheet.png); }
+.no-svg .wu-32.wu-black.wu-night { background-image: url(icons/black/png/32x32/_nt_spritesheet.png); }
+.no-svg .wu-64.wu-black.wu-night { background-image: url(icons/black/png/64x64/_nt_spritesheet.png); }
+.no-svg .wu-128.wu-black.wu-night { background-image: url(icons/black/png/128x128/_nt_spritesheet.png); }
+.no-svg .wu-256.wu-black.wu-night { background-image: url(icons/black/png/256x256/_nt_spritesheet.png); }
+
+/*! White Night PNG Icons */
+.no-svg .wu-16.wu-white.wu-night { background-image: url(icons/white/png/16x16/_nt_spritesheet.png); }
+.no-svg .wu-32.wu-white.wu-night { background-image: url(icons/white/png/32x32/_nt_spritesheet.png); }
+.no-svg .wu-64.wu-white.wu-night { background-image: url(icons/white/png/64x64/_nt_spritesheet.png); }
+.no-svg .wu-128.wu-white.wu-night { background-image: url(icons/white/png/128x128/_nt_spritesheet.png); }
+.no-svg .wu-256.wu-white.wu-night { background-image: url(icons/white/png/256x256/_nt_spritesheet.png); }
+
+/*! Solid Black Night PNG Icons */
+.no-svg .wu-16.wu-solid-black.wu-night { background-image: url(icons/solid-black/png/16x16/_nt_spritesheet.png); }
+.no-svg .wu-32.wu-solid-black.wu-night { background-image: url(icons/solid-black/png/32x32/_nt_spritesheet.png); }
+.no-svg .wu-64.wu-solid-black.wu-night { background-image: url(icons/solid-black/png/64x64/_nt_spritesheet.png); }
+.no-svg .wu-128.wu-solid-black.wu-night { background-image: url(icons/solid-black/png/128x128/_nt_spritesheet.png); }
+.no-svg .wu-256.wu-solid-black.wu-night { background-image: url(icons/solid-black/png/256x256/_nt_spritesheet.png); }
+
+/*! Solid White Night PNG Icons */
+.no-svg .wu-16.wu-solid-white.wu-night { background-image: url(icons/solid-white/png/16x16/_nt_spritesheet.png); }
+.no-svg .wu-32.wu-solid-white.wu-night { background-image: url(icons/solid-white/png/32x32/_nt_spritesheet.png); }
+.no-svg .wu-64.wu-solid-white.wu-night { background-image: url(icons/solid-white/png/64x64/_nt_spritesheet.png); }
+.no-svg .wu-128.wu-solid-white.wu-night { background-image: url(icons/solid-white/png/128x128/_nt_spritesheet.png); }
+.no-svg .wu-256.wu-solid-white.wu-night { background-image: url(icons/solid-white/png/256x256/_nt_spritesheet.png); }
+
.no-svg .wu-16.wu-chanceflurries { background-position: -5px -5px; }
.no-svg .wu-16.wu-chancerain { background-position: -31px -5px; }
.no-svg .wu-16.wu-chancesleet { background-position: -57px -5px; }
@@ -80,32 +259,32 @@
.no-svg .wu-16.wu-partlycloudy { background-position: -5px -83px; }
.no-svg .wu-16.wu-partlysunny { background-position: -31px -83px; }
.no-svg .wu-16.wu-rain { background-position: -57px -83px; }
-.no-svg .wu-16.wu-sleet { background-position: -83px -83px; }
+.no-svg .wu-16.wu-sleet {background-position: -83px -83px; }
.no-svg .wu-16.wu-snow { background-position: -109px -5px; }
.no-svg .wu-16.wu-sunny { background-position: -109px -31px; }
.no-svg .wu-16.wu-tstorms { background-position: -109px -57px; }
.no-svg .wu-16.wu-unknown { background-position: -109px -83px; }
-.no-svg .wu-32.wu-chanceflurries { background-position: 0 0; }
-.no-svg .wu-32.wu-chancerain { background-position: -32px 0; }
-.no-svg .wu-32.wu-chancesleet { background-position: -64px 0; }
-.no-svg .wu-32.wu-chancesnow { background-position: -96px 0; }
-.no-svg .wu-32.wu-chancetstorms { background-position: 0 -32px; }
-.no-svg .wu-32.wu-clear { background-position: -32px -32px; }
-.no-svg .wu-32.wu-cloudy { background-position: -64px -32px; }
-.no-svg .wu-32.wu-flurries { background-position: -96px -32px; }
-.no-svg .wu-32.wu-fog { background-position: 0 -64px; }
-.no-svg .wu-32.wu-hazy { background-position: -32px -64px; }
-.no-svg .wu-32.wu-mostlycloudy { background-position: -64px -64px; }
-.no-svg .wu-32.wu-mostlysunny { background-position: -96px -64px; }
-.no-svg .wu-32.wu-partlycloudy { background-position: 0 -96px; }
-.no-svg .wu-32.wu-partlysunny { background-position: -32px -96px; }
-.no-svg .wu-32.wu-rain { background-position: -64px -96px; }
-.no-svg .wu-32.wu-sleet { background-position: -96px -96px; }
-.no-svg .wu-32.wu-snow { background-position: -128px 0; }
-.no-svg .wu-32.wu-sunny { background-position: -128px -32px; }
-.no-svg .wu-32.wu-tstorms { background-position: -128px -64px; }
-.no-svg .wu-32.wu-unknown { background-position: -128px -96px; }
+.no-svg .wu-32.wu-chanceflurries { background-position: -5px -5px; }
+.no-svg .wu-32.wu-chancerain { background-position: -47px -5px; }
+.no-svg .wu-32.wu-chancesleet { background-position: -89px -5px; }
+.no-svg .wu-32.wu-chancesnow { background-position: -131px -5px; }
+.no-svg .wu-32.wu-chancetstorms { background-position: -5px -47px; }
+.no-svg .wu-32.wu-clear { background-position: -47px -47px; }
+.no-svg .wu-32.wu-cloudy { background-position: -89px -47px; }
+.no-svg .wu-32.wu-flurries { background-position: -131px -47px; }
+.no-svg .wu-32.wu-fog { background-position: -5px -89px; }
+.no-svg .wu-32.wu-hazy { background-position: -47px -89px; }
+.no-svg .wu-32.wu-mostlycloudy { background-position: -89px -89px; }
+.no-svg .wu-32.wu-mostlysunny { background-position: -131px -89px; }
+.no-svg .wu-32.wu-partlycloudy { background-position: -5px -131px; }
+.no-svg .wu-32.wu-partlysunny { background-position: -47px -131px; }
+.no-svg .wu-32.wu-rain { background-position: -89px -131px; }
+.no-svg .wu-32.wu-sleet { background-position: -131px -131px; }
+.no-svg .wu-32.wu-snow { background-position: -173px -5px; }
+.no-svg .wu-32.wu-sunny { background-position: -173px -47px; }
+.no-svg .wu-32.wu-tstorms { background-position: -173px -89px; }
+.no-svg .wu-32.wu-unknown { background-position: -173px -131px; }
.no-svg .wu-64.wu-chanceflurries { background-position: -5px -5px; }
.no-svg .wu-64.wu-chancerain { background-position: -79px -5px; }
diff --git a/dist/wu-icons-style.min.css b/dist/wu-icons-style.min.css
index ca6be5a..6940343 100644
--- a/dist/wu-icons-style.min.css
+++ b/dist/wu-icons-style.min.css
@@ -1 +1 @@
-.wu{display:inline-block;background-repeat:no-repeat;padding:0;margin:0}.wu-16{width:16px;height:16px}.wu-32{width:32px;height:32px}.wu-64{width:64px;height:64px}.wu-128{width:128px;height:128px}.wu-256{width:256px;height:256px}.wu-black.wu-chanceflurries{background:url(icons/black/svg/chanceflurries.svg),linear-gradient(transparent,transparent)}.wu-black.wu-chancerain{background:url(icons/black/svg/chancerain.svg),linear-gradient(transparent,transparent)}.wu-black.wu-chancesleet{background:url(icons/black/svg/chancesleet.svg),linear-gradient(transparent,transparent)}.wu-black.wu-chancesnow{background:url(icons/black/svg/chancesnow.svg),linear-gradient(transparent,transparent)}.wu-black.wu-chancetstorms{background:url(icons/black/svg/chancetstorms.svg),linear-gradient(transparent,transparent)}.wu-black.wu-clear{background:url(icons/black/svg/clear.svg),linear-gradient(transparent,transparent)}.wu-black.wu-cloudy{background:url(icons/black/svg/cloudy.svg),linear-gradient(transparent,transparent)}.wu-black.wu-flurries{background:url(icons/black/svg/flurries.svg),linear-gradient(transparent,transparent)}.wu-black.wu-fog{background:url(icons/black/svg/fog.svg),linear-gradient(transparent,transparent)}.wu-black.wu-hazy{background:url(icons/black/svg/hazy.svg),linear-gradient(transparent,transparent)}.wu-black.wu-mostlycloudy{background:url(icons/black/svg/mostlycloudy.svg),linear-gradient(transparent,transparent)}.wu-black.wu-mostlysunny{background:url(icons/black/svg/mostlysunny.svg),linear-gradient(transparent,transparent)}.wu-black.wu-partlycloudy{background:url(icons/black/svg/partlycloudy.svg),linear-gradient(transparent,transparent)}.wu-black.wu-partlysunny{background:url(icons/black/svg/partlysunny.svg),linear-gradient(transparent,transparent)}.wu-black.wu-rain{background:url(icons/black/svg/rain.svg),linear-gradient(transparent,transparent)}.wu-black.wu-sleet{background:url(icons/black/svg/sleet.svg),linear-gradient(transparent,transparent)}.wu-black.wu-snow{background:url(icons/black/svg/snow.svg),linear-gradient(transparent,transparent)}.wu-black.wu-sunny{background:url(icons/black/svg/sunny.svg),linear-gradient(transparent,transparent)}.wu-black.wu-tstorms{background:url(icons/black/svg/tstorms.svg),linear-gradient(transparent,transparent)}.wu-black.wu-unknown{background:url(icons/black/svg/unknown.svg),linear-gradient(transparent,transparent)}.wu-white.wu-chanceflurries{background:url(icons/white/svg/chanceflurries.svg),linear-gradient(transparent,transparent)}.wu-white.wu-chancerain{background:url(icons/white/svg/chancerain.svg),linear-gradient(transparent,transparent)}.wu-white.wu-chancesleet{background:url(icons/white/svg/chancesleet.svg),linear-gradient(transparent,transparent)}.wu-white.wu-chancesnow{background:url(icons/white/svg/chancesnow.svg),linear-gradient(transparent,transparent)}.wu-white.wu-chancetstorms{background:url(icons/white/svg/chancetstorms.svg),linear-gradient(transparent,transparent)}.wu-white.wu-clear{background:url(icons/white/svg/clear.svg),linear-gradient(transparent,transparent)}.wu-white.wu-cloudy{background:url(icons/white/svg/cloudy.svg),linear-gradient(transparent,transparent)}.wu-white.wu-flurries{background:url(icons/white/svg/flurries.svg),linear-gradient(transparent,transparent)}.wu-white.wu-fog{background:url(icons/white/svg/fog.svg),linear-gradient(transparent,transparent)}.wu-white.wu-hazy{background:url(icons/white/svg/hazy.svg),linear-gradient(transparent,transparent)}.wu-white.wu-mostlycloudy{background:url(icons/white/svg/mostlycloudy.svg),linear-gradient(transparent,transparent)}.wu-white.wu-mostlysunny{background:url(icons/white/svg/mostlysunny.svg),linear-gradient(transparent,transparent)}.wu-white.wu-partlycloudy{background:url(icons/white/svg/partlycloudy.svg),linear-gradient(transparent,transparent)}.wu-white.wu-partlysunny{background:url(icons/white/svg/partlysunny.svg),linear-gradient(transparent,transparent)}.wu-white.wu-rain{background:url(icons/white/svg/rain.svg),linear-gradient(transparent,transparent)}.wu-white.wu-sleet{background:url(icons/white/svg/sleet.svg),linear-gradient(transparent,transparent)}.wu-white.wu-snow{background:url(icons/white/svg/snow.svg),linear-gradient(transparent,transparent)}.wu-white.wu-sunny{background:url(icons/white/svg/sunny.svg),linear-gradient(transparent,transparent)}.wu-white.wu-tstorms{background:url(icons/white/svg/tstorms.svg),linear-gradient(transparent,transparent)}.wu-white.wu-unknown{background:url(icons/white/svg/unknown.svg),linear-gradient(transparent,transparent)}.no-svg .wu-16.wu-black{background-image:url(icons/black/png/16x16/_spritesheet.png)}.no-svg .wu-32.wu-black{background-image:url(icons/black/png/32x32/_spritesheet.png)}.no-svg .wu-64.wu-black{background-image:url(icons/black/png/64x64/_spritesheet.png)}.no-svg .wu-128.wu-black{background-image:url(icons/black/png/128x128/_spritesheet.png)}.no-svg .wu-256.wu-black{background-image:url(icons/black/png/256x256/_spritesheet.png)}.no-svg .wu-16.wu-white{background-image:url(icons/white/png/16x16/_spritesheet.png)}.no-svg .wu-32.wu-white{background-image:url(icons/white/png/32x32/_spritesheet.png)}.no-svg .wu-64.wu-white{background-image:url(icons/white/png/64x64/_spritesheet.png)}.no-svg .wu-128.wu-white{background-image:url(icons/white/png/128x128/_spritesheet.png)}.no-svg .wu-256.wu-white{background-image:url(icons/white/png/256x256/_spritesheet.png)}.no-svg .wu-16.wu-chanceflurries{background-position:-5px -5px}.no-svg .wu-16.wu-chancerain{background-position:-31px -5px}.no-svg .wu-16.wu-chancesleet{background-position:-57px -5px}.no-svg .wu-16.wu-chancesnow{background-position:-83px -5px}.no-svg .wu-16.wu-chancetstorms{background-position:-5px -31px}.no-svg .wu-16.wu-clear{background-position:-31px -31px}.no-svg .wu-16.wu-cloudy{background-position:-57px -31px}.no-svg .wu-16.wu-flurries{background-position:-83px -31px}.no-svg .wu-16.wu-fog{background-position:-5px -57px}.no-svg .wu-16.wu-hazy{background-position:-31px -57px}.no-svg .wu-16.wu-mostlycloudy{background-position:-57px -57px}.no-svg .wu-16.wu-mostlysunny{background-position:-83px -57px}.no-svg .wu-16.wu-partlycloudy{background-position:-5px -83px}.no-svg .wu-16.wu-partlysunny{background-position:-31px -83px}.no-svg .wu-16.wu-rain{background-position:-57px -83px}.no-svg .wu-16.wu-sleet{background-position:-83px -83px}.no-svg .wu-16.wu-snow{background-position:-109px -5px}.no-svg .wu-16.wu-sunny{background-position:-109px -31px}.no-svg .wu-16.wu-tstorms{background-position:-109px -57px}.no-svg .wu-16.wu-unknown{background-position:-109px -83px}.no-svg .wu-32.wu-chanceflurries{background-position:0 0}.no-svg .wu-32.wu-chancerain{background-position:-32px 0}.no-svg .wu-32.wu-chancesleet{background-position:-64px 0}.no-svg .wu-32.wu-chancesnow{background-position:-96px 0}.no-svg .wu-32.wu-chancetstorms{background-position:0 -32px}.no-svg .wu-32.wu-clear{background-position:-32px -32px}.no-svg .wu-32.wu-cloudy{background-position:-64px -32px}.no-svg .wu-32.wu-flurries{background-position:-96px -32px}.no-svg .wu-32.wu-fog{background-position:0 -64px}.no-svg .wu-32.wu-hazy{background-position:-32px -64px}.no-svg .wu-32.wu-mostlycloudy{background-position:-64px -64px}.no-svg .wu-32.wu-mostlysunny{background-position:-96px -64px}.no-svg .wu-32.wu-partlycloudy{background-position:0 -96px}.no-svg .wu-32.wu-partlysunny{background-position:-32px -96px}.no-svg .wu-32.wu-rain{background-position:-64px -96px}.no-svg .wu-32.wu-sleet{background-position:-96px -96px}.no-svg .wu-32.wu-snow{background-position:-128px 0}.no-svg .wu-32.wu-sunny{background-position:-128px -32px}.no-svg .wu-32.wu-tstorms{background-position:-128px -64px}.no-svg .wu-32.wu-unknown{background-position:-128px -96px}.no-svg .wu-64.wu-chanceflurries{background-position:-5px -5px}.no-svg .wu-64.wu-chancerain{background-position:-79px -5px}.no-svg .wu-64.wu-chancesleet{background-position:-153px -5px}.no-svg .wu-64.wu-chancesnow{background-position:-227px -5px}.no-svg .wu-64.wu-chancetstorms{background-position:-5px -79px}.no-svg .wu-64.wu-clear{background-position:-79px -79px}.no-svg .wu-64.wu-cloudy{background-position:-153px -79px}.no-svg .wu-64.wu-flurries{background-position:-227px -79px}.no-svg .wu-64.wu-fog{background-position:-5px -153px}.no-svg .wu-64.wu-hazy{background-position:-79px -153px}.no-svg .wu-64.wu-mostlycloudy{background-position:-153px -153px}.no-svg .wu-64.wu-mostlysunny{background-position:-227px -153px}.no-svg .wu-64.wu-partlycloudy{background-position:-5px -227px}.no-svg .wu-64.wu-partlysunny{background-position:-79px -227px}.no-svg .wu-64.wu-rain{background-position:-153px -227px}.no-svg .wu-64.wu-sleet{background-position:-227px -227px}.no-svg .wu-64.wu-snow{background-position:-301px -5px}.no-svg .wu-64.wu-sunny{background-position:-301px -79px}.no-svg .wu-64.wu-tstorms{background-position:-301px -153px}.no-svg .wu-64.wu-unknown{background-position:-301px -227px}.no-svg .wu-128.wu-chanceflurries{background-position:-5px -5px}.no-svg .wu-128.wu-chancerain{background-position:-143px -5px}.no-svg .wu-128.wu-chancesleet{background-position:-281px -5px}.no-svg .wu-128.wu-chancesnow{background-position:-419px -5px}.no-svg .wu-128.wu-chancetstorms{background-position:-5px -143px}.no-svg .wu-128.wu-clear{background-position:-143px -143px}.no-svg .wu-128.wu-cloudy{background-position:-281px -143px}.no-svg .wu-128.wu-flurries{background-position:-419px -143px}.no-svg .wu-128.wu-fog{background-position:-5px -281px}.no-svg .wu-128.wu-hazy{background-position:-143px -281px}.no-svg .wu-128.wu-mostlycloudy{background-position:-281px -281px}.no-svg .wu-128.wu-mostlysunny{background-position:-419px -281px}.no-svg .wu-128.wu-partlycloudy{background-position:-5px -419px}.no-svg .wu-128.wu-partlysunny{background-position:-143px -419px}.no-svg .wu-128.wu-rain{background-position:-281px -419px}.no-svg .wu-128.wu-sleet{background-position:-419px -419px}.no-svg .wu-128.wu-snow{background-position:-557px -5px}.no-svg .wu-128.wu-sunny{background-position:-557px -143px}.no-svg .wu-128.wu-tstorms{background-position:-557px -281px}.no-svg .wu-128.wu-unknown{background-position:-557px -419px}.no-svg .wu-256.wu-chanceflurries{background-position:-5px -5px}.no-svg .wu-256.wu-chancerain{background-position:-271px -5px}.no-svg .wu-256.wu-chancesleet{background-position:-537px -5px}.no-svg .wu-256.wu-chancesnow{background-position:-803px -5px}.no-svg .wu-256.wu-chancetstorms{background-position:-5px -271px}.no-svg .wu-256.wu-clear{background-position:-271px -271px}.no-svg .wu-256.wu-cloudy{background-position:-537px -271px}.no-svg .wu-256.wu-flurries{background-position:-803px -271px}.no-svg .wu-256.wu-fog{background-position:-5px -537px}.no-svg .wu-256.wu-hazy{background-position:-271px -537px}.no-svg .wu-256.wu-mostlycloudy{background-position:-537px -537px}.no-svg .wu-256.wu-mostlysunny{background-position:-803px -537px}.no-svg .wu-256.wu-partlycloudy{background-position:-5px -803px}.no-svg .wu-256.wu-partlysunny{background-position:-271px -803px}.no-svg .wu-256.wu-rain{background-position:-537px -803px}.no-svg .wu-256.wu-sleet{background-position:-803px -803px}.no-svg .wu-256.wu-snow{background-position:-1069px -5px}.no-svg .wu-256.wu-sunny{background-position:-1069px -271px}.no-svg .wu-256.wu-tstorms{background-position:-1069px -537px}.no-svg .wu-256.wu-unknown{background-position:-1069px -803px}
+.wu{display:inline-block;background-repeat:no-repeat;padding:0;margin:0}.wu-16{width:16px;height:16px}.wu-32{width:32px;height:32px}.wu-64{width:64px;height:64px}.wu-128{width:128px;height:128px}.wu-256{width:256px;height:256px}.wu-black.wu-chanceflurries{background:url(icons/black/svg/chanceflurries.svg)}.wu-black.wu-chancerain{background:url(icons/black/svg/chancerain.svg)}.wu-black.wu-chancesleet{background:url(icons/black/svg/chancesleet.svg)}.wu-black.wu-chancesnow{background:url(icons/black/svg/chancesnow.svg)}.wu-black.wu-chancetstorms{background:url(icons/black/svg/chancetstorms.svg)}.wu-black.wu-clear{background:url(icons/black/svg/clear.svg)}.wu-black.wu-cloudy{background:url(icons/black/svg/cloudy.svg)}.wu-black.wu-flurries{background:url(icons/black/svg/flurries.svg)}.wu-black.wu-fog{background:url(icons/black/svg/fog.svg)}.wu-black.wu-hazy{background:url(icons/black/svg/hazy.svg)}.wu-black.wu-mostlycloudy{background:url(icons/black/svg/mostlycloudy.svg)}.wu-black.wu-mostlysunny{background:url(icons/black/svg/mostlysunny.svg)}.wu-black.wu-partlycloudy{background:url(icons/black/svg/partlycloudy.svg)}.wu-black.wu-partlysunny{background:url(icons/black/svg/partlysunny.svg)}.wu-black.wu-rain{background:url(icons/black/svg/rain.svg)}.wu-black.wu-sleet{background:url(icons/black/svg/sleet.svg)}.wu-black.wu-snow{background:url(icons/black/svg/snow.svg)}.wu-black.wu-sunny{background:url(icons/black/svg/sunny.svg)}.wu-black.wu-tstorms{background:url(icons/black/svg/tstorms.svg)}.wu-black.wu-unknown{background:url(icons/black/svg/unknown.svg)}.wu-white.wu-chanceflurries{background:url(icons/white/svg/chanceflurries.svg)}.wu-white.wu-chancerain{background:url(icons/white/svg/chancerain.svg)}.wu-white.wu-chancesleet{background:url(icons/white/svg/chancesleet.svg)}.wu-white.wu-chancesnow{background:url(icons/white/svg/chancesnow.svg)}.wu-white.wu-chancetstorms{background:url(icons/white/svg/chancetstorms.svg)}.wu-white.wu-clear{background:url(icons/white/svg/clear.svg)}.wu-white.wu-cloudy{background:url(icons/white/svg/cloudy.svg)}.wu-white.wu-flurries{background:url(icons/white/svg/flurries.svg)}.wu-white.wu-fog{background:url(icons/white/svg/fog.svg)}.wu-white.wu-hazy{background:url(icons/white/svg/hazy.svg)}.wu-white.wu-mostlycloudy{background:url(icons/white/svg/mostlycloudy.svg)}.wu-white.wu-mostlysunny{background:url(icons/white/svg/mostlysunny.svg)}.wu-white.wu-partlycloudy{background:url(icons/white/svg/partlycloudy.svg)}.wu-white.wu-partlysunny{background:url(icons/white/svg/partlysunny.svg)}.wu-white.wu-rain{background:url(icons/white/svg/rain.svg)}.wu-white.wu-sleet{background:url(icons/white/svg/sleet.svg)}.wu-white.wu-snow{background:url(icons/white/svg/snow.svg)}.wu-white.wu-sunny{background:url(icons/white/svg/sunny.svg)}.wu-white.wu-tstorms{background:url(icons/white/svg/tstorms.svg)}.wu-white.wu-unknown{background:url(icons/white/svg/unknown.svg)}.wu-solid-black.wu-chanceflurries{background:url(icons/solid-black/svg/chanceflurries.svg)}.wu-solid-black.wu-chancerain{background:url(icons/solid-black/svg/chancerain.svg)}.wu-solid-black.wu-chancesleet{background:url(icons/solid-black/svg/chancesleet.svg)}.wu-solid-black.wu-chancesnow{background:url(icons/solid-black/svg/chancesnow.svg)}.wu-solid-black.wu-chancetstorms{background:url(icons/solid-black/svg/chancetstorms.svg)}.wu-solid-black.wu-clear{background:url(icons/solid-black/svg/clear.svg)}.wu-solid-black.wu-cloudy{background:url(icons/solid-black/svg/cloudy.svg)}.wu-solid-black.wu-flurries{background:url(icons/solid-black/svg/flurries.svg)}.wu-solid-black.wu-fog{background:url(icons/solid-black/svg/fog.svg)}.wu-solid-black.wu-hazy{background:url(icons/solid-black/svg/hazy.svg)}.wu-solid-black.wu-mostlycloudy{background:url(icons/solid-black/svg/mostlycloudy.svg)}.wu-solid-black.wu-mostlysunny{background:url(icons/solid-black/svg/mostlysunny.svg)}.wu-solid-black.wu-partlycloudy{background:url(icons/solid-black/svg/partlycloudy.svg)}.wu-solid-black.wu-partlysunny{background:url(icons/solid-black/svg/partlysunny.svg)}.wu-solid-black.wu-rain{background:url(icons/solid-black/svg/rain.svg)}.wu-solid-black.wu-sleet{background:url(icons/solid-black/svg/sleet.svg)}.wu-solid-black.wu-snow{background:url(icons/solid-black/svg/snow.svg)}.wu-solid-black.wu-sunny{background:url(icons/solid-black/svg/sunny.svg)}.wu-solid-black.wu-tstorms{background:url(icons/solid-black/svg/tstorms.svg)}.wu-solid-black.wu-unknown{background:url(icons/solid-black/svg/unknown.svg)}.wu-solid-white.wu-chanceflurries{background:url(icons/solid-white/svg/chanceflurries.svg)}.wu-solid-white.wu-chancerain{background:url(icons/solid-white/svg/chancerain.svg)}.wu-solid-white.wu-chancesleet{background:url(icons/solid-white/svg/chancesleet.svg)}.wu-solid-white.wu-chancesnow{background:url(icons/solid-white/svg/chancesnow.svg)}.wu-solid-white.wu-chancetstorms{background:url(icons/solid-white/svg/chancetstorms.svg)}.wu-solid-white.wu-clear{background:url(icons/solid-white/svg/clear.svg)}.wu-solid-white.wu-cloudy{background:url(icons/solid-white/svg/cloudy.svg)}.wu-solid-white.wu-flurries{background:url(icons/solid-white/svg/flurries.svg)}.wu-solid-white.wu-fog{background:url(icons/solid-white/svg/fog.svg)}.wu-solid-white.wu-hazy{background:url(icons/solid-white/svg/hazy.svg)}.wu-solid-white.wu-mostlycloudy{background:url(icons/solid-white/svg/mostlycloudy.svg)}.wu-solid-white.wu-mostlysunny{background:url(icons/solid-white/svg/mostlysunny.svg)}.wu-solid-white.wu-partlycloudy{background:url(icons/solid-white/svg/partlycloudy.svg)}.wu-solid-white.wu-partlysunny{background:url(icons/solid-white/svg/partlysunny.svg)}.wu-solid-white.wu-rain{background:url(icons/solid-white/svg/rain.svg)}.wu-solid-white.wu-sleet{background:url(icons/solid-white/svg/sleet.svg)}.wu-solid-white.wu-snow{background:url(icons/solid-white/svg/snow.svg)}.wu-solid-white.wu-sunny{background:url(icons/solid-white/svg/sunny.svg)}.wu-solid-white.wu-tstorms{background:url(icons/solid-white/svg/tstorms.svg)}.wu-solid-white.wu-unknown{background:url(icons/solid-white/svg/unknown.svg)}.wu-night.wu-black.wu-chanceflurries{background:url(icons/black/svg/nt_chanceflurries.svg)}.wu-night.wu-black.wu-chancerain{background:url(icons/black/svg/nt_chancerain.svg)}.wu-night.wu-black.wu-chancesleet{background:url(icons/black/svg/nt_chancesleet.svg)}.wu-night.wu-black.wu-chancesnow{background:url(icons/black/svg/nt_chancesnow.svg)}.wu-night.wu-black.wu-chancetstorms{background:url(icons/black/svg/nt_chancetstorms.svg)}.wu-night.wu-black.wu-clear{background:url(icons/black/svg/nt_clear.svg)}.wu-night.wu-black.wu-cloudy{background:url(icons/black/svg/nt_cloudy.svg)}.wu-night.wu-black.wu-flurries{background:url(icons/black/svg/nt_flurries.svg)}.wu-night.wu-black.wu-fog{background:url(icons/black/svg/nt_fog.svg)}.wu-night.wu-black.wu-hazy{background:url(icons/black/svg/nt_hazy.svg)}.wu-night.wu-black.wu-mostlycloudy{background:url(icons/black/svg/nt_mostlycloudy.svg)}.wu-night.wu-black.wu-mostlysunny{background:url(icons/black/svg/nt_mostlysunny.svg)}.wu-night.wu-black.wu-partlycloudy{background:url(icons/black/svg/nt_partlycloudy.svg)}.wu-night.wu-black.wu-partlysunny{background:url(icons/black/svg/nt_partlysunny.svg)}.wu-night.wu-black.wu-rain{background:url(icons/black/svg/nt_rain.svg)}.wu-night.wu-black.wu-sleet{background:url(icons/black/svg/nt_sleet.svg)}.wu-night.wu-black.wu-snow{background:url(icons/black/svg/nt_snow.svg)}.wu-night.wu-black.wu-sunny{background:url(icons/black/svg/nt_sunny.svg)}.wu-night.wu-black.wu-tstorms{background:url(icons/black/svg/nt_tstorms.svg)}.wu-night.wu-black.wu-unknown{background:url(icons/black/svg/nt_unknown.svg)}.wu-night.wu-white.wu-chanceflurries{background:url(icons/white/svg/nt_chanceflurries.svg)}.wu-night.wu-white.wu-chancerain{background:url(icons/white/svg/nt_chancerain.svg)}.wu-night.wu-white.wu-chancesleet{background:url(icons/white/svg/nt_chancesleet.svg)}.wu-night.wu-white.wu-chancesnow{background:url(icons/white/svg/nt_chancesnow.svg)}.wu-night.wu-white.wu-chancetstorms{background:url(icons/white/svg/nt_chancetstorms.svg)}.wu-night.wu-white.wu-clear{background:url(icons/white/svg/nt_clear.svg)}.wu-night.wu-white.wu-cloudy{background:url(icons/white/svg/nt_cloudy.svg)}.wu-night.wu-white.wu-flurries{background:url(icons/white/svg/nt_flurries.svg)}.wu-night.wu-white.wu-fog{background:url(icons/white/svg/nt_fog.svg)}.wu-night.wu-white.wu-hazy{background:url(icons/white/svg/nt_hazy.svg)}.wu-night.wu-white.wu-mostlycloudy{background:url(icons/white/svg/nt_mostlycloudy.svg)}.wu-night.wu-white.wu-mostlysunny{background:url(icons/white/svg/nt_mostlysunny.svg)}.wu-night.wu-white.wu-partlycloudy{background:url(icons/white/svg/nt_partlycloudy.svg)}.wu-night.wu-white.wu-partlysunny{background:url(icons/white/svg/nt_partlysunny.svg)}.wu-night.wu-white.wu-rain{background:url(icons/white/svg/nt_rain.svg)}.wu-night.wu-white.wu-sleet{background:url(icons/white/svg/nt_sleet.svg)}.wu-night.wu-white.wu-snow{background:url(icons/white/svg/nt_snow.svg)}.wu-night.wu-white.wu-sunny{background:url(icons/white/svg/nt_sunny.svg)}.wu-night.wu-white.wu-tstorms{background:url(icons/white/svg/nt_tstorms.svg)}.wu-night.wu-white.wu-unknown{background:url(icons/white/svg/nt_unknown.svg)}.wu-night.wu-solid-black.wu-chanceflurries{background:url(icons/solid-black/svg/nt_chanceflurries.svg)}.wu-night.wu-solid-black.wu-chancerain{background:url(icons/solid-black/svg/nt_chancerain.svg)}.wu-night.wu-solid-black.wu-chancesleet{background:url(icons/solid-black/svg/nt_chancesleet.svg)}.wu-night.wu-solid-black.wu-chancesnow{background:url(icons/solid-black/svg/nt_chancesnow.svg)}.wu-night.wu-solid-black.wu-chancetstorms{background:url(icons/solid-black/svg/nt_chancetstorms.svg)}.wu-night.wu-solid-black.wu-clear{background:url(icons/solid-black/svg/nt_clear.svg)}.wu-night.wu-solid-black.wu-cloudy{background:url(icons/solid-black/svg/nt_cloudy.svg)}.wu-night.wu-solid-black.wu-flurries{background:url(icons/solid-black/svg/nt_flurries.svg)}.wu-night.wu-solid-black.wu-fog{background:url(icons/solid-black/svg/nt_fog.svg)}.wu-night.wu-solid-black.wu-hazy{background:url(icons/solid-black/svg/nt_hazy.svg)}.wu-night.wu-solid-black.wu-mostlycloudy{background:url(icons/solid-black/svg/nt_mostlycloudy.svg)}.wu-night.wu-solid-black.wu-mostlysunny{background:url(icons/solid-black/svg/nt_mostlysunny.svg)}.wu-night.wu-solid-black.wu-partlycloudy{background:url(icons/solid-black/svg/nt_partlycloudy.svg)}.wu-night.wu-solid-black.wu-partlysunny{background:url(icons/solid-black/svg/nt_partlysunny.svg)}.wu-night.wu-solid-black.wu-rain{background:url(icons/solid-black/svg/nt_rain.svg)}.wu-night.wu-solid-black.wu-sleet{background:url(icons/solid-black/svg/nt_sleet.svg)}.wu-night.wu-solid-black.wu-snow{background:url(icons/solid-black/svg/nt_snow.svg)}.wu-night.wu-solid-black.wu-sunny{background:url(icons/solid-black/svg/nt_sunny.svg)}.wu-night.wu-solid-black.wu-tstorms{background:url(icons/solid-black/svg/nt_tstorms.svg)}.wu-night.wu-solid-black.wu-unknown{background:url(icons/solid-black/svg/nt_unknown.svg)}.wu-night.wu-solid-white.wu-chanceflurries{background:url(icons/solid-white/svg/nt_chanceflurries.svg)}.wu-night.wu-solid-white.wu-chancerain{background:url(icons/solid-white/svg/nt_chancerain.svg)}.wu-night.wu-solid-white.wu-chancesleet{background:url(icons/solid-white/svg/nt_chancesleet.svg)}.wu-night.wu-solid-white.wu-chancesnow{background:url(icons/solid-white/svg/nt_chancesnow.svg)}.wu-night.wu-solid-white.wu-chancetstorms{background:url(icons/solid-white/svg/nt_chancetstorms.svg)}.wu-night.wu-solid-white.wu-clear{background:url(icons/solid-white/svg/nt_clear.svg)}.wu-night.wu-solid-white.wu-cloudy{background:url(icons/solid-white/svg/nt_cloudy.svg)}.wu-night.wu-solid-white.wu-flurries{background:url(icons/solid-white/svg/nt_flurries.svg)}.wu-night.wu-solid-white.wu-fog{background:url(icons/solid-white/svg/nt_fog.svg)}.wu-night.wu-solid-white.wu-hazy{background:url(icons/solid-white/svg/nt_hazy.svg)}.wu-night.wu-solid-white.wu-mostlycloudy{background:url(icons/solid-white/svg/nt_mostlycloudy.svg)}.wu-night.wu-solid-white.wu-mostlysunny{background:url(icons/solid-white/svg/nt_mostlysunny.svg)}.wu-night.wu-solid-white.wu-partlycloudy{background:url(icons/solid-white/svg/nt_partlycloudy.svg)}.wu-night.wu-solid-white.wu-partlysunny{background:url(icons/solid-white/svg/nt_partlysunny.svg)}.wu-night.wu-solid-white.wu-rain{background:url(icons/solid-white/svg/nt_rain.svg)}.wu-night.wu-solid-white.wu-sleet{background:url(icons/solid-white/svg/nt_sleet.svg)}.wu-night.wu-solid-white.wu-snow{background:url(icons/solid-white/svg/nt_snow.svg)}.wu-night.wu-solid-white.wu-sunny{background:url(icons/solid-white/svg/nt_sunny.svg)}.wu-night.wu-solid-white.wu-tstorms{background:url(icons/solid-white/svg/nt_tstorms.svg)}.wu-night.wu-solid-white.wu-unknown{background:url(icons/solid-white/svg/nt_unknown.svg)}.no-svg .wu-16.wu-black{background-image:url(icons/black/png/16x16/_spritesheet.png)}.no-svg .wu-32.wu-black{background-image:url(icons/black/png/32x32/_spritesheet.png)}.no-svg .wu-64.wu-black{background-image:url(icons/black/png/64x64/_spritesheet.png)}.no-svg .wu-128.wu-black{background-image:url(icons/black/png/128x128/_spritesheet.png)}.no-svg .wu-256.wu-black{background-image:url(icons/black/png/256x256/_spritesheet.png)}.no-svg .wu-16.wu-white{background-image:url(icons/white/png/16x16/_spritesheet.png)}.no-svg .wu-32.wu-white{background-image:url(icons/white/png/32x32/_spritesheet.png)}.no-svg .wu-64.wu-white{background-image:url(icons/white/png/64x64/_spritesheet.png)}.no-svg .wu-128.wu-white{background-image:url(icons/white/png/128x128/_spritesheet.png)}.no-svg .wu-256.wu-white{background-image:url(icons/white/png/256x256/_spritesheet.png)}.no-svg .wu-16.wu-solid-black{background-image:url(icons/solid-black/png/16x16/_spritesheet.png)}.no-svg .wu-32.wu-solid-black{background-image:url(icons/solid-black/png/32x32/_spritesheet.png)}.no-svg .wu-64.wu-solid-black{background-image:url(icons/solid-black/png/64x64/_spritesheet.png)}.no-svg .wu-128.wu-solid-black{background-image:url(icons/solid-black/png/128x128/_spritesheet.png)}.no-svg .wu-256.wu-solid-black{background-image:url(icons/solid-black/png/256x256/_spritesheet.png)}.no-svg .wu-16.wu-solid-white{background-image:url(icons/solid-white/png/16x16/_spritesheet.png)}.no-svg .wu-32.wu-solid-white{background-image:url(icons/solid-white/png/32x32/_spritesheet.png)}.no-svg .wu-64.wu-solid-white{background-image:url(icons/solid-white/png/64x64/_spritesheet.png)}.no-svg .wu-128.wu-solid-white{background-image:url(icons/solid-white/png/128x128/_spritesheet.png)}.no-svg .wu-256.wu-solid-white{background-image:url(icons/solid-white/png/256x256/_spritesheet.png)}.no-svg .wu-16.wu-black.wu-night{background-image:url(icons/black/png/16x16/_nt_spritesheet.png)}.no-svg .wu-32.wu-black.wu-night{background-image:url(icons/black/png/32x32/_nt_spritesheet.png)}.no-svg .wu-64.wu-black.wu-night{background-image:url(icons/black/png/64x64/_nt_spritesheet.png)}.no-svg .wu-128.wu-black.wu-night{background-image:url(icons/black/png/128x128/_nt_spritesheet.png)}.no-svg .wu-256.wu-black.wu-night{background-image:url(icons/black/png/256x256/_nt_spritesheet.png)}.no-svg .wu-16.wu-white.wu-night{background-image:url(icons/white/png/16x16/_nt_spritesheet.png)}.no-svg .wu-32.wu-white.wu-night{background-image:url(icons/white/png/32x32/_nt_spritesheet.png)}.no-svg .wu-64.wu-white.wu-night{background-image:url(icons/white/png/64x64/_nt_spritesheet.png)}.no-svg .wu-128.wu-white.wu-night{background-image:url(icons/white/png/128x128/_nt_spritesheet.png)}.no-svg .wu-256.wu-white.wu-night{background-image:url(icons/white/png/256x256/_nt_spritesheet.png)}.no-svg .wu-16.wu-solid-black.wu-night{background-image:url(icons/solid-black/png/16x16/_nt_spritesheet.png)}.no-svg .wu-32.wu-solid-black.wu-night{background-image:url(icons/solid-black/png/32x32/_nt_spritesheet.png)}.no-svg .wu-64.wu-solid-black.wu-night{background-image:url(icons/solid-black/png/64x64/_nt_spritesheet.png)}.no-svg .wu-128.wu-solid-black.wu-night{background-image:url(icons/solid-black/png/128x128/_nt_spritesheet.png)}.no-svg .wu-256.wu-solid-black.wu-night{background-image:url(icons/solid-black/png/256x256/_nt_spritesheet.png)}.no-svg .wu-16.wu-solid-white.wu-night{background-image:url(icons/solid-white/png/16x16/_nt_spritesheet.png)}.no-svg .wu-32.wu-solid-white.wu-night{background-image:url(icons/solid-white/png/32x32/_nt_spritesheet.png)}.no-svg .wu-64.wu-solid-white.wu-night{background-image:url(icons/solid-white/png/64x64/_nt_spritesheet.png)}.no-svg .wu-128.wu-solid-white.wu-night{background-image:url(icons/solid-white/png/128x128/_nt_spritesheet.png)}.no-svg .wu-256.wu-solid-white.wu-night{background-image:url(icons/solid-white/png/256x256/_nt_spritesheet.png)}.no-svg .wu-16.wu-chanceflurries{background-position:-5px -5px}.no-svg .wu-16.wu-chancerain{background-position:-31px -5px}.no-svg .wu-16.wu-chancesleet{background-position:-57px -5px}.no-svg .wu-16.wu-chancesnow{background-position:-83px -5px}.no-svg .wu-16.wu-chancetstorms{background-position:-5px -31px}.no-svg .wu-16.wu-clear{background-position:-31px -31px}.no-svg .wu-16.wu-cloudy{background-position:-57px -31px}.no-svg .wu-16.wu-flurries{background-position:-83px -31px}.no-svg .wu-16.wu-fog{background-position:-5px -57px}.no-svg .wu-16.wu-hazy{background-position:-31px -57px}.no-svg .wu-16.wu-mostlycloudy{background-position:-57px -57px}.no-svg .wu-16.wu-mostlysunny{background-position:-83px -57px}.no-svg .wu-16.wu-partlycloudy{background-position:-5px -83px}.no-svg .wu-16.wu-partlysunny{background-position:-31px -83px}.no-svg .wu-16.wu-rain{background-position:-57px -83px}.no-svg .wu-16.wu-sleet{background-position:-83px -83px}.no-svg .wu-16.wu-snow{background-position:-109px -5px}.no-svg .wu-16.wu-sunny{background-position:-109px -31px}.no-svg .wu-16.wu-tstorms{background-position:-109px -57px}.no-svg .wu-16.wu-unknown{background-position:-109px -83px}.no-svg .wu-32.wu-chanceflurries{background-position:-5px -5px}.no-svg .wu-32.wu-chancerain{background-position:-47px -5px}.no-svg .wu-32.wu-chancesleet{background-position:-89px -5px}.no-svg .wu-32.wu-chancesnow{background-position:-131px -5px}.no-svg .wu-32.wu-chancetstorms{background-position:-5px -47px}.no-svg .wu-32.wu-clear{background-position:-47px -47px}.no-svg .wu-32.wu-cloudy{background-position:-89px -47px}.no-svg .wu-32.wu-flurries{background-position:-131px -47px}.no-svg .wu-32.wu-fog{background-position:-5px -89px}.no-svg .wu-32.wu-hazy{background-position:-47px -89px}.no-svg .wu-32.wu-mostlycloudy{background-position:-89px -89px}.no-svg .wu-32.wu-mostlysunny{background-position:-131px -89px}.no-svg .wu-32.wu-partlycloudy{background-position:-5px -131px}.no-svg .wu-32.wu-partlysunny{background-position:-47px -131px}.no-svg .wu-32.wu-rain{background-position:-89px -131px}.no-svg .wu-32.wu-sleet{background-position:-131px -131px}.no-svg .wu-32.wu-snow{background-position:-173px -5px}.no-svg .wu-32.wu-sunny{background-position:-173px -47px}.no-svg .wu-32.wu-tstorms{background-position:-173px -89px}.no-svg .wu-32.wu-unknown{background-position:-173px -131px}.no-svg .wu-64.wu-chanceflurries{background-position:-5px -5px}.no-svg .wu-64.wu-chancerain{background-position:-79px -5px}.no-svg .wu-64.wu-chancesleet{background-position:-153px -5px}.no-svg .wu-64.wu-chancesnow{background-position:-227px -5px}.no-svg .wu-64.wu-chancetstorms{background-position:-5px -79px}.no-svg .wu-64.wu-clear{background-position:-79px -79px}.no-svg .wu-64.wu-cloudy{background-position:-153px -79px}.no-svg .wu-64.wu-flurries{background-position:-227px -79px}.no-svg .wu-64.wu-fog{background-position:-5px -153px}.no-svg .wu-64.wu-hazy{background-position:-79px -153px}.no-svg .wu-64.wu-mostlycloudy{background-position:-153px -153px}.no-svg .wu-64.wu-mostlysunny{background-position:-227px -153px}.no-svg .wu-64.wu-partlycloudy{background-position:-5px -227px}.no-svg .wu-64.wu-partlysunny{background-position:-79px -227px}.no-svg .wu-64.wu-rain{background-position:-153px -227px}.no-svg .wu-64.wu-sleet{background-position:-227px -227px}.no-svg .wu-64.wu-snow{background-position:-301px -5px}.no-svg .wu-64.wu-sunny{background-position:-301px -79px}.no-svg .wu-64.wu-tstorms{background-position:-301px -153px}.no-svg .wu-64.wu-unknown{background-position:-301px -227px}.no-svg .wu-128.wu-chanceflurries{background-position:-5px -5px}.no-svg .wu-128.wu-chancerain{background-position:-143px -5px}.no-svg .wu-128.wu-chancesleet{background-position:-281px -5px}.no-svg .wu-128.wu-chancesnow{background-position:-419px -5px}.no-svg .wu-128.wu-chancetstorms{background-position:-5px -143px}.no-svg .wu-128.wu-clear{background-position:-143px -143px}.no-svg .wu-128.wu-cloudy{background-position:-281px -143px}.no-svg .wu-128.wu-flurries{background-position:-419px -143px}.no-svg .wu-128.wu-fog{background-position:-5px -281px}.no-svg .wu-128.wu-hazy{background-position:-143px -281px}.no-svg .wu-128.wu-mostlycloudy{background-position:-281px -281px}.no-svg .wu-128.wu-mostlysunny{background-position:-419px -281px}.no-svg .wu-128.wu-partlycloudy{background-position:-5px -419px}.no-svg .wu-128.wu-partlysunny{background-position:-143px -419px}.no-svg .wu-128.wu-rain{background-position:-281px -419px}.no-svg .wu-128.wu-sleet{background-position:-419px -419px}.no-svg .wu-128.wu-snow{background-position:-557px -5px}.no-svg .wu-128.wu-sunny{background-position:-557px -143px}.no-svg .wu-128.wu-tstorms{background-position:-557px -281px}.no-svg .wu-128.wu-unknown{background-position:-557px -419px}.no-svg .wu-256.wu-chanceflurries{background-position:-5px -5px}.no-svg .wu-256.wu-chancerain{background-position:-271px -5px}.no-svg .wu-256.wu-chancesleet{background-position:-537px -5px}.no-svg .wu-256.wu-chancesnow{background-position:-803px -5px}.no-svg .wu-256.wu-chancetstorms{background-position:-5px -271px}.no-svg .wu-256.wu-clear{background-position:-271px -271px}.no-svg .wu-256.wu-cloudy{background-position:-537px -271px}.no-svg .wu-256.wu-flurries{background-position:-803px -271px}.no-svg .wu-256.wu-fog{background-position:-5px -537px}.no-svg .wu-256.wu-hazy{background-position:-271px -537px}.no-svg .wu-256.wu-mostlycloudy{background-position:-537px -537px}.no-svg .wu-256.wu-mostlysunny{background-position:-803px -537px}.no-svg .wu-256.wu-partlycloudy{background-position:-5px -803px}.no-svg .wu-256.wu-partlysunny{background-position:-271px -803px}.no-svg .wu-256.wu-rain{background-position:-537px -803px}.no-svg .wu-256.wu-sleet{background-position:-803px -803px}.no-svg .wu-256.wu-snow{background-position:-1069px -5px}.no-svg .wu-256.wu-sunny{background-position:-1069px -271px}.no-svg .wu-256.wu-tstorms{background-position:-1069px -537px}.no-svg .wu-256.wu-unknown{background-position:-1069px -803px}
diff --git a/index.html b/index.html
index 0527a2e..e3d4719 100644
--- a/index.html
+++ b/index.html
@@ -67,9 +67,9 @@
-