diff --git a/AutoTrackR2/Assets/Gankhub.png b/AutoTrackR2/Assets/Gankhub.png
new file mode 100644
index 0000000..194bbfd
Binary files /dev/null and b/AutoTrackR2/Assets/Gankhub.png differ
diff --git a/AutoTrackR2/AutoTrackR2.csproj b/AutoTrackR2/AutoTrackR2.csproj
index 4bbe57e..7c2355c 100644
--- a/AutoTrackR2/AutoTrackR2.csproj
+++ b/AutoTrackR2/AutoTrackR2.csproj
@@ -19,6 +19,7 @@
     <None Remove="Assets\chibifox.png" />
     <None Remove="Assets\D3VL.png" />
     <None Remove="Assets\EMP.png" />
+    <None Remove="Assets\Gankhub.png" />
     <None Remove="Assets\HEX.png" />
     <None Remove="Assets\HIT.png" />
     <None Remove="Assets\MAMMON.png" />
@@ -41,6 +42,9 @@
     <Resource Include="Assets\BlightVeil.png">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </Resource>
+    <Resource Include="Assets\Gankhub.png">
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+    </Resource>
     <Resource Include="Assets\NMOS.png">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </Resource>
diff --git a/AutoTrackR2/ConfigPage.xaml b/AutoTrackR2/ConfigPage.xaml
index 7f45e94..605a79a 100644
--- a/AutoTrackR2/ConfigPage.xaml
+++ b/AutoTrackR2/ConfigPage.xaml
@@ -77,7 +77,7 @@
                     <TextBlock Text="Theme:" Foreground="{DynamicResource TextBrush}" FontSize="16" Margin="0,7,0,5"/>
                     <Slider x:Name="ThemeSlider"
                             Minimum="0" 
-                            Maximum="19"
+                            Maximum="20"
                             Value="0"
                             TickFrequency="1"
                             IsSnapToTickEnabled="True"
diff --git a/AutoTrackR2/ConfigPage.xaml.cs b/AutoTrackR2/ConfigPage.xaml.cs
index 6200999..a20fdf7 100644
--- a/AutoTrackR2/ConfigPage.xaml.cs
+++ b/AutoTrackR2/ConfigPage.xaml.cs
@@ -331,6 +331,16 @@ namespace AutoTrackR2
                     );
                     ChangeLogo("/Assets/Blightveil.png", (Color)ColorConverter.ConvertFromString("#8B4AC6"));
                     break;
+                case 20: // Gankhub Theme
+                    UpdateThemeColors(
+                        (Color)ColorConverter.ConvertFromString("#ffa500"), // Accent/Border
+                        (Color)ColorConverter.ConvertFromString("#2C2C2C"), // Button
+                        (Color)ColorConverter.ConvertFromString("#1b1b1b"), // Background
+                        (Color)ColorConverter.ConvertFromString("#FFFFFF"), // Text
+                        (Color)ColorConverter.ConvertFromString("#ffa500")  // AltText
+                    );
+                    ChangeLogo("/Assets/Gankhub.png");
+                    break;
             }
         }