diff --git a/.idea/.idea.Collector/.idea/inspectionProfiles/Project_Default.xml b/.idea/.idea.Collector/.idea/inspectionProfiles/Project_Default.xml
new file mode 100644
index 0000000..c83a369
--- /dev/null
+++ b/.idea/.idea.Collector/.idea/inspectionProfiles/Project_Default.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Collector.csproj b/Collector/Collector.csproj
index 1f1a548..6eafd98 100644
--- a/Collector/Collector.csproj
+++ b/Collector/Collector.csproj
@@ -18,6 +18,8 @@
+
+
diff --git a/Collector/Content/themes/editor/ThemeData.xml b/Collector/Content/themes/editor/ThemeData.xml
new file mode 100644
index 0000000..bc96b53
--- /dev/null
+++ b/Collector/Content/themes/editor/ThemeData.xml
@@ -0,0 +1,12 @@
+
+
+
+ Clean
+ Ronen Ness
+ A simple, editor-like UI theme.
+ Made by Ronen Ness
+ 1.0.0
+
+ MIT
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/effects/disabled.fx b/Collector/Content/themes/editor/effects/disabled.fx
new file mode 100644
index 0000000..6774d71
--- /dev/null
+++ b/Collector/Content/themes/editor/effects/disabled.fx
@@ -0,0 +1,38 @@
+#if OPENGL
+ #define SV_POSITION POSITION
+ #define VS_SHADERMODEL vs_3_0
+ #define PS_SHADERMODEL ps_3_0
+#else
+ #define VS_SHADERMODEL vs_4_0_level_9_1
+ #define PS_SHADERMODEL ps_4_0_level_9_1
+#endif
+
+Texture2D SpriteTexture;
+
+sampler2D SpriteTextureSampler = sampler_state
+{
+ Texture = ;
+};
+
+struct VertexShaderOutput
+{
+ float4 Position : SV_POSITION;
+ float4 Color : COLOR0;
+ float2 TextureCoordinates : TEXCOORD0;
+};
+
+float4 MainPS(VertexShaderOutput input) : COLOR
+{
+ float4 color = tex2D(SpriteTextureSampler,input.TextureCoordinates) * input.Color;
+ float value = (color.r + color.g + color.b) / 3;
+ color.r = color.g = color.b = value;
+ return color;
+}
+
+technique SpriteDrawing
+{
+ pass P0
+ {
+ PixelShader = compile PS_SHADERMODEL MainPS();
+ }
+};
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/effects/silhouette.fx b/Collector/Content/themes/editor/effects/silhouette.fx
new file mode 100644
index 0000000..0bd81f3
--- /dev/null
+++ b/Collector/Content/themes/editor/effects/silhouette.fx
@@ -0,0 +1,39 @@
+#if OPENGL
+ #define SV_POSITION POSITION
+ #define VS_SHADERMODEL vs_3_0
+ #define PS_SHADERMODEL ps_3_0
+#else
+ #define VS_SHADERMODEL vs_4_0_level_9_1
+ #define PS_SHADERMODEL ps_4_0_level_9_1
+#endif
+
+Texture2D SpriteTexture;
+
+sampler2D SpriteTextureSampler = sampler_state
+{
+ Texture = ;
+};
+
+struct VertexShaderOutput
+{
+ float4 Position : SV_POSITION;
+ float4 Color : COLOR0;
+ float2 TextureCoordinates : TEXCOORD0;
+};
+
+float4 MainPS(VertexShaderOutput input) : COLOR
+{
+ float4 color = tex2D(SpriteTextureSampler,input.TextureCoordinates) * input.Color;
+ color.r = 1 * color.a * input.Color.r;
+ color.g = 1 * color.a * input.Color.g;
+ color.b = 1 * color.a * input.Color.b;
+ return color;
+}
+
+technique SpriteDrawing
+{
+ pass P0
+ {
+ PixelShader = compile PS_SHADERMODEL MainPS();
+ }
+};
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/fonts/Bold.spritefont b/Collector/Content/themes/editor/fonts/Bold.spritefont
new file mode 100644
index 0000000..1d7e133
--- /dev/null
+++ b/Collector/Content/themes/editor/fonts/Bold.spritefont
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+ Bitstream Vera Sans Mono Bold
+
+
+ 16
+
+
+ 0
+
+
+ true
+
+
+
+
+
+
+
+
+
+
+
+ ~
+
+
+
+
diff --git a/Collector/Content/themes/editor/fonts/Italic.spritefont b/Collector/Content/themes/editor/fonts/Italic.spritefont
new file mode 100644
index 0000000..a3ae047
--- /dev/null
+++ b/Collector/Content/themes/editor/fonts/Italic.spritefont
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+ Bitstream Vera Sans Mono Oblique
+
+
+ 16
+
+
+ 0
+
+
+ true
+
+
+
+
+
+
+
+
+
+
+
+ ~
+
+
+
+
diff --git a/Collector/Content/themes/editor/fonts/Regular.spritefont b/Collector/Content/themes/editor/fonts/Regular.spritefont
new file mode 100644
index 0000000..c23a0b1
--- /dev/null
+++ b/Collector/Content/themes/editor/fonts/Regular.spritefont
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+ Bitstream Vera Sans Mono Roman
+
+
+ 16
+
+
+ 0
+
+
+ true
+
+
+
+
+
+
+
+
+
+
+
+ ~
+
+
+
+
diff --git a/Collector/Content/themes/editor/styles/Button-Default.xml b/Collector/Content/themes/editor/styles/Button-Default.xml
new file mode 100644
index 0000000..2baf4a1
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Button-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 2
+
+
+
+
+
+
+
+
+
+
+
+
+ 0 60
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/Button-MouseDown.xml b/Collector/Content/themes/editor/styles/Button-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Button-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/Button-MouseHover.xml b/Collector/Content/themes/editor/styles/Button-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Button-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/ButtonParagraph-Default.xml b/Collector/Content/themes/editor/styles/ButtonParagraph-Default.xml
new file mode 100644
index 0000000..d9c6cbc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/ButtonParagraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/ButtonParagraph-MouseDown.xml b/Collector/Content/themes/editor/styles/ButtonParagraph-MouseDown.xml
new file mode 100644
index 0000000..8ef401a
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/ButtonParagraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ FFAAAAAA
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/ButtonParagraph-MouseHover.xml b/Collector/Content/themes/editor/styles/ButtonParagraph-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/ButtonParagraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/CheckBox-Default.xml b/Collector/Content/themes/editor/styles/CheckBox-Default.xml
new file mode 100644
index 0000000..cedb146
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/CheckBox-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0 40
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/CheckBox-MouseDown.xml b/Collector/Content/themes/editor/styles/CheckBox-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/CheckBox-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/CheckBox-MouseHover.xml b/Collector/Content/themes/editor/styles/CheckBox-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/CheckBox-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/CheckBoxParagraph-Default.xml b/Collector/Content/themes/editor/styles/CheckBoxParagraph-Default.xml
new file mode 100644
index 0000000..d9c6cbc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/CheckBoxParagraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/CheckBoxParagraph-MouseDown.xml b/Collector/Content/themes/editor/styles/CheckBoxParagraph-MouseDown.xml
new file mode 100644
index 0000000..af426c9
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/CheckBoxParagraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ FF00FFFF
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/CheckBoxParagraph-MouseHover.xml b/Collector/Content/themes/editor/styles/CheckBoxParagraph-MouseHover.xml
new file mode 100644
index 0000000..af426c9
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/CheckBoxParagraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ FF00FFFF
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/ColoredRectangle-Default.xml b/Collector/Content/themes/editor/styles/ColoredRectangle-Default.xml
new file mode 100644
index 0000000..e0beb18
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/ColoredRectangle-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ FFFFFFFF
+ FF000000
+ 2
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/ColoredRectangle-MouseDown.xml b/Collector/Content/themes/editor/styles/ColoredRectangle-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/ColoredRectangle-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/ColoredRectangle-MouseHover.xml b/Collector/Content/themes/editor/styles/ColoredRectangle-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/ColoredRectangle-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/DropDown-Default.xml b/Collector/Content/themes/editor/styles/DropDown-Default.xml
new file mode 100644
index 0000000..1399eb9
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/DropDown-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0 220
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/DropDown-MouseDown.xml b/Collector/Content/themes/editor/styles/DropDown-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/DropDown-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/DropDown-MouseHover.xml b/Collector/Content/themes/editor/styles/DropDown-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/DropDown-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/DropDownParagraph-Default.xml b/Collector/Content/themes/editor/styles/DropDownParagraph-Default.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/DropDownParagraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/DropDownParagraph-MouseDown.xml b/Collector/Content/themes/editor/styles/DropDownParagraph-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/DropDownParagraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/DropDownParagraph-MouseHover.xml b/Collector/Content/themes/editor/styles/DropDownParagraph-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/DropDownParagraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/DropDownSelectedParagraph-Default.xml b/Collector/Content/themes/editor/styles/DropDownSelectedParagraph-Default.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/DropDownSelectedParagraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/DropDownSelectedParagraph-MouseDown.xml b/Collector/Content/themes/editor/styles/DropDownSelectedParagraph-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/DropDownSelectedParagraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/DropDownSelectedParagraph-MouseHover.xml b/Collector/Content/themes/editor/styles/DropDownSelectedParagraph-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/DropDownSelectedParagraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/Entity-Default.xml b/Collector/Content/themes/editor/styles/Entity-Default.xml
new file mode 100644
index 0000000..e05e24c
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Entity-Default.xml
@@ -0,0 +1,19 @@
+
+
+
+ 1
+ FFFFFFFF
+ 00000000
+ 0
+ false
+ Regular
+ 00000000
+ 00000000
+ 0 0
+ 26 26
+ 0 0
+ 0 8
+ 1
+ 0 0
+
+
diff --git a/Collector/Content/themes/editor/styles/Entity-MouseDown.xml b/Collector/Content/themes/editor/styles/Entity-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Entity-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/Entity-MouseHover.xml b/Collector/Content/themes/editor/styles/Entity-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Entity-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/Header-Default.xml b/Collector/Content/themes/editor/styles/Header-Default.xml
new file mode 100644
index 0000000..f87b970
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Header-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1.2
+ FF00FFFF
+
+
+ true
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/Header-MouseDown.xml b/Collector/Content/themes/editor/styles/Header-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Header-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/Header-MouseHover.xml b/Collector/Content/themes/editor/styles/Header-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Header-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/HorizontalLine-Default.xml b/Collector/Content/themes/editor/styles/HorizontalLine-Default.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/HorizontalLine-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/HorizontalLine-MouseDown.xml b/Collector/Content/themes/editor/styles/HorizontalLine-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/HorizontalLine-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/HorizontalLine-MouseHover.xml b/Collector/Content/themes/editor/styles/HorizontalLine-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/HorizontalLine-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/Icon-Default.xml b/Collector/Content/themes/editor/styles/Icon-Default.xml
new file mode 100644
index 0000000..74c72ff
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Icon-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+ 50 50
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/Icon-MouseDown.xml b/Collector/Content/themes/editor/styles/Icon-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Icon-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/Icon-MouseHover.xml b/Collector/Content/themes/editor/styles/Icon-MouseHover.xml
new file mode 100644
index 0000000..8ff04a1
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Icon-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/Image-Default.xml b/Collector/Content/themes/editor/styles/Image-Default.xml
new file mode 100644
index 0000000..1beedd1
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Image-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+ FFFFFFFF
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/Image-MouseDown.xml b/Collector/Content/themes/editor/styles/Image-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Image-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/Image-MouseHover.xml b/Collector/Content/themes/editor/styles/Image-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Image-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/Label-Default.xml b/Collector/Content/themes/editor/styles/Label-Default.xml
new file mode 100644
index 0000000..db3ad89
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Label-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 0.8
+ FFCCCCCC
+ FF000000
+ 2
+ false
+ Regular
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Collector/Content/themes/editor/styles/Label-MouseDown.xml b/Collector/Content/themes/editor/styles/Label-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Label-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/Label-MouseHover.xml b/Collector/Content/themes/editor/styles/Label-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Label-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/Panel-Default.xml b/Collector/Content/themes/editor/styles/Panel-Default.xml
new file mode 100644
index 0000000..52d5b24
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Panel-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 2
+ FFFFFFFF
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/Panel-MouseDown.xml b/Collector/Content/themes/editor/styles/Panel-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Panel-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/Panel-MouseHover.xml b/Collector/Content/themes/editor/styles/Panel-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Panel-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/PanelTabsButton-Default.xml b/Collector/Content/themes/editor/styles/PanelTabsButton-Default.xml
new file mode 100644
index 0000000..6ef020c
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/PanelTabsButton-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 2
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/PanelTabsButton-MouseDown.xml b/Collector/Content/themes/editor/styles/PanelTabsButton-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/PanelTabsButton-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/PanelTabsButton-MouseHover.xml b/Collector/Content/themes/editor/styles/PanelTabsButton-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/PanelTabsButton-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/PanelTabsButtonParagraph-Default.xml b/Collector/Content/themes/editor/styles/PanelTabsButtonParagraph-Default.xml
new file mode 100644
index 0000000..d9c6cbc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/PanelTabsButtonParagraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/PanelTabsButtonParagraph-MouseDown.xml b/Collector/Content/themes/editor/styles/PanelTabsButtonParagraph-MouseDown.xml
new file mode 100644
index 0000000..8ef401a
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/PanelTabsButtonParagraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ FFAAAAAA
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/PanelTabsButtonParagraph-MouseHover.xml b/Collector/Content/themes/editor/styles/PanelTabsButtonParagraph-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/PanelTabsButtonParagraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/Paragraph-Default.xml b/Collector/Content/themes/editor/styles/Paragraph-Default.xml
new file mode 100644
index 0000000..7c53712
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Paragraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+ FFFFFFFF
+ FF000000
+ 2
+ false
+ Regular
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Collector/Content/themes/editor/styles/Paragraph-MouseDown.xml b/Collector/Content/themes/editor/styles/Paragraph-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Paragraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/Paragraph-MouseHover.xml b/Collector/Content/themes/editor/styles/Paragraph-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Paragraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/ProgressBar-Default.xml b/Collector/Content/themes/editor/styles/ProgressBar-Default.xml
new file mode 100644
index 0000000..14ec90b
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/ProgressBar-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0 52
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/ProgressBar-MouseDown.xml b/Collector/Content/themes/editor/styles/ProgressBar-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/ProgressBar-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/ProgressBar-MouseHover.xml b/Collector/Content/themes/editor/styles/ProgressBar-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/ProgressBar-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/ProgressBarFill-Default.xml b/Collector/Content/themes/editor/styles/ProgressBarFill-Default.xml
new file mode 100644
index 0000000..af426c9
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/ProgressBarFill-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ FF00FFFF
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/ProgressBarFill-MouseDown.xml b/Collector/Content/themes/editor/styles/ProgressBarFill-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/ProgressBarFill-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/ProgressBarFill-MouseHover.xml b/Collector/Content/themes/editor/styles/ProgressBarFill-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/ProgressBarFill-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/RadioButton-Default.xml b/Collector/Content/themes/editor/styles/RadioButton-Default.xml
new file mode 100644
index 0000000..eb36dcc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/RadioButton-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0 50
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/RadioButton-MouseDown.xml b/Collector/Content/themes/editor/styles/RadioButton-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/RadioButton-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/RadioButton-MouseHover.xml b/Collector/Content/themes/editor/styles/RadioButton-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/RadioButton-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/RadioButtonParagraph-Default.xml b/Collector/Content/themes/editor/styles/RadioButtonParagraph-Default.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/RadioButtonParagraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/RadioButtonParagraph-MouseDown.xml b/Collector/Content/themes/editor/styles/RadioButtonParagraph-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/RadioButtonParagraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/RadioButtonParagraph-MouseHover.xml b/Collector/Content/themes/editor/styles/RadioButtonParagraph-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/RadioButtonParagraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/SelectList-Default.xml b/Collector/Content/themes/editor/styles/SelectList-Default.xml
new file mode 100644
index 0000000..f0a2f8e
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/SelectList-Default.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+ 64000000
+
+
+ 30 22
+
+
+
+ 0 220
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/SelectList-MouseDown.xml b/Collector/Content/themes/editor/styles/SelectList-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/SelectList-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/SelectList-MouseHover.xml b/Collector/Content/themes/editor/styles/SelectList-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/SelectList-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/SelectListParagraph-Default.xml b/Collector/Content/themes/editor/styles/SelectListParagraph-Default.xml
new file mode 100644
index 0000000..7c53712
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/SelectListParagraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+ FFFFFFFF
+ FF000000
+ 2
+ false
+ Regular
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Collector/Content/themes/editor/styles/SelectListParagraph-MouseDown.xml b/Collector/Content/themes/editor/styles/SelectListParagraph-MouseDown.xml
new file mode 100644
index 0000000..af426c9
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/SelectListParagraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ FF00FFFF
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/SelectListParagraph-MouseHover.xml b/Collector/Content/themes/editor/styles/SelectListParagraph-MouseHover.xml
new file mode 100644
index 0000000..af426c9
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/SelectListParagraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ FF00FFFF
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/Slider-Default.xml b/Collector/Content/themes/editor/styles/Slider-Default.xml
new file mode 100644
index 0000000..bb0c9ac
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Slider-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0 30
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/Slider-MouseDown.xml b/Collector/Content/themes/editor/styles/Slider-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Slider-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/Slider-MouseHover.xml b/Collector/Content/themes/editor/styles/Slider-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/Slider-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/TextInput-Default.xml b/Collector/Content/themes/editor/styles/TextInput-Default.xml
new file mode 100644
index 0000000..cbae23d
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/TextInput-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0 65
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/TextInput-MouseDown.xml b/Collector/Content/themes/editor/styles/TextInput-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/TextInput-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/TextInput-MouseHover.xml b/Collector/Content/themes/editor/styles/TextInput-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/TextInput-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/TextInputParagraph-Default.xml b/Collector/Content/themes/editor/styles/TextInputParagraph-Default.xml
new file mode 100644
index 0000000..d9c6cbc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/TextInputParagraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/TextInputParagraph-MouseDown.xml b/Collector/Content/themes/editor/styles/TextInputParagraph-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/TextInputParagraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/TextInputParagraph-MouseHover.xml b/Collector/Content/themes/editor/styles/TextInputParagraph-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/TextInputParagraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/TextInputPlaceholder-Default.xml b/Collector/Content/themes/editor/styles/TextInputPlaceholder-Default.xml
new file mode 100644
index 0000000..c675854
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/TextInputPlaceholder-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+ FF969696
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/TextInputPlaceholder-MouseDown.xml b/Collector/Content/themes/editor/styles/TextInputPlaceholder-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/TextInputPlaceholder-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/TextInputPlaceholder-MouseHover.xml b/Collector/Content/themes/editor/styles/TextInputPlaceholder-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/TextInputPlaceholder-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/VerticalScrollbar-Default.xml b/Collector/Content/themes/editor/styles/VerticalScrollbar-Default.xml
new file mode 100644
index 0000000..b06b406
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/VerticalScrollbar-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 30 0
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/VerticalScrollbar-MouseDown.xml b/Collector/Content/themes/editor/styles/VerticalScrollbar-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/VerticalScrollbar-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/VerticalScrollbar-MouseHover.xml b/Collector/Content/themes/editor/styles/VerticalScrollbar-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/VerticalScrollbar-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/styles/example.xml b/Collector/Content/themes/editor/styles/example.xml
new file mode 100644
index 0000000..eda93f2
--- /dev/null
+++ b/Collector/Content/themes/editor/styles/example.xml
@@ -0,0 +1,47 @@
+
+
+
+
+
+ 1
+
+ FFFFFFFF
+
+ FF000000
+
+ 2
+
+ false
+
+ Regular
+
+ 00000000
+
+ 00000000
+
+ 0 0
+
+ 10 10
+
+ 0 0
+
+ 0 0
+
+ 1
+
+ 50 50
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/editor/textures/arrow_down.png b/Collector/Content/themes/editor/textures/arrow_down.png
new file mode 100644
index 0000000..894a698
Binary files /dev/null and b/Collector/Content/themes/editor/textures/arrow_down.png differ
diff --git a/Collector/Content/themes/editor/textures/arrow_up.png b/Collector/Content/themes/editor/textures/arrow_up.png
new file mode 100644
index 0000000..e07cec3
Binary files /dev/null and b/Collector/Content/themes/editor/textures/arrow_up.png differ
diff --git a/Collector/Content/themes/editor/textures/button_alternative.png b/Collector/Content/themes/editor/textures/button_alternative.png
new file mode 100644
index 0000000..b180090
Binary files /dev/null and b/Collector/Content/themes/editor/textures/button_alternative.png differ
diff --git a/Collector/Content/themes/editor/textures/button_alternative_down.png b/Collector/Content/themes/editor/textures/button_alternative_down.png
new file mode 100644
index 0000000..a5fb68b
Binary files /dev/null and b/Collector/Content/themes/editor/textures/button_alternative_down.png differ
diff --git a/Collector/Content/themes/editor/textures/button_alternative_hover.png b/Collector/Content/themes/editor/textures/button_alternative_hover.png
new file mode 100644
index 0000000..a7758eb
Binary files /dev/null and b/Collector/Content/themes/editor/textures/button_alternative_hover.png differ
diff --git a/Collector/Content/themes/editor/textures/button_alternative_md.xml b/Collector/Content/themes/editor/textures/button_alternative_md.xml
new file mode 100644
index 0000000..50107f4
--- /dev/null
+++ b/Collector/Content/themes/editor/textures/button_alternative_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.2
+ 0.35
+
+
+
diff --git a/Collector/Content/themes/editor/textures/button_default.png b/Collector/Content/themes/editor/textures/button_default.png
new file mode 100644
index 0000000..727c12b
Binary files /dev/null and b/Collector/Content/themes/editor/textures/button_default.png differ
diff --git a/Collector/Content/themes/editor/textures/button_default_down.png b/Collector/Content/themes/editor/textures/button_default_down.png
new file mode 100644
index 0000000..8ccf801
Binary files /dev/null and b/Collector/Content/themes/editor/textures/button_default_down.png differ
diff --git a/Collector/Content/themes/editor/textures/button_default_hover.png b/Collector/Content/themes/editor/textures/button_default_hover.png
new file mode 100644
index 0000000..2816a0e
Binary files /dev/null and b/Collector/Content/themes/editor/textures/button_default_hover.png differ
diff --git a/Collector/Content/themes/editor/textures/button_default_md.xml b/Collector/Content/themes/editor/textures/button_default_md.xml
new file mode 100644
index 0000000..50107f4
--- /dev/null
+++ b/Collector/Content/themes/editor/textures/button_default_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.2
+ 0.35
+
+
+
diff --git a/Collector/Content/themes/editor/textures/button_fancy.png b/Collector/Content/themes/editor/textures/button_fancy.png
new file mode 100644
index 0000000..90e7cc3
Binary files /dev/null and b/Collector/Content/themes/editor/textures/button_fancy.png differ
diff --git a/Collector/Content/themes/editor/textures/button_fancy_down.png b/Collector/Content/themes/editor/textures/button_fancy_down.png
new file mode 100644
index 0000000..55b7dd0
Binary files /dev/null and b/Collector/Content/themes/editor/textures/button_fancy_down.png differ
diff --git a/Collector/Content/themes/editor/textures/button_fancy_hover.png b/Collector/Content/themes/editor/textures/button_fancy_hover.png
new file mode 100644
index 0000000..fa797ca
Binary files /dev/null and b/Collector/Content/themes/editor/textures/button_fancy_hover.png differ
diff --git a/Collector/Content/themes/editor/textures/button_fancy_md.xml b/Collector/Content/themes/editor/textures/button_fancy_md.xml
new file mode 100644
index 0000000..50107f4
--- /dev/null
+++ b/Collector/Content/themes/editor/textures/button_fancy_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.2
+ 0.35
+
+
+
diff --git a/Collector/Content/themes/editor/textures/checkbox.png b/Collector/Content/themes/editor/textures/checkbox.png
new file mode 100644
index 0000000..7935f22
Binary files /dev/null and b/Collector/Content/themes/editor/textures/checkbox.png differ
diff --git a/Collector/Content/themes/editor/textures/checkbox_down.png b/Collector/Content/themes/editor/textures/checkbox_down.png
new file mode 100644
index 0000000..47e70d7
Binary files /dev/null and b/Collector/Content/themes/editor/textures/checkbox_down.png differ
diff --git a/Collector/Content/themes/editor/textures/checkbox_hover.png b/Collector/Content/themes/editor/textures/checkbox_hover.png
new file mode 100644
index 0000000..70fe327
Binary files /dev/null and b/Collector/Content/themes/editor/textures/checkbox_hover.png differ
diff --git a/Collector/Content/themes/editor/textures/cursor_default.png b/Collector/Content/themes/editor/textures/cursor_default.png
new file mode 100644
index 0000000..24a73fb
Binary files /dev/null and b/Collector/Content/themes/editor/textures/cursor_default.png differ
diff --git a/Collector/Content/themes/editor/textures/cursor_default_md.xml b/Collector/Content/themes/editor/textures/cursor_default_md.xml
new file mode 100644
index 0000000..e779d69
--- /dev/null
+++ b/Collector/Content/themes/editor/textures/cursor_default_md.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+ 0
+ 0
+ 40
+
+
+
diff --git a/Collector/Content/themes/editor/textures/cursor_ibeam.png b/Collector/Content/themes/editor/textures/cursor_ibeam.png
new file mode 100644
index 0000000..b38247a
Binary files /dev/null and b/Collector/Content/themes/editor/textures/cursor_ibeam.png differ
diff --git a/Collector/Content/themes/editor/textures/cursor_ibeam_md.xml b/Collector/Content/themes/editor/textures/cursor_ibeam_md.xml
new file mode 100644
index 0000000..10d5e52
--- /dev/null
+++ b/Collector/Content/themes/editor/textures/cursor_ibeam_md.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+ 0
+ -8
+ 40
+
+
+
diff --git a/Collector/Content/themes/editor/textures/cursor_pointer.png b/Collector/Content/themes/editor/textures/cursor_pointer.png
new file mode 100644
index 0000000..0fb1008
Binary files /dev/null and b/Collector/Content/themes/editor/textures/cursor_pointer.png differ
diff --git a/Collector/Content/themes/editor/textures/cursor_pointer_md.xml b/Collector/Content/themes/editor/textures/cursor_pointer_md.xml
new file mode 100644
index 0000000..82abccb
--- /dev/null
+++ b/Collector/Content/themes/editor/textures/cursor_pointer_md.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+ -4
+ 0
+ 50
+
+
+
diff --git a/Collector/Content/themes/editor/textures/horizontal_line.png b/Collector/Content/themes/editor/textures/horizontal_line.png
new file mode 100644
index 0000000..833e087
Binary files /dev/null and b/Collector/Content/themes/editor/textures/horizontal_line.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/Apple.png b/Collector/Content/themes/editor/textures/icons/Apple.png
new file mode 100644
index 0000000..9069cc5
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/Apple.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/Armor.png b/Collector/Content/themes/editor/textures/icons/Armor.png
new file mode 100644
index 0000000..e8cff60
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/Armor.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/Axe.png b/Collector/Content/themes/editor/textures/icons/Axe.png
new file mode 100644
index 0000000..05748e2
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/Axe.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/BloodySword.png b/Collector/Content/themes/editor/textures/icons/BloodySword.png
new file mode 100644
index 0000000..abf9eed
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/BloodySword.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/Bone.png b/Collector/Content/themes/editor/textures/icons/Bone.png
new file mode 100644
index 0000000..869d817
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/Bone.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/Book.png b/Collector/Content/themes/editor/textures/icons/Book.png
new file mode 100644
index 0000000..3da1b01
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/Book.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/Cubes.png b/Collector/Content/themes/editor/textures/icons/Cubes.png
new file mode 100644
index 0000000..1e10123
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/Cubes.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/Diamond.png b/Collector/Content/themes/editor/textures/icons/Diamond.png
new file mode 100644
index 0000000..20d46ab
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/Diamond.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/Explanation.png b/Collector/Content/themes/editor/textures/icons/Explanation.png
new file mode 100644
index 0000000..0927841
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/Explanation.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/Feather.png b/Collector/Content/themes/editor/textures/icons/Feather.png
new file mode 100644
index 0000000..1ec35ae
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/Feather.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/FloppyDisk.png b/Collector/Content/themes/editor/textures/icons/FloppyDisk.png
new file mode 100644
index 0000000..60f8520
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/FloppyDisk.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/GoldCoins.png b/Collector/Content/themes/editor/textures/icons/GoldCoins.png
new file mode 100644
index 0000000..596e556
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/GoldCoins.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/GoldShard.png b/Collector/Content/themes/editor/textures/icons/GoldShard.png
new file mode 100644
index 0000000..9d77a5c
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/GoldShard.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/Heart.png b/Collector/Content/themes/editor/textures/icons/Heart.png
new file mode 100644
index 0000000..fa0bb39
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/Heart.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/Helmet.png b/Collector/Content/themes/editor/textures/icons/Helmet.png
new file mode 100644
index 0000000..965cb60
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/Helmet.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/Key.png b/Collector/Content/themes/editor/textures/icons/Key.png
new file mode 100644
index 0000000..887a299
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/Key.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/MagicBook.png b/Collector/Content/themes/editor/textures/icons/MagicBook.png
new file mode 100644
index 0000000..48ca3d4
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/MagicBook.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/MagicWand.png b/Collector/Content/themes/editor/textures/icons/MagicWand.png
new file mode 100644
index 0000000..dbc92f4
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/MagicWand.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/Map.png b/Collector/Content/themes/editor/textures/icons/Map.png
new file mode 100644
index 0000000..b79bf46
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/Map.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/None.png b/Collector/Content/themes/editor/textures/icons/None.png
new file mode 100644
index 0000000..82fa43a
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/None.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/OrbBlue.png b/Collector/Content/themes/editor/textures/icons/OrbBlue.png
new file mode 100644
index 0000000..6262527
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/OrbBlue.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/OrbGreen.png b/Collector/Content/themes/editor/textures/icons/OrbGreen.png
new file mode 100644
index 0000000..0cd0fc2
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/OrbGreen.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/OrbRed.png b/Collector/Content/themes/editor/textures/icons/OrbRed.png
new file mode 100644
index 0000000..0efaaea
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/OrbRed.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/Pistol.png b/Collector/Content/themes/editor/textures/icons/Pistol.png
new file mode 100644
index 0000000..117de9b
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/Pistol.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/PotionBlue.png b/Collector/Content/themes/editor/textures/icons/PotionBlue.png
new file mode 100644
index 0000000..ed177e9
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/PotionBlue.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/PotionCyan.png b/Collector/Content/themes/editor/textures/icons/PotionCyan.png
new file mode 100644
index 0000000..1e7597a
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/PotionCyan.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/PotionGreen.png b/Collector/Content/themes/editor/textures/icons/PotionGreen.png
new file mode 100644
index 0000000..d4233d0
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/PotionGreen.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/PotionPurple.png b/Collector/Content/themes/editor/textures/icons/PotionPurple.png
new file mode 100644
index 0000000..fa36c2b
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/PotionPurple.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/PotionRed.png b/Collector/Content/themes/editor/textures/icons/PotionRed.png
new file mode 100644
index 0000000..776d63e
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/PotionRed.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/PotionYellow.png b/Collector/Content/themes/editor/textures/icons/PotionYellow.png
new file mode 100644
index 0000000..da55f89
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/PotionYellow.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/Ring.png b/Collector/Content/themes/editor/textures/icons/Ring.png
new file mode 100644
index 0000000..abe924c
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/Ring.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/RingGold.png b/Collector/Content/themes/editor/textures/icons/RingGold.png
new file mode 100644
index 0000000..1e64111
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/RingGold.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/RingGoldRuby.png b/Collector/Content/themes/editor/textures/icons/RingGoldRuby.png
new file mode 100644
index 0000000..e303fd1
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/RingGoldRuby.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/RingRuby.png b/Collector/Content/themes/editor/textures/icons/RingRuby.png
new file mode 100644
index 0000000..03cd193
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/RingRuby.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/RubyBlue.png b/Collector/Content/themes/editor/textures/icons/RubyBlue.png
new file mode 100644
index 0000000..69646a3
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/RubyBlue.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/RubyGreen.png b/Collector/Content/themes/editor/textures/icons/RubyGreen.png
new file mode 100644
index 0000000..b14be2e
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/RubyGreen.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/RubyPink.png b/Collector/Content/themes/editor/textures/icons/RubyPink.png
new file mode 100644
index 0000000..2d6abc5
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/RubyPink.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/RubyPurple.png b/Collector/Content/themes/editor/textures/icons/RubyPurple.png
new file mode 100644
index 0000000..066b638
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/RubyPurple.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/RubyRed.png b/Collector/Content/themes/editor/textures/icons/RubyRed.png
new file mode 100644
index 0000000..c3336c6
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/RubyRed.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/Sack.png b/Collector/Content/themes/editor/textures/icons/Sack.png
new file mode 100644
index 0000000..6dbe355
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/Sack.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/Scroll.png b/Collector/Content/themes/editor/textures/icons/Scroll.png
new file mode 100644
index 0000000..1047714
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/Scroll.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/Shield.png b/Collector/Content/themes/editor/textures/icons/Shield.png
new file mode 100644
index 0000000..5cd2772
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/Shield.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/ShieldAndSword.png b/Collector/Content/themes/editor/textures/icons/ShieldAndSword.png
new file mode 100644
index 0000000..181b7a1
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/ShieldAndSword.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/Shovel.png b/Collector/Content/themes/editor/textures/icons/Shovel.png
new file mode 100644
index 0000000..2443a72
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/Shovel.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/SilverShard.png b/Collector/Content/themes/editor/textures/icons/SilverShard.png
new file mode 100644
index 0000000..3e534e3
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/SilverShard.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/Skull.png b/Collector/Content/themes/editor/textures/icons/Skull.png
new file mode 100644
index 0000000..2d83478
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/Skull.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/Sword.png b/Collector/Content/themes/editor/textures/icons/Sword.png
new file mode 100644
index 0000000..140c9c1
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/Sword.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/Trap.png b/Collector/Content/themes/editor/textures/icons/Trap.png
new file mode 100644
index 0000000..2033a1c
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/Trap.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/ZoomIn.png b/Collector/Content/themes/editor/textures/icons/ZoomIn.png
new file mode 100644
index 0000000..817178b
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/ZoomIn.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/ZoomOut.png b/Collector/Content/themes/editor/textures/icons/ZoomOut.png
new file mode 100644
index 0000000..c6faffb
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/ZoomOut.png differ
diff --git a/Collector/Content/themes/editor/textures/icons/background.png b/Collector/Content/themes/editor/textures/icons/background.png
new file mode 100644
index 0000000..a1ad1b4
Binary files /dev/null and b/Collector/Content/themes/editor/textures/icons/background.png differ
diff --git a/Collector/Content/themes/editor/textures/panel_default.png b/Collector/Content/themes/editor/textures/panel_default.png
new file mode 100644
index 0000000..45c7f7b
Binary files /dev/null and b/Collector/Content/themes/editor/textures/panel_default.png differ
diff --git a/Collector/Content/themes/editor/textures/panel_default_md.xml b/Collector/Content/themes/editor/textures/panel_default_md.xml
new file mode 100644
index 0000000..7fa94b7
--- /dev/null
+++ b/Collector/Content/themes/editor/textures/panel_default_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.2
+ 0.2
+
+
+
diff --git a/Collector/Content/themes/editor/textures/panel_fancy.png b/Collector/Content/themes/editor/textures/panel_fancy.png
new file mode 100644
index 0000000..87a925d
Binary files /dev/null and b/Collector/Content/themes/editor/textures/panel_fancy.png differ
diff --git a/Collector/Content/themes/editor/textures/panel_fancy_md.xml b/Collector/Content/themes/editor/textures/panel_fancy_md.xml
new file mode 100644
index 0000000..2b3fc1f
--- /dev/null
+++ b/Collector/Content/themes/editor/textures/panel_fancy_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.2
+ 0.2
+
+
+
diff --git a/Collector/Content/themes/editor/textures/panel_golden.png b/Collector/Content/themes/editor/textures/panel_golden.png
new file mode 100644
index 0000000..b62a40e
Binary files /dev/null and b/Collector/Content/themes/editor/textures/panel_golden.png differ
diff --git a/Collector/Content/themes/editor/textures/panel_golden_md.xml b/Collector/Content/themes/editor/textures/panel_golden_md.xml
new file mode 100644
index 0000000..2b3fc1f
--- /dev/null
+++ b/Collector/Content/themes/editor/textures/panel_golden_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.2
+ 0.2
+
+
+
diff --git a/Collector/Content/themes/editor/textures/panel_listbackground.png b/Collector/Content/themes/editor/textures/panel_listbackground.png
new file mode 100644
index 0000000..7985ca9
Binary files /dev/null and b/Collector/Content/themes/editor/textures/panel_listbackground.png differ
diff --git a/Collector/Content/themes/editor/textures/panel_listbackground_md.xml b/Collector/Content/themes/editor/textures/panel_listbackground_md.xml
new file mode 100644
index 0000000..2b3fc1f
--- /dev/null
+++ b/Collector/Content/themes/editor/textures/panel_listbackground_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.2
+ 0.2
+
+
+
diff --git a/Collector/Content/themes/editor/textures/panel_simple.png b/Collector/Content/themes/editor/textures/panel_simple.png
new file mode 100644
index 0000000..db20ae2
Binary files /dev/null and b/Collector/Content/themes/editor/textures/panel_simple.png differ
diff --git a/Collector/Content/themes/editor/textures/panel_simple_md.xml b/Collector/Content/themes/editor/textures/panel_simple_md.xml
new file mode 100644
index 0000000..2b3fc1f
--- /dev/null
+++ b/Collector/Content/themes/editor/textures/panel_simple_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.2
+ 0.2
+
+
+
diff --git a/Collector/Content/themes/editor/textures/progressbar.png b/Collector/Content/themes/editor/textures/progressbar.png
new file mode 100644
index 0000000..c1ce76f
Binary files /dev/null and b/Collector/Content/themes/editor/textures/progressbar.png differ
diff --git a/Collector/Content/themes/editor/textures/progressbar_fill.png b/Collector/Content/themes/editor/textures/progressbar_fill.png
new file mode 100644
index 0000000..afa0cd7
Binary files /dev/null and b/Collector/Content/themes/editor/textures/progressbar_fill.png differ
diff --git a/Collector/Content/themes/editor/textures/progressbar_md.xml b/Collector/Content/themes/editor/textures/progressbar_md.xml
new file mode 100644
index 0000000..257a0a2
--- /dev/null
+++ b/Collector/Content/themes/editor/textures/progressbar_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.05
+ 0.0
+
+
+
diff --git a/Collector/Content/themes/editor/textures/radio.png b/Collector/Content/themes/editor/textures/radio.png
new file mode 100644
index 0000000..b2d08da
Binary files /dev/null and b/Collector/Content/themes/editor/textures/radio.png differ
diff --git a/Collector/Content/themes/editor/textures/radio_down.png b/Collector/Content/themes/editor/textures/radio_down.png
new file mode 100644
index 0000000..e3e70a4
Binary files /dev/null and b/Collector/Content/themes/editor/textures/radio_down.png differ
diff --git a/Collector/Content/themes/editor/textures/radio_hover.png b/Collector/Content/themes/editor/textures/radio_hover.png
new file mode 100644
index 0000000..9e24d8c
Binary files /dev/null and b/Collector/Content/themes/editor/textures/radio_hover.png differ
diff --git a/Collector/Content/themes/editor/textures/scrollbar.png b/Collector/Content/themes/editor/textures/scrollbar.png
new file mode 100644
index 0000000..06835aa
Binary files /dev/null and b/Collector/Content/themes/editor/textures/scrollbar.png differ
diff --git a/Collector/Content/themes/editor/textures/scrollbar_mark.png b/Collector/Content/themes/editor/textures/scrollbar_mark.png
new file mode 100644
index 0000000..08bf871
Binary files /dev/null and b/Collector/Content/themes/editor/textures/scrollbar_mark.png differ
diff --git a/Collector/Content/themes/editor/textures/scrollbar_md.xml b/Collector/Content/themes/editor/textures/scrollbar_md.xml
new file mode 100644
index 0000000..80c3e3d
--- /dev/null
+++ b/Collector/Content/themes/editor/textures/scrollbar_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.0
+ 0.14
+
+
+
diff --git a/Collector/Content/themes/editor/textures/slider_default.png b/Collector/Content/themes/editor/textures/slider_default.png
new file mode 100644
index 0000000..dffd366
Binary files /dev/null and b/Collector/Content/themes/editor/textures/slider_default.png differ
diff --git a/Collector/Content/themes/editor/textures/slider_default_mark.png b/Collector/Content/themes/editor/textures/slider_default_mark.png
new file mode 100644
index 0000000..4c8c273
Binary files /dev/null and b/Collector/Content/themes/editor/textures/slider_default_mark.png differ
diff --git a/Collector/Content/themes/editor/textures/slider_default_md.xml b/Collector/Content/themes/editor/textures/slider_default_md.xml
new file mode 100644
index 0000000..d27d99d
--- /dev/null
+++ b/Collector/Content/themes/editor/textures/slider_default_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.03
+ 0.0
+
+
+
diff --git a/Collector/Content/themes/editor/textures/slider_fancy.png b/Collector/Content/themes/editor/textures/slider_fancy.png
new file mode 100644
index 0000000..0aca549
Binary files /dev/null and b/Collector/Content/themes/editor/textures/slider_fancy.png differ
diff --git a/Collector/Content/themes/editor/textures/slider_fancy_mark.png b/Collector/Content/themes/editor/textures/slider_fancy_mark.png
new file mode 100644
index 0000000..51e4707
Binary files /dev/null and b/Collector/Content/themes/editor/textures/slider_fancy_mark.png differ
diff --git a/Collector/Content/themes/editor/textures/slider_fancy_md.xml b/Collector/Content/themes/editor/textures/slider_fancy_md.xml
new file mode 100644
index 0000000..d3485b6
--- /dev/null
+++ b/Collector/Content/themes/editor/textures/slider_fancy_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.14
+ 0.0
+
+
+
diff --git a/Collector/Content/themes/editor/textures/white_texture.png b/Collector/Content/themes/editor/textures/white_texture.png
new file mode 100644
index 0000000..a782975
Binary files /dev/null and b/Collector/Content/themes/editor/textures/white_texture.png differ
diff --git a/Collector/Content/themes/hd/ThemeData.xml b/Collector/Content/themes/hd/ThemeData.xml
new file mode 100644
index 0000000..0a9e5bd
--- /dev/null
+++ b/Collector/Content/themes/hd/ThemeData.xml
@@ -0,0 +1,22 @@
+
+
+
+ Hd
+ Ronen Ness
+ A higher-res, old-school style UI theme GeonBit.UI comes with by default.
+ This theme is mostly based on Michele Bucelli ("Buch") works.
+Sources can be found here:
+
+- http://opengameart.org/content/golden-ui
+- http://opengameart.org/content/roguelikerpg-icons
+- http://opengameart.org/content/roguelikerpg-items
+- http://opengameart.org/content/arabian-icons
+- http://opengameart.org/content/2d-static-spritesicons
+- http://opengameart.org/content/30-ability-icons
+- http://opengameart.org/content/whispers-of-avalon-item-icons
+
+ 1.0.0
+
+ MIT
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/effects/disabled.fx b/Collector/Content/themes/hd/effects/disabled.fx
new file mode 100644
index 0000000..6774d71
--- /dev/null
+++ b/Collector/Content/themes/hd/effects/disabled.fx
@@ -0,0 +1,38 @@
+#if OPENGL
+ #define SV_POSITION POSITION
+ #define VS_SHADERMODEL vs_3_0
+ #define PS_SHADERMODEL ps_3_0
+#else
+ #define VS_SHADERMODEL vs_4_0_level_9_1
+ #define PS_SHADERMODEL ps_4_0_level_9_1
+#endif
+
+Texture2D SpriteTexture;
+
+sampler2D SpriteTextureSampler = sampler_state
+{
+ Texture = ;
+};
+
+struct VertexShaderOutput
+{
+ float4 Position : SV_POSITION;
+ float4 Color : COLOR0;
+ float2 TextureCoordinates : TEXCOORD0;
+};
+
+float4 MainPS(VertexShaderOutput input) : COLOR
+{
+ float4 color = tex2D(SpriteTextureSampler,input.TextureCoordinates) * input.Color;
+ float value = (color.r + color.g + color.b) / 3;
+ color.r = color.g = color.b = value;
+ return color;
+}
+
+technique SpriteDrawing
+{
+ pass P0
+ {
+ PixelShader = compile PS_SHADERMODEL MainPS();
+ }
+};
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/effects/silhouette.fx b/Collector/Content/themes/hd/effects/silhouette.fx
new file mode 100644
index 0000000..0bd81f3
--- /dev/null
+++ b/Collector/Content/themes/hd/effects/silhouette.fx
@@ -0,0 +1,39 @@
+#if OPENGL
+ #define SV_POSITION POSITION
+ #define VS_SHADERMODEL vs_3_0
+ #define PS_SHADERMODEL ps_3_0
+#else
+ #define VS_SHADERMODEL vs_4_0_level_9_1
+ #define PS_SHADERMODEL ps_4_0_level_9_1
+#endif
+
+Texture2D SpriteTexture;
+
+sampler2D SpriteTextureSampler = sampler_state
+{
+ Texture = ;
+};
+
+struct VertexShaderOutput
+{
+ float4 Position : SV_POSITION;
+ float4 Color : COLOR0;
+ float2 TextureCoordinates : TEXCOORD0;
+};
+
+float4 MainPS(VertexShaderOutput input) : COLOR
+{
+ float4 color = tex2D(SpriteTextureSampler,input.TextureCoordinates) * input.Color;
+ color.r = 1 * color.a * input.Color.r;
+ color.g = 1 * color.a * input.Color.g;
+ color.b = 1 * color.a * input.Color.b;
+ return color;
+}
+
+technique SpriteDrawing
+{
+ pass P0
+ {
+ PixelShader = compile PS_SHADERMODEL MainPS();
+ }
+};
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/fonts/Bold.spritefont b/Collector/Content/themes/hd/fonts/Bold.spritefont
new file mode 100644
index 0000000..1d7e133
--- /dev/null
+++ b/Collector/Content/themes/hd/fonts/Bold.spritefont
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+ Bitstream Vera Sans Mono Bold
+
+
+ 16
+
+
+ 0
+
+
+ true
+
+
+
+
+
+
+
+
+
+
+
+ ~
+
+
+
+
diff --git a/Collector/Content/themes/hd/fonts/Italic.spritefont b/Collector/Content/themes/hd/fonts/Italic.spritefont
new file mode 100644
index 0000000..a3ae047
--- /dev/null
+++ b/Collector/Content/themes/hd/fonts/Italic.spritefont
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+ Bitstream Vera Sans Mono Oblique
+
+
+ 16
+
+
+ 0
+
+
+ true
+
+
+
+
+
+
+
+
+
+
+
+ ~
+
+
+
+
diff --git a/Collector/Content/themes/hd/fonts/Regular.spritefont b/Collector/Content/themes/hd/fonts/Regular.spritefont
new file mode 100644
index 0000000..c23a0b1
--- /dev/null
+++ b/Collector/Content/themes/hd/fonts/Regular.spritefont
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+ Bitstream Vera Sans Mono Roman
+
+
+ 16
+
+
+ 0
+
+
+ true
+
+
+
+
+
+
+
+
+
+
+
+ ~
+
+
+
+
diff --git a/Collector/Content/themes/hd/styles/Button-Default.xml b/Collector/Content/themes/hd/styles/Button-Default.xml
new file mode 100644
index 0000000..2baf4a1
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Button-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 2
+
+
+
+
+
+
+
+
+
+
+
+
+ 0 60
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/Button-MouseDown.xml b/Collector/Content/themes/hd/styles/Button-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Button-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/Button-MouseHover.xml b/Collector/Content/themes/hd/styles/Button-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Button-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/ButtonParagraph-Default.xml b/Collector/Content/themes/hd/styles/ButtonParagraph-Default.xml
new file mode 100644
index 0000000..d9c6cbc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/ButtonParagraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/ButtonParagraph-MouseDown.xml b/Collector/Content/themes/hd/styles/ButtonParagraph-MouseDown.xml
new file mode 100644
index 0000000..8ef401a
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/ButtonParagraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ FFAAAAAA
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/ButtonParagraph-MouseHover.xml b/Collector/Content/themes/hd/styles/ButtonParagraph-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/ButtonParagraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/CheckBox-Default.xml b/Collector/Content/themes/hd/styles/CheckBox-Default.xml
new file mode 100644
index 0000000..cedb146
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/CheckBox-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0 40
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/CheckBox-MouseDown.xml b/Collector/Content/themes/hd/styles/CheckBox-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/CheckBox-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/CheckBox-MouseHover.xml b/Collector/Content/themes/hd/styles/CheckBox-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/CheckBox-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/CheckBoxParagraph-Default.xml b/Collector/Content/themes/hd/styles/CheckBoxParagraph-Default.xml
new file mode 100644
index 0000000..d9c6cbc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/CheckBoxParagraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/CheckBoxParagraph-MouseDown.xml b/Collector/Content/themes/hd/styles/CheckBoxParagraph-MouseDown.xml
new file mode 100644
index 0000000..c50f02f
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/CheckBoxParagraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ FFFFFF00
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/CheckBoxParagraph-MouseHover.xml b/Collector/Content/themes/hd/styles/CheckBoxParagraph-MouseHover.xml
new file mode 100644
index 0000000..c50f02f
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/CheckBoxParagraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ FFFFFF00
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/ColoredRectangle-Default.xml b/Collector/Content/themes/hd/styles/ColoredRectangle-Default.xml
new file mode 100644
index 0000000..e0beb18
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/ColoredRectangle-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ FFFFFFFF
+ FF000000
+ 2
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/ColoredRectangle-MouseDown.xml b/Collector/Content/themes/hd/styles/ColoredRectangle-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/ColoredRectangle-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/ColoredRectangle-MouseHover.xml b/Collector/Content/themes/hd/styles/ColoredRectangle-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/ColoredRectangle-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/DropDown-Default.xml b/Collector/Content/themes/hd/styles/DropDown-Default.xml
new file mode 100644
index 0000000..1399eb9
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/DropDown-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0 220
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/DropDown-MouseDown.xml b/Collector/Content/themes/hd/styles/DropDown-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/DropDown-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/DropDown-MouseHover.xml b/Collector/Content/themes/hd/styles/DropDown-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/DropDown-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/DropDownParagraph-Default.xml b/Collector/Content/themes/hd/styles/DropDownParagraph-Default.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/DropDownParagraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/DropDownParagraph-MouseDown.xml b/Collector/Content/themes/hd/styles/DropDownParagraph-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/DropDownParagraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/DropDownParagraph-MouseHover.xml b/Collector/Content/themes/hd/styles/DropDownParagraph-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/DropDownParagraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/DropDownSelectedParagraph-Default.xml b/Collector/Content/themes/hd/styles/DropDownSelectedParagraph-Default.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/DropDownSelectedParagraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/DropDownSelectedParagraph-MouseDown.xml b/Collector/Content/themes/hd/styles/DropDownSelectedParagraph-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/DropDownSelectedParagraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/DropDownSelectedParagraph-MouseHover.xml b/Collector/Content/themes/hd/styles/DropDownSelectedParagraph-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/DropDownSelectedParagraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/Entity-Default.xml b/Collector/Content/themes/hd/styles/Entity-Default.xml
new file mode 100644
index 0000000..e05e24c
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Entity-Default.xml
@@ -0,0 +1,19 @@
+
+
+
+ 1
+ FFFFFFFF
+ 00000000
+ 0
+ false
+ Regular
+ 00000000
+ 00000000
+ 0 0
+ 26 26
+ 0 0
+ 0 8
+ 1
+ 0 0
+
+
diff --git a/Collector/Content/themes/hd/styles/Entity-MouseDown.xml b/Collector/Content/themes/hd/styles/Entity-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Entity-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/Entity-MouseHover.xml b/Collector/Content/themes/hd/styles/Entity-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Entity-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/Header-Default.xml b/Collector/Content/themes/hd/styles/Header-Default.xml
new file mode 100644
index 0000000..3ba2c61
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Header-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1.2
+ FFFFFF00
+
+
+ true
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/Header-MouseDown.xml b/Collector/Content/themes/hd/styles/Header-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Header-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/Header-MouseHover.xml b/Collector/Content/themes/hd/styles/Header-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Header-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/HorizontalLine-Default.xml b/Collector/Content/themes/hd/styles/HorizontalLine-Default.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/HorizontalLine-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/HorizontalLine-MouseDown.xml b/Collector/Content/themes/hd/styles/HorizontalLine-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/HorizontalLine-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/HorizontalLine-MouseHover.xml b/Collector/Content/themes/hd/styles/HorizontalLine-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/HorizontalLine-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/Icon-Default.xml b/Collector/Content/themes/hd/styles/Icon-Default.xml
new file mode 100644
index 0000000..74c72ff
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Icon-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+ 50 50
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/Icon-MouseDown.xml b/Collector/Content/themes/hd/styles/Icon-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Icon-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/Icon-MouseHover.xml b/Collector/Content/themes/hd/styles/Icon-MouseHover.xml
new file mode 100644
index 0000000..8ff04a1
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Icon-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/Image-Default.xml b/Collector/Content/themes/hd/styles/Image-Default.xml
new file mode 100644
index 0000000..1beedd1
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Image-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+ FFFFFFFF
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/Image-MouseDown.xml b/Collector/Content/themes/hd/styles/Image-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Image-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/Image-MouseHover.xml b/Collector/Content/themes/hd/styles/Image-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Image-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/Label-Default.xml b/Collector/Content/themes/hd/styles/Label-Default.xml
new file mode 100644
index 0000000..db3ad89
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Label-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 0.8
+ FFCCCCCC
+ FF000000
+ 2
+ false
+ Regular
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Collector/Content/themes/hd/styles/Label-MouseDown.xml b/Collector/Content/themes/hd/styles/Label-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Label-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/Label-MouseHover.xml b/Collector/Content/themes/hd/styles/Label-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Label-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/Panel-Default.xml b/Collector/Content/themes/hd/styles/Panel-Default.xml
new file mode 100644
index 0000000..52d5b24
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Panel-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 2
+ FFFFFFFF
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/Panel-MouseDown.xml b/Collector/Content/themes/hd/styles/Panel-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Panel-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/Panel-MouseHover.xml b/Collector/Content/themes/hd/styles/Panel-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Panel-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/PanelTabsButton-Default.xml b/Collector/Content/themes/hd/styles/PanelTabsButton-Default.xml
new file mode 100644
index 0000000..6ef020c
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/PanelTabsButton-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 2
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/PanelTabsButton-MouseDown.xml b/Collector/Content/themes/hd/styles/PanelTabsButton-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/PanelTabsButton-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/PanelTabsButton-MouseHover.xml b/Collector/Content/themes/hd/styles/PanelTabsButton-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/PanelTabsButton-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/PanelTabsButtonParagraph-Default.xml b/Collector/Content/themes/hd/styles/PanelTabsButtonParagraph-Default.xml
new file mode 100644
index 0000000..d9c6cbc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/PanelTabsButtonParagraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/PanelTabsButtonParagraph-MouseDown.xml b/Collector/Content/themes/hd/styles/PanelTabsButtonParagraph-MouseDown.xml
new file mode 100644
index 0000000..8ef401a
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/PanelTabsButtonParagraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ FFAAAAAA
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/PanelTabsButtonParagraph-MouseHover.xml b/Collector/Content/themes/hd/styles/PanelTabsButtonParagraph-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/PanelTabsButtonParagraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/Paragraph-Default.xml b/Collector/Content/themes/hd/styles/Paragraph-Default.xml
new file mode 100644
index 0000000..7c53712
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Paragraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+ FFFFFFFF
+ FF000000
+ 2
+ false
+ Regular
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Collector/Content/themes/hd/styles/Paragraph-MouseDown.xml b/Collector/Content/themes/hd/styles/Paragraph-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Paragraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/Paragraph-MouseHover.xml b/Collector/Content/themes/hd/styles/Paragraph-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Paragraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/ProgressBar-Default.xml b/Collector/Content/themes/hd/styles/ProgressBar-Default.xml
new file mode 100644
index 0000000..14ec90b
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/ProgressBar-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0 52
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/ProgressBar-MouseDown.xml b/Collector/Content/themes/hd/styles/ProgressBar-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/ProgressBar-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/ProgressBar-MouseHover.xml b/Collector/Content/themes/hd/styles/ProgressBar-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/ProgressBar-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/ProgressBarFill-Default.xml b/Collector/Content/themes/hd/styles/ProgressBarFill-Default.xml
new file mode 100644
index 0000000..115fb41
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/ProgressBarFill-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ FF84CC40
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/ProgressBarFill-MouseDown.xml b/Collector/Content/themes/hd/styles/ProgressBarFill-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/ProgressBarFill-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/ProgressBarFill-MouseHover.xml b/Collector/Content/themes/hd/styles/ProgressBarFill-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/ProgressBarFill-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/RadioButton-Default.xml b/Collector/Content/themes/hd/styles/RadioButton-Default.xml
new file mode 100644
index 0000000..eb36dcc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/RadioButton-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0 50
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/RadioButton-MouseDown.xml b/Collector/Content/themes/hd/styles/RadioButton-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/RadioButton-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/RadioButton-MouseHover.xml b/Collector/Content/themes/hd/styles/RadioButton-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/RadioButton-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/RadioButtonParagraph-Default.xml b/Collector/Content/themes/hd/styles/RadioButtonParagraph-Default.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/RadioButtonParagraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/RadioButtonParagraph-MouseDown.xml b/Collector/Content/themes/hd/styles/RadioButtonParagraph-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/RadioButtonParagraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/RadioButtonParagraph-MouseHover.xml b/Collector/Content/themes/hd/styles/RadioButtonParagraph-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/RadioButtonParagraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/SelectList-Default.xml b/Collector/Content/themes/hd/styles/SelectList-Default.xml
new file mode 100644
index 0000000..f0a2f8e
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/SelectList-Default.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+ 64000000
+
+
+ 30 22
+
+
+
+ 0 220
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/SelectList-MouseDown.xml b/Collector/Content/themes/hd/styles/SelectList-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/SelectList-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/SelectList-MouseHover.xml b/Collector/Content/themes/hd/styles/SelectList-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/SelectList-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/SelectListParagraph-Default.xml b/Collector/Content/themes/hd/styles/SelectListParagraph-Default.xml
new file mode 100644
index 0000000..7c53712
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/SelectListParagraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+ FFFFFFFF
+ FF000000
+ 2
+ false
+ Regular
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Collector/Content/themes/hd/styles/SelectListParagraph-MouseDown.xml b/Collector/Content/themes/hd/styles/SelectListParagraph-MouseDown.xml
new file mode 100644
index 0000000..c50f02f
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/SelectListParagraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ FFFFFF00
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/SelectListParagraph-MouseHover.xml b/Collector/Content/themes/hd/styles/SelectListParagraph-MouseHover.xml
new file mode 100644
index 0000000..c50f02f
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/SelectListParagraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ FFFFFF00
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/Slider-Default.xml b/Collector/Content/themes/hd/styles/Slider-Default.xml
new file mode 100644
index 0000000..bb0c9ac
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Slider-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0 30
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/Slider-MouseDown.xml b/Collector/Content/themes/hd/styles/Slider-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Slider-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/Slider-MouseHover.xml b/Collector/Content/themes/hd/styles/Slider-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/Slider-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/TextInput-Default.xml b/Collector/Content/themes/hd/styles/TextInput-Default.xml
new file mode 100644
index 0000000..cbae23d
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/TextInput-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0 65
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/TextInput-MouseDown.xml b/Collector/Content/themes/hd/styles/TextInput-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/TextInput-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/TextInput-MouseHover.xml b/Collector/Content/themes/hd/styles/TextInput-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/TextInput-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/TextInputParagraph-Default.xml b/Collector/Content/themes/hd/styles/TextInputParagraph-Default.xml
new file mode 100644
index 0000000..d9c6cbc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/TextInputParagraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/TextInputParagraph-MouseDown.xml b/Collector/Content/themes/hd/styles/TextInputParagraph-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/TextInputParagraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/TextInputParagraph-MouseHover.xml b/Collector/Content/themes/hd/styles/TextInputParagraph-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/TextInputParagraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/TextInputPlaceholder-Default.xml b/Collector/Content/themes/hd/styles/TextInputPlaceholder-Default.xml
new file mode 100644
index 0000000..c675854
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/TextInputPlaceholder-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+ FF969696
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/TextInputPlaceholder-MouseDown.xml b/Collector/Content/themes/hd/styles/TextInputPlaceholder-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/TextInputPlaceholder-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/TextInputPlaceholder-MouseHover.xml b/Collector/Content/themes/hd/styles/TextInputPlaceholder-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/TextInputPlaceholder-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/VerticalScrollbar-Default.xml b/Collector/Content/themes/hd/styles/VerticalScrollbar-Default.xml
new file mode 100644
index 0000000..b06b406
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/VerticalScrollbar-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 30 0
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/VerticalScrollbar-MouseDown.xml b/Collector/Content/themes/hd/styles/VerticalScrollbar-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/VerticalScrollbar-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/VerticalScrollbar-MouseHover.xml b/Collector/Content/themes/hd/styles/VerticalScrollbar-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/VerticalScrollbar-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/styles/example.xml b/Collector/Content/themes/hd/styles/example.xml
new file mode 100644
index 0000000..eda93f2
--- /dev/null
+++ b/Collector/Content/themes/hd/styles/example.xml
@@ -0,0 +1,47 @@
+
+
+
+
+
+ 1
+
+ FFFFFFFF
+
+ FF000000
+
+ 2
+
+ false
+
+ Regular
+
+ 00000000
+
+ 00000000
+
+ 0 0
+
+ 10 10
+
+ 0 0
+
+ 0 0
+
+ 1
+
+ 50 50
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/hd/textures/arrow_down.png b/Collector/Content/themes/hd/textures/arrow_down.png
new file mode 100644
index 0000000..4dd07bb
Binary files /dev/null and b/Collector/Content/themes/hd/textures/arrow_down.png differ
diff --git a/Collector/Content/themes/hd/textures/arrow_up.png b/Collector/Content/themes/hd/textures/arrow_up.png
new file mode 100644
index 0000000..65a3b01
Binary files /dev/null and b/Collector/Content/themes/hd/textures/arrow_up.png differ
diff --git a/Collector/Content/themes/hd/textures/button_alternative.png b/Collector/Content/themes/hd/textures/button_alternative.png
new file mode 100644
index 0000000..b2f6aa1
Binary files /dev/null and b/Collector/Content/themes/hd/textures/button_alternative.png differ
diff --git a/Collector/Content/themes/hd/textures/button_alternative_down.png b/Collector/Content/themes/hd/textures/button_alternative_down.png
new file mode 100644
index 0000000..48e47dd
Binary files /dev/null and b/Collector/Content/themes/hd/textures/button_alternative_down.png differ
diff --git a/Collector/Content/themes/hd/textures/button_alternative_hover.png b/Collector/Content/themes/hd/textures/button_alternative_hover.png
new file mode 100644
index 0000000..74e018d
Binary files /dev/null and b/Collector/Content/themes/hd/textures/button_alternative_hover.png differ
diff --git a/Collector/Content/themes/hd/textures/button_alternative_md.xml b/Collector/Content/themes/hd/textures/button_alternative_md.xml
new file mode 100644
index 0000000..be50e84
--- /dev/null
+++ b/Collector/Content/themes/hd/textures/button_alternative_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.2
+ 0
+
+
+
diff --git a/Collector/Content/themes/hd/textures/button_default.png b/Collector/Content/themes/hd/textures/button_default.png
new file mode 100644
index 0000000..37dc988
Binary files /dev/null and b/Collector/Content/themes/hd/textures/button_default.png differ
diff --git a/Collector/Content/themes/hd/textures/button_default_down.png b/Collector/Content/themes/hd/textures/button_default_down.png
new file mode 100644
index 0000000..268dd99
Binary files /dev/null and b/Collector/Content/themes/hd/textures/button_default_down.png differ
diff --git a/Collector/Content/themes/hd/textures/button_default_hover.png b/Collector/Content/themes/hd/textures/button_default_hover.png
new file mode 100644
index 0000000..18d81c2
Binary files /dev/null and b/Collector/Content/themes/hd/textures/button_default_hover.png differ
diff --git a/Collector/Content/themes/hd/textures/button_default_md.xml b/Collector/Content/themes/hd/textures/button_default_md.xml
new file mode 100644
index 0000000..50107f4
--- /dev/null
+++ b/Collector/Content/themes/hd/textures/button_default_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.2
+ 0.35
+
+
+
diff --git a/Collector/Content/themes/hd/textures/button_fancy.png b/Collector/Content/themes/hd/textures/button_fancy.png
new file mode 100644
index 0000000..7fa0dd8
Binary files /dev/null and b/Collector/Content/themes/hd/textures/button_fancy.png differ
diff --git a/Collector/Content/themes/hd/textures/button_fancy_down.png b/Collector/Content/themes/hd/textures/button_fancy_down.png
new file mode 100644
index 0000000..8c3f37a
Binary files /dev/null and b/Collector/Content/themes/hd/textures/button_fancy_down.png differ
diff --git a/Collector/Content/themes/hd/textures/button_fancy_hover.png b/Collector/Content/themes/hd/textures/button_fancy_hover.png
new file mode 100644
index 0000000..a0f439a
Binary files /dev/null and b/Collector/Content/themes/hd/textures/button_fancy_hover.png differ
diff --git a/Collector/Content/themes/hd/textures/button_fancy_md.xml b/Collector/Content/themes/hd/textures/button_fancy_md.xml
new file mode 100644
index 0000000..46b65bc
--- /dev/null
+++ b/Collector/Content/themes/hd/textures/button_fancy_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.35
+ 0.0
+
+
+
diff --git a/Collector/Content/themes/hd/textures/checkbox.png b/Collector/Content/themes/hd/textures/checkbox.png
new file mode 100644
index 0000000..8bafc50
Binary files /dev/null and b/Collector/Content/themes/hd/textures/checkbox.png differ
diff --git a/Collector/Content/themes/hd/textures/checkbox_down.png b/Collector/Content/themes/hd/textures/checkbox_down.png
new file mode 100644
index 0000000..1a77817
Binary files /dev/null and b/Collector/Content/themes/hd/textures/checkbox_down.png differ
diff --git a/Collector/Content/themes/hd/textures/checkbox_hover.png b/Collector/Content/themes/hd/textures/checkbox_hover.png
new file mode 100644
index 0000000..be740d6
Binary files /dev/null and b/Collector/Content/themes/hd/textures/checkbox_hover.png differ
diff --git a/Collector/Content/themes/hd/textures/cursor_default.png b/Collector/Content/themes/hd/textures/cursor_default.png
new file mode 100644
index 0000000..0bc4377
Binary files /dev/null and b/Collector/Content/themes/hd/textures/cursor_default.png differ
diff --git a/Collector/Content/themes/hd/textures/cursor_default_md.xml b/Collector/Content/themes/hd/textures/cursor_default_md.xml
new file mode 100644
index 0000000..e779d69
--- /dev/null
+++ b/Collector/Content/themes/hd/textures/cursor_default_md.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+ 0
+ 0
+ 40
+
+
+
diff --git a/Collector/Content/themes/hd/textures/cursor_ibeam.png b/Collector/Content/themes/hd/textures/cursor_ibeam.png
new file mode 100644
index 0000000..2027785
Binary files /dev/null and b/Collector/Content/themes/hd/textures/cursor_ibeam.png differ
diff --git a/Collector/Content/themes/hd/textures/cursor_ibeam_md.xml b/Collector/Content/themes/hd/textures/cursor_ibeam_md.xml
new file mode 100644
index 0000000..10d5e52
--- /dev/null
+++ b/Collector/Content/themes/hd/textures/cursor_ibeam_md.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+ 0
+ -8
+ 40
+
+
+
diff --git a/Collector/Content/themes/hd/textures/cursor_pointer.png b/Collector/Content/themes/hd/textures/cursor_pointer.png
new file mode 100644
index 0000000..e62b106
Binary files /dev/null and b/Collector/Content/themes/hd/textures/cursor_pointer.png differ
diff --git a/Collector/Content/themes/hd/textures/cursor_pointer_md.xml b/Collector/Content/themes/hd/textures/cursor_pointer_md.xml
new file mode 100644
index 0000000..82abccb
--- /dev/null
+++ b/Collector/Content/themes/hd/textures/cursor_pointer_md.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+ -4
+ 0
+ 50
+
+
+
diff --git a/Collector/Content/themes/hd/textures/horizontal_line.png b/Collector/Content/themes/hd/textures/horizontal_line.png
new file mode 100644
index 0000000..5ae5bd1
Binary files /dev/null and b/Collector/Content/themes/hd/textures/horizontal_line.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/Apple.png b/Collector/Content/themes/hd/textures/icons/Apple.png
new file mode 100644
index 0000000..9069cc5
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/Apple.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/Armor.png b/Collector/Content/themes/hd/textures/icons/Armor.png
new file mode 100644
index 0000000..e8cff60
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/Armor.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/Axe.png b/Collector/Content/themes/hd/textures/icons/Axe.png
new file mode 100644
index 0000000..05748e2
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/Axe.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/BloodySword.png b/Collector/Content/themes/hd/textures/icons/BloodySword.png
new file mode 100644
index 0000000..abf9eed
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/BloodySword.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/Bone.png b/Collector/Content/themes/hd/textures/icons/Bone.png
new file mode 100644
index 0000000..869d817
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/Bone.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/Book.png b/Collector/Content/themes/hd/textures/icons/Book.png
new file mode 100644
index 0000000..3da1b01
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/Book.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/Cubes.png b/Collector/Content/themes/hd/textures/icons/Cubes.png
new file mode 100644
index 0000000..1e10123
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/Cubes.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/Diamond.png b/Collector/Content/themes/hd/textures/icons/Diamond.png
new file mode 100644
index 0000000..20d46ab
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/Diamond.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/Explanation.png b/Collector/Content/themes/hd/textures/icons/Explanation.png
new file mode 100644
index 0000000..0927841
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/Explanation.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/Feather.png b/Collector/Content/themes/hd/textures/icons/Feather.png
new file mode 100644
index 0000000..1ec35ae
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/Feather.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/FloppyDisk.png b/Collector/Content/themes/hd/textures/icons/FloppyDisk.png
new file mode 100644
index 0000000..60f8520
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/FloppyDisk.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/GoldCoins.png b/Collector/Content/themes/hd/textures/icons/GoldCoins.png
new file mode 100644
index 0000000..596e556
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/GoldCoins.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/GoldShard.png b/Collector/Content/themes/hd/textures/icons/GoldShard.png
new file mode 100644
index 0000000..9d77a5c
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/GoldShard.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/Heart.png b/Collector/Content/themes/hd/textures/icons/Heart.png
new file mode 100644
index 0000000..fa0bb39
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/Heart.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/Helmet.png b/Collector/Content/themes/hd/textures/icons/Helmet.png
new file mode 100644
index 0000000..965cb60
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/Helmet.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/Key.png b/Collector/Content/themes/hd/textures/icons/Key.png
new file mode 100644
index 0000000..887a299
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/Key.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/MagicBook.png b/Collector/Content/themes/hd/textures/icons/MagicBook.png
new file mode 100644
index 0000000..48ca3d4
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/MagicBook.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/MagicWand.png b/Collector/Content/themes/hd/textures/icons/MagicWand.png
new file mode 100644
index 0000000..dbc92f4
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/MagicWand.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/Map.png b/Collector/Content/themes/hd/textures/icons/Map.png
new file mode 100644
index 0000000..b79bf46
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/Map.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/None.png b/Collector/Content/themes/hd/textures/icons/None.png
new file mode 100644
index 0000000..82fa43a
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/None.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/OrbBlue.png b/Collector/Content/themes/hd/textures/icons/OrbBlue.png
new file mode 100644
index 0000000..6262527
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/OrbBlue.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/OrbGreen.png b/Collector/Content/themes/hd/textures/icons/OrbGreen.png
new file mode 100644
index 0000000..0cd0fc2
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/OrbGreen.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/OrbRed.png b/Collector/Content/themes/hd/textures/icons/OrbRed.png
new file mode 100644
index 0000000..0efaaea
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/OrbRed.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/Pistol.png b/Collector/Content/themes/hd/textures/icons/Pistol.png
new file mode 100644
index 0000000..117de9b
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/Pistol.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/PotionBlue.png b/Collector/Content/themes/hd/textures/icons/PotionBlue.png
new file mode 100644
index 0000000..ed177e9
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/PotionBlue.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/PotionCyan.png b/Collector/Content/themes/hd/textures/icons/PotionCyan.png
new file mode 100644
index 0000000..1e7597a
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/PotionCyan.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/PotionGreen.png b/Collector/Content/themes/hd/textures/icons/PotionGreen.png
new file mode 100644
index 0000000..d4233d0
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/PotionGreen.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/PotionPurple.png b/Collector/Content/themes/hd/textures/icons/PotionPurple.png
new file mode 100644
index 0000000..fa36c2b
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/PotionPurple.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/PotionRed.png b/Collector/Content/themes/hd/textures/icons/PotionRed.png
new file mode 100644
index 0000000..776d63e
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/PotionRed.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/PotionYellow.png b/Collector/Content/themes/hd/textures/icons/PotionYellow.png
new file mode 100644
index 0000000..da55f89
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/PotionYellow.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/Ring.png b/Collector/Content/themes/hd/textures/icons/Ring.png
new file mode 100644
index 0000000..abe924c
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/Ring.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/RingGold.png b/Collector/Content/themes/hd/textures/icons/RingGold.png
new file mode 100644
index 0000000..1e64111
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/RingGold.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/RingGoldRuby.png b/Collector/Content/themes/hd/textures/icons/RingGoldRuby.png
new file mode 100644
index 0000000..e303fd1
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/RingGoldRuby.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/RingRuby.png b/Collector/Content/themes/hd/textures/icons/RingRuby.png
new file mode 100644
index 0000000..03cd193
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/RingRuby.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/RubyBlue.png b/Collector/Content/themes/hd/textures/icons/RubyBlue.png
new file mode 100644
index 0000000..69646a3
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/RubyBlue.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/RubyGreen.png b/Collector/Content/themes/hd/textures/icons/RubyGreen.png
new file mode 100644
index 0000000..b14be2e
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/RubyGreen.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/RubyPink.png b/Collector/Content/themes/hd/textures/icons/RubyPink.png
new file mode 100644
index 0000000..2d6abc5
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/RubyPink.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/RubyPurple.png b/Collector/Content/themes/hd/textures/icons/RubyPurple.png
new file mode 100644
index 0000000..066b638
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/RubyPurple.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/RubyRed.png b/Collector/Content/themes/hd/textures/icons/RubyRed.png
new file mode 100644
index 0000000..c3336c6
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/RubyRed.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/Sack.png b/Collector/Content/themes/hd/textures/icons/Sack.png
new file mode 100644
index 0000000..6dbe355
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/Sack.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/Scroll.png b/Collector/Content/themes/hd/textures/icons/Scroll.png
new file mode 100644
index 0000000..1047714
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/Scroll.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/Shield.png b/Collector/Content/themes/hd/textures/icons/Shield.png
new file mode 100644
index 0000000..5cd2772
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/Shield.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/ShieldAndSword.png b/Collector/Content/themes/hd/textures/icons/ShieldAndSword.png
new file mode 100644
index 0000000..181b7a1
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/ShieldAndSword.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/Shovel.png b/Collector/Content/themes/hd/textures/icons/Shovel.png
new file mode 100644
index 0000000..2443a72
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/Shovel.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/SilverShard.png b/Collector/Content/themes/hd/textures/icons/SilverShard.png
new file mode 100644
index 0000000..3e534e3
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/SilverShard.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/Skull.png b/Collector/Content/themes/hd/textures/icons/Skull.png
new file mode 100644
index 0000000..2d83478
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/Skull.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/Sword.png b/Collector/Content/themes/hd/textures/icons/Sword.png
new file mode 100644
index 0000000..140c9c1
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/Sword.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/Trap.png b/Collector/Content/themes/hd/textures/icons/Trap.png
new file mode 100644
index 0000000..2033a1c
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/Trap.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/ZoomIn.png b/Collector/Content/themes/hd/textures/icons/ZoomIn.png
new file mode 100644
index 0000000..817178b
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/ZoomIn.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/ZoomOut.png b/Collector/Content/themes/hd/textures/icons/ZoomOut.png
new file mode 100644
index 0000000..c6faffb
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/ZoomOut.png differ
diff --git a/Collector/Content/themes/hd/textures/icons/background.png b/Collector/Content/themes/hd/textures/icons/background.png
new file mode 100644
index 0000000..82b18be
Binary files /dev/null and b/Collector/Content/themes/hd/textures/icons/background.png differ
diff --git a/Collector/Content/themes/hd/textures/panel_default.png b/Collector/Content/themes/hd/textures/panel_default.png
new file mode 100644
index 0000000..8bc26d9
Binary files /dev/null and b/Collector/Content/themes/hd/textures/panel_default.png differ
diff --git a/Collector/Content/themes/hd/textures/panel_default_md.xml b/Collector/Content/themes/hd/textures/panel_default_md.xml
new file mode 100644
index 0000000..7fa94b7
--- /dev/null
+++ b/Collector/Content/themes/hd/textures/panel_default_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.2
+ 0.2
+
+
+
diff --git a/Collector/Content/themes/hd/textures/panel_fancy.png b/Collector/Content/themes/hd/textures/panel_fancy.png
new file mode 100644
index 0000000..d9eedd6
Binary files /dev/null and b/Collector/Content/themes/hd/textures/panel_fancy.png differ
diff --git a/Collector/Content/themes/hd/textures/panel_fancy_md.xml b/Collector/Content/themes/hd/textures/panel_fancy_md.xml
new file mode 100644
index 0000000..2b3fc1f
--- /dev/null
+++ b/Collector/Content/themes/hd/textures/panel_fancy_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.2
+ 0.2
+
+
+
diff --git a/Collector/Content/themes/hd/textures/panel_golden.png b/Collector/Content/themes/hd/textures/panel_golden.png
new file mode 100644
index 0000000..3057704
Binary files /dev/null and b/Collector/Content/themes/hd/textures/panel_golden.png differ
diff --git a/Collector/Content/themes/hd/textures/panel_golden_md.xml b/Collector/Content/themes/hd/textures/panel_golden_md.xml
new file mode 100644
index 0000000..2b3fc1f
--- /dev/null
+++ b/Collector/Content/themes/hd/textures/panel_golden_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.2
+ 0.2
+
+
+
diff --git a/Collector/Content/themes/hd/textures/panel_listbackground.png b/Collector/Content/themes/hd/textures/panel_listbackground.png
new file mode 100644
index 0000000..02ac7de
Binary files /dev/null and b/Collector/Content/themes/hd/textures/panel_listbackground.png differ
diff --git a/Collector/Content/themes/hd/textures/panel_listbackground_md.xml b/Collector/Content/themes/hd/textures/panel_listbackground_md.xml
new file mode 100644
index 0000000..2b3fc1f
--- /dev/null
+++ b/Collector/Content/themes/hd/textures/panel_listbackground_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.2
+ 0.2
+
+
+
diff --git a/Collector/Content/themes/hd/textures/panel_simple.png b/Collector/Content/themes/hd/textures/panel_simple.png
new file mode 100644
index 0000000..1430cc7
Binary files /dev/null and b/Collector/Content/themes/hd/textures/panel_simple.png differ
diff --git a/Collector/Content/themes/hd/textures/panel_simple_md.xml b/Collector/Content/themes/hd/textures/panel_simple_md.xml
new file mode 100644
index 0000000..2b3fc1f
--- /dev/null
+++ b/Collector/Content/themes/hd/textures/panel_simple_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.2
+ 0.2
+
+
+
diff --git a/Collector/Content/themes/hd/textures/progressbar.png b/Collector/Content/themes/hd/textures/progressbar.png
new file mode 100644
index 0000000..5750692
Binary files /dev/null and b/Collector/Content/themes/hd/textures/progressbar.png differ
diff --git a/Collector/Content/themes/hd/textures/progressbar_fill.png b/Collector/Content/themes/hd/textures/progressbar_fill.png
new file mode 100644
index 0000000..79b0d81
Binary files /dev/null and b/Collector/Content/themes/hd/textures/progressbar_fill.png differ
diff --git a/Collector/Content/themes/hd/textures/progressbar_md.xml b/Collector/Content/themes/hd/textures/progressbar_md.xml
new file mode 100644
index 0000000..cea6983
--- /dev/null
+++ b/Collector/Content/themes/hd/textures/progressbar_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.1375
+ 0.0
+
+
+
diff --git a/Collector/Content/themes/hd/textures/radio.png b/Collector/Content/themes/hd/textures/radio.png
new file mode 100644
index 0000000..5fe5420
Binary files /dev/null and b/Collector/Content/themes/hd/textures/radio.png differ
diff --git a/Collector/Content/themes/hd/textures/radio_down.png b/Collector/Content/themes/hd/textures/radio_down.png
new file mode 100644
index 0000000..85b9a83
Binary files /dev/null and b/Collector/Content/themes/hd/textures/radio_down.png differ
diff --git a/Collector/Content/themes/hd/textures/radio_hover.png b/Collector/Content/themes/hd/textures/radio_hover.png
new file mode 100644
index 0000000..2e0f36f
Binary files /dev/null and b/Collector/Content/themes/hd/textures/radio_hover.png differ
diff --git a/Collector/Content/themes/hd/textures/scrollbar.png b/Collector/Content/themes/hd/textures/scrollbar.png
new file mode 100644
index 0000000..3a98a60
Binary files /dev/null and b/Collector/Content/themes/hd/textures/scrollbar.png differ
diff --git a/Collector/Content/themes/hd/textures/scrollbar_mark.png b/Collector/Content/themes/hd/textures/scrollbar_mark.png
new file mode 100644
index 0000000..fef0a10
Binary files /dev/null and b/Collector/Content/themes/hd/textures/scrollbar_mark.png differ
diff --git a/Collector/Content/themes/hd/textures/scrollbar_md.xml b/Collector/Content/themes/hd/textures/scrollbar_md.xml
new file mode 100644
index 0000000..44688b9
--- /dev/null
+++ b/Collector/Content/themes/hd/textures/scrollbar_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.0
+ 0.3
+
+
+
diff --git a/Collector/Content/themes/hd/textures/slider_default.png b/Collector/Content/themes/hd/textures/slider_default.png
new file mode 100644
index 0000000..84846e3
Binary files /dev/null and b/Collector/Content/themes/hd/textures/slider_default.png differ
diff --git a/Collector/Content/themes/hd/textures/slider_default_mark.png b/Collector/Content/themes/hd/textures/slider_default_mark.png
new file mode 100644
index 0000000..23c0e81
Binary files /dev/null and b/Collector/Content/themes/hd/textures/slider_default_mark.png differ
diff --git a/Collector/Content/themes/hd/textures/slider_default_md.xml b/Collector/Content/themes/hd/textures/slider_default_md.xml
new file mode 100644
index 0000000..d27d99d
--- /dev/null
+++ b/Collector/Content/themes/hd/textures/slider_default_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.03
+ 0.0
+
+
+
diff --git a/Collector/Content/themes/hd/textures/slider_fancy.png b/Collector/Content/themes/hd/textures/slider_fancy.png
new file mode 100644
index 0000000..11a06e5
Binary files /dev/null and b/Collector/Content/themes/hd/textures/slider_fancy.png differ
diff --git a/Collector/Content/themes/hd/textures/slider_fancy_mark.png b/Collector/Content/themes/hd/textures/slider_fancy_mark.png
new file mode 100644
index 0000000..9be39ae
Binary files /dev/null and b/Collector/Content/themes/hd/textures/slider_fancy_mark.png differ
diff --git a/Collector/Content/themes/hd/textures/slider_fancy_md.xml b/Collector/Content/themes/hd/textures/slider_fancy_md.xml
new file mode 100644
index 0000000..cd4cc37
--- /dev/null
+++ b/Collector/Content/themes/hd/textures/slider_fancy_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.28
+ 0.0
+
+
+
diff --git a/Collector/Content/themes/hd/textures/white_texture.png b/Collector/Content/themes/hd/textures/white_texture.png
new file mode 100644
index 0000000..a782975
Binary files /dev/null and b/Collector/Content/themes/hd/textures/white_texture.png differ
diff --git a/Collector/Content/themes/lowres/ThemeData.xml b/Collector/Content/themes/lowres/ThemeData.xml
new file mode 100644
index 0000000..111310d
--- /dev/null
+++ b/Collector/Content/themes/lowres/ThemeData.xml
@@ -0,0 +1,22 @@
+
+
+
+ LowRes
+ Ronen Ness
+ A lower-res, old-school style UI theme GeonBit.UI comes with by default.
+ This theme is mostly based on Michele Bucelli ("Buch") works.
+Sources can be found here:
+
+- http://opengameart.org/content/golden-ui
+- http://opengameart.org/content/roguelikerpg-icons
+- http://opengameart.org/content/roguelikerpg-items
+- http://opengameart.org/content/arabian-icons
+- http://opengameart.org/content/2d-static-spritesicons
+- http://opengameart.org/content/30-ability-icons
+- http://opengameart.org/content/whispers-of-avalon-item-icons
+
+ 1.0.0
+
+ MIT
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/effects/disabled.fx b/Collector/Content/themes/lowres/effects/disabled.fx
new file mode 100644
index 0000000..6774d71
--- /dev/null
+++ b/Collector/Content/themes/lowres/effects/disabled.fx
@@ -0,0 +1,38 @@
+#if OPENGL
+ #define SV_POSITION POSITION
+ #define VS_SHADERMODEL vs_3_0
+ #define PS_SHADERMODEL ps_3_0
+#else
+ #define VS_SHADERMODEL vs_4_0_level_9_1
+ #define PS_SHADERMODEL ps_4_0_level_9_1
+#endif
+
+Texture2D SpriteTexture;
+
+sampler2D SpriteTextureSampler = sampler_state
+{
+ Texture = ;
+};
+
+struct VertexShaderOutput
+{
+ float4 Position : SV_POSITION;
+ float4 Color : COLOR0;
+ float2 TextureCoordinates : TEXCOORD0;
+};
+
+float4 MainPS(VertexShaderOutput input) : COLOR
+{
+ float4 color = tex2D(SpriteTextureSampler,input.TextureCoordinates) * input.Color;
+ float value = (color.r + color.g + color.b) / 3;
+ color.r = color.g = color.b = value;
+ return color;
+}
+
+technique SpriteDrawing
+{
+ pass P0
+ {
+ PixelShader = compile PS_SHADERMODEL MainPS();
+ }
+};
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/effects/silhouette.fx b/Collector/Content/themes/lowres/effects/silhouette.fx
new file mode 100644
index 0000000..0bd81f3
--- /dev/null
+++ b/Collector/Content/themes/lowres/effects/silhouette.fx
@@ -0,0 +1,39 @@
+#if OPENGL
+ #define SV_POSITION POSITION
+ #define VS_SHADERMODEL vs_3_0
+ #define PS_SHADERMODEL ps_3_0
+#else
+ #define VS_SHADERMODEL vs_4_0_level_9_1
+ #define PS_SHADERMODEL ps_4_0_level_9_1
+#endif
+
+Texture2D SpriteTexture;
+
+sampler2D SpriteTextureSampler = sampler_state
+{
+ Texture = ;
+};
+
+struct VertexShaderOutput
+{
+ float4 Position : SV_POSITION;
+ float4 Color : COLOR0;
+ float2 TextureCoordinates : TEXCOORD0;
+};
+
+float4 MainPS(VertexShaderOutput input) : COLOR
+{
+ float4 color = tex2D(SpriteTextureSampler,input.TextureCoordinates) * input.Color;
+ color.r = 1 * color.a * input.Color.r;
+ color.g = 1 * color.a * input.Color.g;
+ color.b = 1 * color.a * input.Color.b;
+ return color;
+}
+
+technique SpriteDrawing
+{
+ pass P0
+ {
+ PixelShader = compile PS_SHADERMODEL MainPS();
+ }
+};
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/fonts/Bold.spritefont b/Collector/Content/themes/lowres/fonts/Bold.spritefont
new file mode 100644
index 0000000..8a3e9d0
--- /dev/null
+++ b/Collector/Content/themes/lowres/fonts/Bold.spritefont
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+ AnonymousPro-Bold
+
+
+ 18
+
+
+ 0
+
+
+ true
+
+
+
+
+
+
+
+
+
+
+
+ ~
+
+
+
+
diff --git a/Collector/Content/themes/lowres/fonts/Italic.spritefont b/Collector/Content/themes/lowres/fonts/Italic.spritefont
new file mode 100644
index 0000000..9f83be2
--- /dev/null
+++ b/Collector/Content/themes/lowres/fonts/Italic.spritefont
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+ AnonymousPro-Italic
+
+
+ 18
+
+
+ 0
+
+
+ true
+
+
+
+
+
+
+
+
+
+
+
+ ~
+
+
+
+
diff --git a/Collector/Content/themes/lowres/fonts/Regular.spritefont b/Collector/Content/themes/lowres/fonts/Regular.spritefont
new file mode 100644
index 0000000..280145e
--- /dev/null
+++ b/Collector/Content/themes/lowres/fonts/Regular.spritefont
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+ AnonymousPro-Regular
+
+
+ 18
+
+
+ 0
+
+
+ true
+
+
+
+
+
+
+
+
+
+
+
+ ~
+
+
+
+
diff --git a/Collector/Content/themes/lowres/styles/Button-Default.xml b/Collector/Content/themes/lowres/styles/Button-Default.xml
new file mode 100644
index 0000000..6f7c1eb
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Button-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 3
+
+
+
+
+
+
+
+
+
+
+
+
+ 0 70
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/Button-MouseDown.xml b/Collector/Content/themes/lowres/styles/Button-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Button-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/Button-MouseHover.xml b/Collector/Content/themes/lowres/styles/Button-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Button-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/ButtonParagraph-Default.xml b/Collector/Content/themes/lowres/styles/ButtonParagraph-Default.xml
new file mode 100644
index 0000000..d9c6cbc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/ButtonParagraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/ButtonParagraph-MouseDown.xml b/Collector/Content/themes/lowres/styles/ButtonParagraph-MouseDown.xml
new file mode 100644
index 0000000..8ef401a
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/ButtonParagraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ FFAAAAAA
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/ButtonParagraph-MouseHover.xml b/Collector/Content/themes/lowres/styles/ButtonParagraph-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/ButtonParagraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/CheckBox-Default.xml b/Collector/Content/themes/lowres/styles/CheckBox-Default.xml
new file mode 100644
index 0000000..cedb146
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/CheckBox-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0 40
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/CheckBox-MouseDown.xml b/Collector/Content/themes/lowres/styles/CheckBox-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/CheckBox-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/CheckBox-MouseHover.xml b/Collector/Content/themes/lowres/styles/CheckBox-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/CheckBox-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/CheckBoxParagraph-Default.xml b/Collector/Content/themes/lowres/styles/CheckBoxParagraph-Default.xml
new file mode 100644
index 0000000..d9c6cbc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/CheckBoxParagraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/CheckBoxParagraph-MouseDown.xml b/Collector/Content/themes/lowres/styles/CheckBoxParagraph-MouseDown.xml
new file mode 100644
index 0000000..c50f02f
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/CheckBoxParagraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ FFFFFF00
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/CheckBoxParagraph-MouseHover.xml b/Collector/Content/themes/lowres/styles/CheckBoxParagraph-MouseHover.xml
new file mode 100644
index 0000000..c50f02f
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/CheckBoxParagraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ FFFFFF00
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/ColoredRectangle-Default.xml b/Collector/Content/themes/lowres/styles/ColoredRectangle-Default.xml
new file mode 100644
index 0000000..e0beb18
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/ColoredRectangle-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ FFFFFFFF
+ FF000000
+ 2
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/ColoredRectangle-MouseDown.xml b/Collector/Content/themes/lowres/styles/ColoredRectangle-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/ColoredRectangle-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/ColoredRectangle-MouseHover.xml b/Collector/Content/themes/lowres/styles/ColoredRectangle-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/ColoredRectangle-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/DropDown-Default.xml b/Collector/Content/themes/lowres/styles/DropDown-Default.xml
new file mode 100644
index 0000000..1399eb9
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/DropDown-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0 220
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/DropDown-MouseDown.xml b/Collector/Content/themes/lowres/styles/DropDown-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/DropDown-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/DropDown-MouseHover.xml b/Collector/Content/themes/lowres/styles/DropDown-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/DropDown-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/DropDownParagraph-Default.xml b/Collector/Content/themes/lowres/styles/DropDownParagraph-Default.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/DropDownParagraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/DropDownParagraph-MouseDown.xml b/Collector/Content/themes/lowres/styles/DropDownParagraph-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/DropDownParagraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/DropDownParagraph-MouseHover.xml b/Collector/Content/themes/lowres/styles/DropDownParagraph-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/DropDownParagraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/DropDownSelectedParagraph-Default.xml b/Collector/Content/themes/lowres/styles/DropDownSelectedParagraph-Default.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/DropDownSelectedParagraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/DropDownSelectedParagraph-MouseDown.xml b/Collector/Content/themes/lowres/styles/DropDownSelectedParagraph-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/DropDownSelectedParagraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/DropDownSelectedParagraph-MouseHover.xml b/Collector/Content/themes/lowres/styles/DropDownSelectedParagraph-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/DropDownSelectedParagraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/Entity-Default.xml b/Collector/Content/themes/lowres/styles/Entity-Default.xml
new file mode 100644
index 0000000..e05e24c
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Entity-Default.xml
@@ -0,0 +1,19 @@
+
+
+
+ 1
+ FFFFFFFF
+ 00000000
+ 0
+ false
+ Regular
+ 00000000
+ 00000000
+ 0 0
+ 26 26
+ 0 0
+ 0 8
+ 1
+ 0 0
+
+
diff --git a/Collector/Content/themes/lowres/styles/Entity-MouseDown.xml b/Collector/Content/themes/lowres/styles/Entity-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Entity-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/Entity-MouseHover.xml b/Collector/Content/themes/lowres/styles/Entity-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Entity-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/Header-Default.xml b/Collector/Content/themes/lowres/styles/Header-Default.xml
new file mode 100644
index 0000000..3ba2c61
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Header-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1.2
+ FFFFFF00
+
+
+ true
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/Header-MouseDown.xml b/Collector/Content/themes/lowres/styles/Header-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Header-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/Header-MouseHover.xml b/Collector/Content/themes/lowres/styles/Header-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Header-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/HorizontalLine-Default.xml b/Collector/Content/themes/lowres/styles/HorizontalLine-Default.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/HorizontalLine-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/HorizontalLine-MouseDown.xml b/Collector/Content/themes/lowres/styles/HorizontalLine-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/HorizontalLine-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/HorizontalLine-MouseHover.xml b/Collector/Content/themes/lowres/styles/HorizontalLine-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/HorizontalLine-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/Icon-Default.xml b/Collector/Content/themes/lowres/styles/Icon-Default.xml
new file mode 100644
index 0000000..74c72ff
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Icon-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+ 50 50
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/Icon-MouseDown.xml b/Collector/Content/themes/lowres/styles/Icon-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Icon-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/Icon-MouseHover.xml b/Collector/Content/themes/lowres/styles/Icon-MouseHover.xml
new file mode 100644
index 0000000..8ff04a1
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Icon-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1.1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/Image-Default.xml b/Collector/Content/themes/lowres/styles/Image-Default.xml
new file mode 100644
index 0000000..1beedd1
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Image-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+ FFFFFFFF
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/Image-MouseDown.xml b/Collector/Content/themes/lowres/styles/Image-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Image-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/Image-MouseHover.xml b/Collector/Content/themes/lowres/styles/Image-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Image-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/Label-Default.xml b/Collector/Content/themes/lowres/styles/Label-Default.xml
new file mode 100644
index 0000000..db3ad89
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Label-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 0.8
+ FFCCCCCC
+ FF000000
+ 2
+ false
+ Regular
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Collector/Content/themes/lowres/styles/Label-MouseDown.xml b/Collector/Content/themes/lowres/styles/Label-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Label-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/Label-MouseHover.xml b/Collector/Content/themes/lowres/styles/Label-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Label-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/Panel-Default.xml b/Collector/Content/themes/lowres/styles/Panel-Default.xml
new file mode 100644
index 0000000..a9b485d
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Panel-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 3
+ FFFFFFFF
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/Panel-MouseDown.xml b/Collector/Content/themes/lowres/styles/Panel-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Panel-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/Panel-MouseHover.xml b/Collector/Content/themes/lowres/styles/Panel-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Panel-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/PanelTabsButton-Default.xml b/Collector/Content/themes/lowres/styles/PanelTabsButton-Default.xml
new file mode 100644
index 0000000..6ef020c
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/PanelTabsButton-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 2
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/PanelTabsButton-MouseDown.xml b/Collector/Content/themes/lowres/styles/PanelTabsButton-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/PanelTabsButton-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/PanelTabsButton-MouseHover.xml b/Collector/Content/themes/lowres/styles/PanelTabsButton-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/PanelTabsButton-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/PanelTabsButtonParagraph-Default.xml b/Collector/Content/themes/lowres/styles/PanelTabsButtonParagraph-Default.xml
new file mode 100644
index 0000000..d9c6cbc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/PanelTabsButtonParagraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/PanelTabsButtonParagraph-MouseDown.xml b/Collector/Content/themes/lowres/styles/PanelTabsButtonParagraph-MouseDown.xml
new file mode 100644
index 0000000..8ef401a
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/PanelTabsButtonParagraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ FFAAAAAA
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/PanelTabsButtonParagraph-MouseHover.xml b/Collector/Content/themes/lowres/styles/PanelTabsButtonParagraph-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/PanelTabsButtonParagraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/Paragraph-Default.xml b/Collector/Content/themes/lowres/styles/Paragraph-Default.xml
new file mode 100644
index 0000000..7c53712
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Paragraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+ FFFFFFFF
+ FF000000
+ 2
+ false
+ Regular
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Collector/Content/themes/lowres/styles/Paragraph-MouseDown.xml b/Collector/Content/themes/lowres/styles/Paragraph-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Paragraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/Paragraph-MouseHover.xml b/Collector/Content/themes/lowres/styles/Paragraph-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Paragraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/ProgressBar-Default.xml b/Collector/Content/themes/lowres/styles/ProgressBar-Default.xml
new file mode 100644
index 0000000..14ec90b
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/ProgressBar-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0 52
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/ProgressBar-MouseDown.xml b/Collector/Content/themes/lowres/styles/ProgressBar-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/ProgressBar-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/ProgressBar-MouseHover.xml b/Collector/Content/themes/lowres/styles/ProgressBar-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/ProgressBar-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/ProgressBarFill-Default.xml b/Collector/Content/themes/lowres/styles/ProgressBarFill-Default.xml
new file mode 100644
index 0000000..115fb41
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/ProgressBarFill-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ FF84CC40
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/ProgressBarFill-MouseDown.xml b/Collector/Content/themes/lowres/styles/ProgressBarFill-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/ProgressBarFill-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/ProgressBarFill-MouseHover.xml b/Collector/Content/themes/lowres/styles/ProgressBarFill-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/ProgressBarFill-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/RadioButton-Default.xml b/Collector/Content/themes/lowres/styles/RadioButton-Default.xml
new file mode 100644
index 0000000..eb36dcc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/RadioButton-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0 50
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/RadioButton-MouseDown.xml b/Collector/Content/themes/lowres/styles/RadioButton-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/RadioButton-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/RadioButton-MouseHover.xml b/Collector/Content/themes/lowres/styles/RadioButton-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/RadioButton-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/RadioButtonParagraph-Default.xml b/Collector/Content/themes/lowres/styles/RadioButtonParagraph-Default.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/RadioButtonParagraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/RadioButtonParagraph-MouseDown.xml b/Collector/Content/themes/lowres/styles/RadioButtonParagraph-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/RadioButtonParagraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/RadioButtonParagraph-MouseHover.xml b/Collector/Content/themes/lowres/styles/RadioButtonParagraph-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/RadioButtonParagraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/SelectList-Default.xml b/Collector/Content/themes/lowres/styles/SelectList-Default.xml
new file mode 100644
index 0000000..f0a2f8e
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/SelectList-Default.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+ 64000000
+
+
+ 30 22
+
+
+
+ 0 220
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/SelectList-MouseDown.xml b/Collector/Content/themes/lowres/styles/SelectList-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/SelectList-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/SelectList-MouseHover.xml b/Collector/Content/themes/lowres/styles/SelectList-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/SelectList-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/SelectListParagraph-Default.xml b/Collector/Content/themes/lowres/styles/SelectListParagraph-Default.xml
new file mode 100644
index 0000000..7c53712
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/SelectListParagraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+ FFFFFFFF
+ FF000000
+ 2
+ false
+ Regular
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Collector/Content/themes/lowres/styles/SelectListParagraph-MouseDown.xml b/Collector/Content/themes/lowres/styles/SelectListParagraph-MouseDown.xml
new file mode 100644
index 0000000..c50f02f
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/SelectListParagraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ FFFFFF00
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/SelectListParagraph-MouseHover.xml b/Collector/Content/themes/lowres/styles/SelectListParagraph-MouseHover.xml
new file mode 100644
index 0000000..c50f02f
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/SelectListParagraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+ FFFFFF00
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/Slider-Default.xml b/Collector/Content/themes/lowres/styles/Slider-Default.xml
new file mode 100644
index 0000000..bb0c9ac
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Slider-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0 30
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/Slider-MouseDown.xml b/Collector/Content/themes/lowres/styles/Slider-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Slider-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/Slider-MouseHover.xml b/Collector/Content/themes/lowres/styles/Slider-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/Slider-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/TextInput-Default.xml b/Collector/Content/themes/lowres/styles/TextInput-Default.xml
new file mode 100644
index 0000000..cbae23d
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/TextInput-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0 65
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/TextInput-MouseDown.xml b/Collector/Content/themes/lowres/styles/TextInput-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/TextInput-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/TextInput-MouseHover.xml b/Collector/Content/themes/lowres/styles/TextInput-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/TextInput-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/TextInputParagraph-Default.xml b/Collector/Content/themes/lowres/styles/TextInputParagraph-Default.xml
new file mode 100644
index 0000000..d9c6cbc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/TextInputParagraph-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/TextInputParagraph-MouseDown.xml b/Collector/Content/themes/lowres/styles/TextInputParagraph-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/TextInputParagraph-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/TextInputParagraph-MouseHover.xml b/Collector/Content/themes/lowres/styles/TextInputParagraph-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/TextInputParagraph-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/TextInputPlaceholder-Default.xml b/Collector/Content/themes/lowres/styles/TextInputPlaceholder-Default.xml
new file mode 100644
index 0000000..c675854
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/TextInputPlaceholder-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+ 1
+ FF969696
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/TextInputPlaceholder-MouseDown.xml b/Collector/Content/themes/lowres/styles/TextInputPlaceholder-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/TextInputPlaceholder-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/TextInputPlaceholder-MouseHover.xml b/Collector/Content/themes/lowres/styles/TextInputPlaceholder-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/TextInputPlaceholder-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/VerticalScrollbar-Default.xml b/Collector/Content/themes/lowres/styles/VerticalScrollbar-Default.xml
new file mode 100644
index 0000000..b06b406
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/VerticalScrollbar-Default.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 30 0
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/VerticalScrollbar-MouseDown.xml b/Collector/Content/themes/lowres/styles/VerticalScrollbar-MouseDown.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/VerticalScrollbar-MouseDown.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/VerticalScrollbar-MouseHover.xml b/Collector/Content/themes/lowres/styles/VerticalScrollbar-MouseHover.xml
new file mode 100644
index 0000000..b9c80cc
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/VerticalScrollbar-MouseHover.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/styles/example.xml b/Collector/Content/themes/lowres/styles/example.xml
new file mode 100644
index 0000000..eda93f2
--- /dev/null
+++ b/Collector/Content/themes/lowres/styles/example.xml
@@ -0,0 +1,47 @@
+
+
+
+
+
+ 1
+
+ FFFFFFFF
+
+ FF000000
+
+ 2
+
+ false
+
+ Regular
+
+ 00000000
+
+ 00000000
+
+ 0 0
+
+ 10 10
+
+ 0 0
+
+ 0 0
+
+ 1
+
+ 50 50
+
+
\ No newline at end of file
diff --git a/Collector/Content/themes/lowres/textures/arrow_down.png b/Collector/Content/themes/lowres/textures/arrow_down.png
new file mode 100644
index 0000000..18eb1d2
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/arrow_down.png differ
diff --git a/Collector/Content/themes/lowres/textures/arrow_up.png b/Collector/Content/themes/lowres/textures/arrow_up.png
new file mode 100644
index 0000000..65a3b01
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/arrow_up.png differ
diff --git a/Collector/Content/themes/lowres/textures/button_alternative.png b/Collector/Content/themes/lowres/textures/button_alternative.png
new file mode 100644
index 0000000..ac3852f
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/button_alternative.png differ
diff --git a/Collector/Content/themes/lowres/textures/button_alternative_down.png b/Collector/Content/themes/lowres/textures/button_alternative_down.png
new file mode 100644
index 0000000..ffb38dc
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/button_alternative_down.png differ
diff --git a/Collector/Content/themes/lowres/textures/button_alternative_hover.png b/Collector/Content/themes/lowres/textures/button_alternative_hover.png
new file mode 100644
index 0000000..b6b1599
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/button_alternative_hover.png differ
diff --git a/Collector/Content/themes/lowres/textures/button_alternative_md.xml b/Collector/Content/themes/lowres/textures/button_alternative_md.xml
new file mode 100644
index 0000000..50107f4
--- /dev/null
+++ b/Collector/Content/themes/lowres/textures/button_alternative_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.2
+ 0.35
+
+
+
diff --git a/Collector/Content/themes/lowres/textures/button_default.png b/Collector/Content/themes/lowres/textures/button_default.png
new file mode 100644
index 0000000..6be27e2
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/button_default.png differ
diff --git a/Collector/Content/themes/lowres/textures/button_default_down.png b/Collector/Content/themes/lowres/textures/button_default_down.png
new file mode 100644
index 0000000..e19d19c
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/button_default_down.png differ
diff --git a/Collector/Content/themes/lowres/textures/button_default_hover.png b/Collector/Content/themes/lowres/textures/button_default_hover.png
new file mode 100644
index 0000000..8e74bb9
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/button_default_hover.png differ
diff --git a/Collector/Content/themes/lowres/textures/button_default_md.xml b/Collector/Content/themes/lowres/textures/button_default_md.xml
new file mode 100644
index 0000000..50107f4
--- /dev/null
+++ b/Collector/Content/themes/lowres/textures/button_default_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.2
+ 0.35
+
+
+
diff --git a/Collector/Content/themes/lowres/textures/button_fancy.png b/Collector/Content/themes/lowres/textures/button_fancy.png
new file mode 100644
index 0000000..43efaaa
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/button_fancy.png differ
diff --git a/Collector/Content/themes/lowres/textures/button_fancy_down.png b/Collector/Content/themes/lowres/textures/button_fancy_down.png
new file mode 100644
index 0000000..4dd6a77
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/button_fancy_down.png differ
diff --git a/Collector/Content/themes/lowres/textures/button_fancy_hover.png b/Collector/Content/themes/lowres/textures/button_fancy_hover.png
new file mode 100644
index 0000000..190e682
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/button_fancy_hover.png differ
diff --git a/Collector/Content/themes/lowres/textures/button_fancy_md.xml b/Collector/Content/themes/lowres/textures/button_fancy_md.xml
new file mode 100644
index 0000000..46b65bc
--- /dev/null
+++ b/Collector/Content/themes/lowres/textures/button_fancy_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.35
+ 0.0
+
+
+
diff --git a/Collector/Content/themes/lowres/textures/checkbox.png b/Collector/Content/themes/lowres/textures/checkbox.png
new file mode 100644
index 0000000..b336b92
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/checkbox.png differ
diff --git a/Collector/Content/themes/lowres/textures/checkbox_down.png b/Collector/Content/themes/lowres/textures/checkbox_down.png
new file mode 100644
index 0000000..8a6d45c
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/checkbox_down.png differ
diff --git a/Collector/Content/themes/lowres/textures/checkbox_hover.png b/Collector/Content/themes/lowres/textures/checkbox_hover.png
new file mode 100644
index 0000000..999937a
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/checkbox_hover.png differ
diff --git a/Collector/Content/themes/lowres/textures/cursor_default.png b/Collector/Content/themes/lowres/textures/cursor_default.png
new file mode 100644
index 0000000..0967c0d
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/cursor_default.png differ
diff --git a/Collector/Content/themes/lowres/textures/cursor_default_md.xml b/Collector/Content/themes/lowres/textures/cursor_default_md.xml
new file mode 100644
index 0000000..88b034c
--- /dev/null
+++ b/Collector/Content/themes/lowres/textures/cursor_default_md.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+ 0
+ 0
+ 80
+
+
+
diff --git a/Collector/Content/themes/lowres/textures/cursor_ibeam.png b/Collector/Content/themes/lowres/textures/cursor_ibeam.png
new file mode 100644
index 0000000..b6c3033
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/cursor_ibeam.png differ
diff --git a/Collector/Content/themes/lowres/textures/cursor_ibeam_md.xml b/Collector/Content/themes/lowres/textures/cursor_ibeam_md.xml
new file mode 100644
index 0000000..725450d
--- /dev/null
+++ b/Collector/Content/themes/lowres/textures/cursor_ibeam_md.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+ 0
+ -6
+ 70
+
+
+
diff --git a/Collector/Content/themes/lowres/textures/cursor_pointer.png b/Collector/Content/themes/lowres/textures/cursor_pointer.png
new file mode 100644
index 0000000..8493b97
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/cursor_pointer.png differ
diff --git a/Collector/Content/themes/lowres/textures/cursor_pointer_md.xml b/Collector/Content/themes/lowres/textures/cursor_pointer_md.xml
new file mode 100644
index 0000000..fd0c53b
--- /dev/null
+++ b/Collector/Content/themes/lowres/textures/cursor_pointer_md.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+ -3
+ 0
+ 70
+
+
+
diff --git a/Collector/Content/themes/lowres/textures/dot.png b/Collector/Content/themes/lowres/textures/dot.png
new file mode 100644
index 0000000..d25727b
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/dot.png differ
diff --git a/Collector/Content/themes/lowres/textures/horizontal_line.png b/Collector/Content/themes/lowres/textures/horizontal_line.png
new file mode 100644
index 0000000..5ae5bd1
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/horizontal_line.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/Apple.png b/Collector/Content/themes/lowres/textures/icons/Apple.png
new file mode 100644
index 0000000..9069cc5
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/Apple.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/Armor.png b/Collector/Content/themes/lowres/textures/icons/Armor.png
new file mode 100644
index 0000000..a68d969
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/Armor.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/Axe.png b/Collector/Content/themes/lowres/textures/icons/Axe.png
new file mode 100644
index 0000000..e000b5e
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/Axe.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/BloodySword.png b/Collector/Content/themes/lowres/textures/icons/BloodySword.png
new file mode 100644
index 0000000..f424522
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/BloodySword.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/Bone.png b/Collector/Content/themes/lowres/textures/icons/Bone.png
new file mode 100644
index 0000000..832ee19
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/Bone.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/Book.png b/Collector/Content/themes/lowres/textures/icons/Book.png
new file mode 100644
index 0000000..7ecb384
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/Book.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/Cubes.png b/Collector/Content/themes/lowres/textures/icons/Cubes.png
new file mode 100644
index 0000000..7ad8e45
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/Cubes.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/Diamond.png b/Collector/Content/themes/lowres/textures/icons/Diamond.png
new file mode 100644
index 0000000..19770b7
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/Diamond.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/Explanation.png b/Collector/Content/themes/lowres/textures/icons/Explanation.png
new file mode 100644
index 0000000..0927841
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/Explanation.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/Feather.png b/Collector/Content/themes/lowres/textures/icons/Feather.png
new file mode 100644
index 0000000..f6d7277
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/Feather.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/FloppyDisk.png b/Collector/Content/themes/lowres/textures/icons/FloppyDisk.png
new file mode 100644
index 0000000..f742be7
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/FloppyDisk.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/GoldCoins.png b/Collector/Content/themes/lowres/textures/icons/GoldCoins.png
new file mode 100644
index 0000000..aa39013
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/GoldCoins.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/GoldShard.png b/Collector/Content/themes/lowres/textures/icons/GoldShard.png
new file mode 100644
index 0000000..33f77b2
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/GoldShard.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/Heart.png b/Collector/Content/themes/lowres/textures/icons/Heart.png
new file mode 100644
index 0000000..6192000
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/Heart.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/Helmet.png b/Collector/Content/themes/lowres/textures/icons/Helmet.png
new file mode 100644
index 0000000..573efeb
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/Helmet.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/Key.png b/Collector/Content/themes/lowres/textures/icons/Key.png
new file mode 100644
index 0000000..13cf4c4
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/Key.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/MagicBook.png b/Collector/Content/themes/lowres/textures/icons/MagicBook.png
new file mode 100644
index 0000000..0da7131
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/MagicBook.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/MagicWand.png b/Collector/Content/themes/lowres/textures/icons/MagicWand.png
new file mode 100644
index 0000000..a3f9b11
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/MagicWand.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/Map.png b/Collector/Content/themes/lowres/textures/icons/Map.png
new file mode 100644
index 0000000..8994325
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/Map.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/None.png b/Collector/Content/themes/lowres/textures/icons/None.png
new file mode 100644
index 0000000..82fa43a
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/None.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/OrbBlue.png b/Collector/Content/themes/lowres/textures/icons/OrbBlue.png
new file mode 100644
index 0000000..c748d3e
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/OrbBlue.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/OrbGreen.png b/Collector/Content/themes/lowres/textures/icons/OrbGreen.png
new file mode 100644
index 0000000..7237b2c
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/OrbGreen.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/OrbRed.png b/Collector/Content/themes/lowres/textures/icons/OrbRed.png
new file mode 100644
index 0000000..d13a47d
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/OrbRed.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/Pistol.png b/Collector/Content/themes/lowres/textures/icons/Pistol.png
new file mode 100644
index 0000000..5c4d86e
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/Pistol.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/PotionBlue.png b/Collector/Content/themes/lowres/textures/icons/PotionBlue.png
new file mode 100644
index 0000000..8a427c2
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/PotionBlue.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/PotionCyan.png b/Collector/Content/themes/lowres/textures/icons/PotionCyan.png
new file mode 100644
index 0000000..3a063a2
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/PotionCyan.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/PotionGreen.png b/Collector/Content/themes/lowres/textures/icons/PotionGreen.png
new file mode 100644
index 0000000..d6b494e
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/PotionGreen.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/PotionPurple.png b/Collector/Content/themes/lowres/textures/icons/PotionPurple.png
new file mode 100644
index 0000000..4fd7c7c
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/PotionPurple.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/PotionRed.png b/Collector/Content/themes/lowres/textures/icons/PotionRed.png
new file mode 100644
index 0000000..87355bb
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/PotionRed.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/PotionYellow.png b/Collector/Content/themes/lowres/textures/icons/PotionYellow.png
new file mode 100644
index 0000000..99b9526
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/PotionYellow.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/Ring.png b/Collector/Content/themes/lowres/textures/icons/Ring.png
new file mode 100644
index 0000000..3efec21
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/Ring.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/RingGold.png b/Collector/Content/themes/lowres/textures/icons/RingGold.png
new file mode 100644
index 0000000..6e1e00a
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/RingGold.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/RingGoldRuby.png b/Collector/Content/themes/lowres/textures/icons/RingGoldRuby.png
new file mode 100644
index 0000000..1690788
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/RingGoldRuby.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/RingRuby.png b/Collector/Content/themes/lowres/textures/icons/RingRuby.png
new file mode 100644
index 0000000..a2092d7
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/RingRuby.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/RubyBlue.png b/Collector/Content/themes/lowres/textures/icons/RubyBlue.png
new file mode 100644
index 0000000..bdbb52f
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/RubyBlue.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/RubyGreen.png b/Collector/Content/themes/lowres/textures/icons/RubyGreen.png
new file mode 100644
index 0000000..be78368
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/RubyGreen.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/RubyPink.png b/Collector/Content/themes/lowres/textures/icons/RubyPink.png
new file mode 100644
index 0000000..55d9cc7
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/RubyPink.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/RubyPurple.png b/Collector/Content/themes/lowres/textures/icons/RubyPurple.png
new file mode 100644
index 0000000..28c4356
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/RubyPurple.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/RubyRed.png b/Collector/Content/themes/lowres/textures/icons/RubyRed.png
new file mode 100644
index 0000000..d4522ac
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/RubyRed.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/Sack.png b/Collector/Content/themes/lowres/textures/icons/Sack.png
new file mode 100644
index 0000000..8c969c9
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/Sack.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/Scroll.png b/Collector/Content/themes/lowres/textures/icons/Scroll.png
new file mode 100644
index 0000000..e09f934
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/Scroll.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/Shield.png b/Collector/Content/themes/lowres/textures/icons/Shield.png
new file mode 100644
index 0000000..9c82d37
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/Shield.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/ShieldAndSword.png b/Collector/Content/themes/lowres/textures/icons/ShieldAndSword.png
new file mode 100644
index 0000000..14f255b
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/ShieldAndSword.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/Shovel.png b/Collector/Content/themes/lowres/textures/icons/Shovel.png
new file mode 100644
index 0000000..42ef8c4
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/Shovel.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/SilverShard.png b/Collector/Content/themes/lowres/textures/icons/SilverShard.png
new file mode 100644
index 0000000..f644926
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/SilverShard.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/Skull.png b/Collector/Content/themes/lowres/textures/icons/Skull.png
new file mode 100644
index 0000000..5d59ef8
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/Skull.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/Sword.png b/Collector/Content/themes/lowres/textures/icons/Sword.png
new file mode 100644
index 0000000..17e360c
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/Sword.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/Trap.png b/Collector/Content/themes/lowres/textures/icons/Trap.png
new file mode 100644
index 0000000..6483af4
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/Trap.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/ZoomIn.png b/Collector/Content/themes/lowres/textures/icons/ZoomIn.png
new file mode 100644
index 0000000..c32c4e6
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/ZoomIn.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/ZoomOut.png b/Collector/Content/themes/lowres/textures/icons/ZoomOut.png
new file mode 100644
index 0000000..a0b7eba
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/ZoomOut.png differ
diff --git a/Collector/Content/themes/lowres/textures/icons/background.png b/Collector/Content/themes/lowres/textures/icons/background.png
new file mode 100644
index 0000000..f42eaf6
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/icons/background.png differ
diff --git a/Collector/Content/themes/lowres/textures/panel_default.png b/Collector/Content/themes/lowres/textures/panel_default.png
new file mode 100644
index 0000000..32d10df
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/panel_default.png differ
diff --git a/Collector/Content/themes/lowres/textures/panel_default_md.xml b/Collector/Content/themes/lowres/textures/panel_default_md.xml
new file mode 100644
index 0000000..7fa94b7
--- /dev/null
+++ b/Collector/Content/themes/lowres/textures/panel_default_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.2
+ 0.2
+
+
+
diff --git a/Collector/Content/themes/lowres/textures/panel_fancy.png b/Collector/Content/themes/lowres/textures/panel_fancy.png
new file mode 100644
index 0000000..3fb340a
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/panel_fancy.png differ
diff --git a/Collector/Content/themes/lowres/textures/panel_fancy_md.xml b/Collector/Content/themes/lowres/textures/panel_fancy_md.xml
new file mode 100644
index 0000000..2b3fc1f
--- /dev/null
+++ b/Collector/Content/themes/lowres/textures/panel_fancy_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.2
+ 0.2
+
+
+
diff --git a/Collector/Content/themes/lowres/textures/panel_golden.png b/Collector/Content/themes/lowres/textures/panel_golden.png
new file mode 100644
index 0000000..d7aabdc
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/panel_golden.png differ
diff --git a/Collector/Content/themes/lowres/textures/panel_golden_md.xml b/Collector/Content/themes/lowres/textures/panel_golden_md.xml
new file mode 100644
index 0000000..2b3fc1f
--- /dev/null
+++ b/Collector/Content/themes/lowres/textures/panel_golden_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.2
+ 0.2
+
+
+
diff --git a/Collector/Content/themes/lowres/textures/panel_listbackground.png b/Collector/Content/themes/lowres/textures/panel_listbackground.png
new file mode 100644
index 0000000..d02d359
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/panel_listbackground.png differ
diff --git a/Collector/Content/themes/lowres/textures/panel_listbackground_md.xml b/Collector/Content/themes/lowres/textures/panel_listbackground_md.xml
new file mode 100644
index 0000000..2b3fc1f
--- /dev/null
+++ b/Collector/Content/themes/lowres/textures/panel_listbackground_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.2
+ 0.2
+
+
+
diff --git a/Collector/Content/themes/lowres/textures/panel_simple.png b/Collector/Content/themes/lowres/textures/panel_simple.png
new file mode 100644
index 0000000..704e268
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/panel_simple.png differ
diff --git a/Collector/Content/themes/lowres/textures/panel_simple_md.xml b/Collector/Content/themes/lowres/textures/panel_simple_md.xml
new file mode 100644
index 0000000..2b3fc1f
--- /dev/null
+++ b/Collector/Content/themes/lowres/textures/panel_simple_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.2
+ 0.2
+
+
+
diff --git a/Collector/Content/themes/lowres/textures/progressbar.png b/Collector/Content/themes/lowres/textures/progressbar.png
new file mode 100644
index 0000000..e206008
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/progressbar.png differ
diff --git a/Collector/Content/themes/lowres/textures/progressbar_fill.png b/Collector/Content/themes/lowres/textures/progressbar_fill.png
new file mode 100644
index 0000000..7739653
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/progressbar_fill.png differ
diff --git a/Collector/Content/themes/lowres/textures/progressbar_md.xml b/Collector/Content/themes/lowres/textures/progressbar_md.xml
new file mode 100644
index 0000000..ff3521d
--- /dev/null
+++ b/Collector/Content/themes/lowres/textures/progressbar_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.3235
+ 0.0
+
+
+
diff --git a/Collector/Content/themes/lowres/textures/radio.png b/Collector/Content/themes/lowres/textures/radio.png
new file mode 100644
index 0000000..1e8514f
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/radio.png differ
diff --git a/Collector/Content/themes/lowres/textures/radio_down.png b/Collector/Content/themes/lowres/textures/radio_down.png
new file mode 100644
index 0000000..94571f1
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/radio_down.png differ
diff --git a/Collector/Content/themes/lowres/textures/radio_hover.png b/Collector/Content/themes/lowres/textures/radio_hover.png
new file mode 100644
index 0000000..1e8d7db
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/radio_hover.png differ
diff --git a/Collector/Content/themes/lowres/textures/scrollbar.png b/Collector/Content/themes/lowres/textures/scrollbar.png
new file mode 100644
index 0000000..65b4cc2
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/scrollbar.png differ
diff --git a/Collector/Content/themes/lowres/textures/scrollbar_mark.png b/Collector/Content/themes/lowres/textures/scrollbar_mark.png
new file mode 100644
index 0000000..80dd9b1
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/scrollbar_mark.png differ
diff --git a/Collector/Content/themes/lowres/textures/scrollbar_md.xml b/Collector/Content/themes/lowres/textures/scrollbar_md.xml
new file mode 100644
index 0000000..44688b9
--- /dev/null
+++ b/Collector/Content/themes/lowres/textures/scrollbar_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.0
+ 0.3
+
+
+
diff --git a/Collector/Content/themes/lowres/textures/slider_default.png b/Collector/Content/themes/lowres/textures/slider_default.png
new file mode 100644
index 0000000..4b0110f
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/slider_default.png differ
diff --git a/Collector/Content/themes/lowres/textures/slider_default_mark.png b/Collector/Content/themes/lowres/textures/slider_default_mark.png
new file mode 100644
index 0000000..51c7c21
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/slider_default_mark.png differ
diff --git a/Collector/Content/themes/lowres/textures/slider_default_md.xml b/Collector/Content/themes/lowres/textures/slider_default_md.xml
new file mode 100644
index 0000000..e432ee2
--- /dev/null
+++ b/Collector/Content/themes/lowres/textures/slider_default_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.2
+ 0.0
+
+
+
diff --git a/Collector/Content/themes/lowres/textures/slider_fancy.png b/Collector/Content/themes/lowres/textures/slider_fancy.png
new file mode 100644
index 0000000..18f4c34
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/slider_fancy.png differ
diff --git a/Collector/Content/themes/lowres/textures/slider_fancy_mark.png b/Collector/Content/themes/lowres/textures/slider_fancy_mark.png
new file mode 100644
index 0000000..85a2898
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/slider_fancy_mark.png differ
diff --git a/Collector/Content/themes/lowres/textures/slider_fancy_md.xml b/Collector/Content/themes/lowres/textures/slider_fancy_md.xml
new file mode 100644
index 0000000..465cd19
--- /dev/null
+++ b/Collector/Content/themes/lowres/textures/slider_fancy_md.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+ 0.3
+ 0.0
+
+
+
diff --git a/Collector/Content/themes/lowres/textures/white_texture.png b/Collector/Content/themes/lowres/textures/white_texture.png
new file mode 100644
index 0000000..a782975
Binary files /dev/null and b/Collector/Content/themes/lowres/textures/white_texture.png differ
diff --git a/Collector/Main.cs b/Collector/Main.cs
index 21445c5..eb791d9 100644
--- a/Collector/Main.cs
+++ b/Collector/Main.cs
@@ -3,11 +3,14 @@ using System.Collections.Generic;
using System.IO;
using Collector.Character;
using Collector.Dimension;
+using Collector.UI;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using MonoGame.Extended;
using MonoGame.Extended.ViewportAdapters;
+using Myra;
+using Myra.Graphics2D.UI;
namespace Collector
{
@@ -21,6 +24,8 @@ namespace Collector
private static OrthographicCamera _cam;
private static int _virtualWidth;
private static int _virtualHeight;
+ private Desktop _desktop;
+ private Gui _gui;
private WorldRenderer WorldRenderer { get; set; }
public static Dictionary Materials { get; } = new Dictionary();
@@ -38,6 +43,8 @@ namespace Collector
protected override void Initialize()
{
// TODO: Add your initialization logic here
+ _gui = new Gui(_desktop);
+
base.Initialize();
foreach (Blocks name in Enum.GetValues(typeof(Blocks)))
@@ -47,25 +54,35 @@ namespace Collector
_virtualWidth = GraphicsAdapter.DefaultAdapter.CurrentDisplayMode.Width;
_virtualHeight = GraphicsAdapter.DefaultAdapter.CurrentDisplayMode.Height;
-
+
var viewportAdapter = new BoxingViewportAdapter(Window, GraphicsDevice, _virtualWidth, _virtualHeight);
_player = new Player(0, 0);
_cam = new OrthographicCamera(viewportAdapter);
_cam.LookAt(new Vector2(Player.X, Player.Y));
_cam.Zoom = IRestrictions.Zoom;
-
+
_spriteBatch = new SpriteBatch(GraphicsDevice);
_playerMouse = new PlayerMouse(Content, _spriteBatch, _cam);
_inputController = new InputController(_cam, _spriteBatch, Content);
WorldRenderer = new WorldRenderer(_playerMouse, _inputController, _spriteBatch, this);
}
+ protected override void LoadContent()
+ {
+ base.LoadContent();
+ MyraEnvironment.Game = this;
+
+ _gui.LoadGUI();
+ }
+
+
protected override void Update(GameTime gameTime)
{
// TODO: Add your update logic here/*
base.Update(gameTime);
World.LoadChunks();
World.UnloadChunks();
+ _gui.Update();
}
protected override void Draw(GameTime gameTime)
@@ -78,6 +95,7 @@ namespace Collector
_playerMouse.Draw();
WorldRenderer.Draw(gameTime);
_spriteBatch.End();
+ _gui.Render();
}
}
}
\ No newline at end of file
diff --git a/Collector/src/Character/Collision.cs b/Collector/src/Character/Collision.cs
index fd665b8..a076b42 100644
--- a/Collector/src/Character/Collision.cs
+++ b/Collector/src/Character/Collision.cs
@@ -5,7 +5,7 @@ namespace Collector.Character
{
public class Collision
{
- public RectangleF Rectangle { get; private set; }
+ public RectangleF Rectangle { get; }
public Collision(int x, int y)
{
diff --git a/Collector/src/Character/InputController.cs b/Collector/src/Character/InputController.cs
index dbdd9d6..72d6b72 100644
--- a/Collector/src/Character/InputController.cs
+++ b/Collector/src/Character/InputController.cs
@@ -166,10 +166,15 @@ namespace Collector.Character
}
if (mouseState.RightButton == ButtonState.Pressed)
{
- Chunks.PlaceBlock(PlayerMouse.GetSelectedX(),PlayerMouse.GetSelectedY(),Blocks.BlockWood);
+ PlaceSelectedBlock(Inventory.GetSelectedItem());
}
}
+ private static void PlaceSelectedBlock(Blocks selectedItem)
+ {
+ Chunks.PlaceBlock(PlayerMouse.GetSelectedX(), PlayerMouse.GetSelectedY(), selectedItem);
+ }
+
private void UpdateAnimationFrame(GameTime gameTime)
{
_timeSinceLastFrame += gameTime.GetElapsedSeconds();
diff --git a/Collector/src/Character/Inventory.cs b/Collector/src/Character/Inventory.cs
index 95b3b12..55c0dbe 100644
--- a/Collector/src/Character/Inventory.cs
+++ b/Collector/src/Character/Inventory.cs
@@ -1,8 +1,15 @@
using System.Collections.Generic;
using Collector.Dimension;
-
+using Collector.UI;
+using Myra.Graphics2D.UI;
+
public class Inventory {
private LinkedList inventory = new LinkedList();
+
+ public static Blocks GetSelectedItem()
+ {
+ return (Blocks) Gui._combo.SelectedIndex.Value;
+ }
public LinkedList GetInventory() {
return inventory;
diff --git a/Collector/src/Dimension/Blocks.cs b/Collector/src/Dimension/Blocks.cs
index 2f8ba28..8336deb 100644
--- a/Collector/src/Dimension/Blocks.cs
+++ b/Collector/src/Dimension/Blocks.cs
@@ -1,15 +1,15 @@
namespace Collector.Dimension
{
- public enum Blocks
+ public enum Blocks : byte
{
- BlockAir,
- BlockGrass,
- BlockWood,
- BlockStone,
- BlockSnow,
- BlockSand,
- BlockRoof,
- BlockWall,
- BlockWater
+ BlockAir = 0,
+ BlockGrass = 1,
+ BlockWood = 2,
+ BlockStone = 3,
+ BlockSnow = 4,
+ BlockSand = 5,
+ BlockRoof = 6,
+ BlockWall = 7,
+ BlockWater = 8
}
}
\ No newline at end of file
diff --git a/Collector/src/UI/GUI.cs b/Collector/src/UI/GUI.cs
index 1e5e330..329f977 100644
--- a/Collector/src/UI/GUI.cs
+++ b/Collector/src/UI/GUI.cs
@@ -1,7 +1,79 @@
-using Collector;
+using System;
+using Collector.Dimension;
+using Microsoft.Xna.Framework;
+using Myra.Graphics2D.UI;
-public class GUI: IRestrictions {
+namespace Collector.UI
+{
+ public class Gui: IRestrictions {
+ private Desktop _desktop;
+ public static ComboBox _combo;
+ private TextButton _button;
+ public Gui(Desktop desktop)
+ {
+ _desktop = desktop;
+ }
+
+ public void LoadGUI()
+ {
+ var grid = new Grid
+ {
+ RowSpacing = 8,
+ ColumnSpacing = 8
+ };
+
+ grid.ColumnsProportions.Add(new Proportion(ProportionType.Auto));
+ grid.ColumnsProportions.Add(new Proportion(ProportionType.Auto));
+ grid.RowsProportions.Add(new Proportion(ProportionType.Auto));
+ grid.RowsProportions.Add(new Proportion(ProportionType.Auto));
+
+
+ //Position
+ _combo = new ComboBox
+ {
+ GridColumn = 0,
+ GridRow = 0
+ };
+ _button = new TextButton
+ {
+ GridColumn = 1,
+ GridRow = 0,
+ Text = "Inventory"
+ };
+
+
+ foreach (Blocks name in Enum.GetValues(typeof(Blocks)))
+ {
+ _combo.Items.Add(new ListItem(name.ToString(), Color.White));
+ }
+
+ grid.Widgets.Add(_combo);
+
+
+ _button.Click += (s, a) =>
+ {
+ var messageBox = Dialog.CreateMessageBox("Message", "Some message!");
+ messageBox.ShowModal(_desktop);
+ };
+
+ grid.Widgets.Add(_button);
+
+ _desktop = new Desktop
+ {
+ Root = grid
+ };
+ }
+
+ public void Update()
+ {
+ }
+
+ public void Render()
+ {
+ _desktop.Render();
+ }
+ }
}