mirror of
https://github.com/BubbaGumpShrump/AutoTrackR2.git
synced 2025-06-19 04:59:07 +00:00
Theme slider is now defined by the max themes available.
Also added the DMC theme too.
This commit is contained in:
parent
eb50d878b4
commit
769d46df9d
5 changed files with 347 additions and 328 deletions
BIN
AutoTrackR2/Assets/DMC.png
Normal file
BIN
AutoTrackR2/Assets/DMC.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 385 KiB |
|
@ -30,6 +30,7 @@
|
||||||
<None Remove="Assets\VOX.png" />
|
<None Remove="Assets\VOX.png" />
|
||||||
<None Remove="Assets\WRITH.png" />
|
<None Remove="Assets\WRITH.png" />
|
||||||
<None Remove="Assets\ZAP.png" />
|
<None Remove="Assets\ZAP.png" />
|
||||||
|
<None Remove="Assets\DMC.png" />
|
||||||
<None Remove="config.ini" />
|
<None Remove="config.ini" />
|
||||||
<None Remove="Fonts\Orbitron-Bold.ttf" />
|
<None Remove="Fonts\Orbitron-Bold.ttf" />
|
||||||
<None Remove="Fonts\Roboto-Regular.ttf" />
|
<None Remove="Fonts\Roboto-Regular.ttf" />
|
||||||
|
@ -100,9 +101,6 @@
|
||||||
<Resource Include="Assets\VOX.png">
|
<Resource Include="Assets\VOX.png">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</Resource>
|
</Resource>
|
||||||
<Resource Include="Assets\WRITH.png">
|
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
||||||
</Resource>
|
|
||||||
<Resource Include="Assets\cinderborn.png">
|
<Resource Include="Assets\cinderborn.png">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</Resource>
|
</Resource>
|
||||||
|
@ -112,6 +110,9 @@
|
||||||
<Resource Include="Assets\ZAP.png">
|
<Resource Include="Assets\ZAP.png">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</Resource>
|
</Resource>
|
||||||
|
<Resource Include="Assets\DMC.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Resource>
|
||||||
<Resource Include="config.ini" />
|
<Resource Include="config.ini" />
|
||||||
<Resource Include="Fonts\Orbitron-Bold.ttf">
|
<Resource Include="Fonts\Orbitron-Bold.ttf">
|
||||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
|
|
|
@ -207,7 +207,6 @@
|
||||||
Margin="0,7,0,5"/>
|
Margin="0,7,0,5"/>
|
||||||
<Slider x:Name="ThemeSlider"
|
<Slider x:Name="ThemeSlider"
|
||||||
Minimum="0"
|
Minimum="0"
|
||||||
Maximum="24"
|
|
||||||
Value="0"
|
Value="0"
|
||||||
TickFrequency="1"
|
TickFrequency="1"
|
||||||
IsSnapToTickEnabled="True"
|
IsSnapToTickEnabled="True"
|
||||||
|
|
|
@ -20,7 +20,7 @@ public partial class ConfigPage : UserControl
|
||||||
private double savedSliderValue = 0;
|
private double savedSliderValue = 0;
|
||||||
|
|
||||||
private MainWindow mainWindow;
|
private MainWindow mainWindow;
|
||||||
|
|
||||||
Dictionary<string, Theme>? _themes = null;
|
Dictionary<string, Theme>? _themes = null;
|
||||||
|
|
||||||
public ConfigPage(MainWindow mainWindow)
|
public ConfigPage(MainWindow mainWindow)
|
||||||
|
@ -38,11 +38,17 @@ public partial class ConfigPage : UserControl
|
||||||
ThemeSlider.Value = ConfigManager.Theme;
|
ThemeSlider.Value = ConfigManager.Theme;
|
||||||
|
|
||||||
ApplyToggleModeStyle(OfflineModeSlider.Value, VisorWipeSlider.Value, VideoRecordSlider.Value);
|
ApplyToggleModeStyle(OfflineModeSlider.Value, VisorWipeSlider.Value, VideoRecordSlider.Value);
|
||||||
|
|
||||||
|
|
||||||
const string themeJsonPath = "themes.json";
|
const string themeJsonPath = "themes.json";
|
||||||
var themeJson = File.ReadAllText(themeJsonPath);
|
var themeJson = File.ReadAllText(themeJsonPath);
|
||||||
_themes = JsonSerializer.Deserialize<Dictionary<string, Theme>>(themeJson);
|
_themes = JsonSerializer.Deserialize<Dictionary<string, Theme>>(themeJson);
|
||||||
|
|
||||||
|
// Set the theme slider's maximum value based on the number of themes
|
||||||
|
if (_themes != null)
|
||||||
|
{
|
||||||
|
ThemeSlider.Maximum = _themes.Count - 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Method to change the logo image in MainWindow
|
// Method to change the logo image in MainWindow
|
||||||
|
@ -88,7 +94,7 @@ public partial class ConfigPage : UserControl
|
||||||
|
|
||||||
// Handle themes
|
// Handle themes
|
||||||
ApplyTheme(theme);
|
ApplyTheme(theme);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ApplyToggleModeStyle(double offlineModeValue, double visorWipeValue, double videoRecordValue)
|
private void ApplyToggleModeStyle(double offlineModeValue, double visorWipeValue, double videoRecordValue)
|
||||||
|
@ -133,13 +139,13 @@ public partial class ConfigPage : UserControl
|
||||||
{
|
{
|
||||||
var theme = _themes?.Values.ElementAtOrDefault(themeIndex);
|
var theme = _themes?.Values.ElementAtOrDefault(themeIndex);
|
||||||
if (theme == null) return;
|
if (theme == null) return;
|
||||||
|
|
||||||
// Update the logo
|
// Update the logo
|
||||||
if (theme.Logo != null && theme.Logo.Path != null)
|
if (theme.Logo != null && theme.Logo.Path != null)
|
||||||
{
|
{
|
||||||
ChangeLogo(theme.Logo.Path,
|
ChangeLogo(theme.Logo.Path,
|
||||||
theme.Logo.Primary != null
|
theme.Logo.Primary != null
|
||||||
? (Color) ColorConverter.ConvertFromString(theme.Logo.Primary)
|
? (Color)ColorConverter.ConvertFromString(theme.Logo.Primary)
|
||||||
: Colors.Transparent);
|
: Colors.Transparent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,321 +1,334 @@
|
||||||
{
|
{
|
||||||
"Blue": {
|
"Blue": {
|
||||||
"Colors": {
|
"Colors": {
|
||||||
"Accent": "#00A9E0",
|
"Accent": "#00A9E0",
|
||||||
"Button": "#0F1A2B",
|
"Button": "#0F1A2B",
|
||||||
"Background": "#1D2D44",
|
"Background": "#1D2D44",
|
||||||
"Text": "#FFFFFF",
|
"Text": "#FFFFFF",
|
||||||
"AltText": "#A88F2C"
|
"AltText": "#A88F2C"
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/AutoTrackR.png"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"Green": {
|
"Logo": {
|
||||||
"Colors": {
|
"Path": "/Assets/AutoTrackR.png"
|
||||||
"Accent": "#1D9F00",
|
|
||||||
"Button": "#262424",
|
|
||||||
"Background": "#072501",
|
|
||||||
"Text": "#D7AF3C",
|
|
||||||
"AltText": "#DCD6C4"
|
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/AutoTrackR.png"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Red": {
|
|
||||||
"Colors": {
|
|
||||||
"Accent": "#D32F2F",
|
|
||||||
"Button": "#424242",
|
|
||||||
"Background": "#212121",
|
|
||||||
"Text": "#E0E0E0",
|
|
||||||
"AltText": "#A88F2C"
|
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/AutoTrackR.png"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Purple": {
|
|
||||||
"Colors": {
|
|
||||||
"Accent": "#32CD32",
|
|
||||||
"Button": "#33065F",
|
|
||||||
"Background": "#43065F",
|
|
||||||
"Text": "#00FF00",
|
|
||||||
"AltText": "#B3976E"
|
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/AutoTrackR.png"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"GN": {
|
|
||||||
"Colors": {
|
|
||||||
"Accent": "#FF0000",
|
|
||||||
"Button": "#1A0000",
|
|
||||||
"Background": "#0A0000",
|
|
||||||
"Text": "#FFD700",
|
|
||||||
"AltText": "#FF4500"
|
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/GN.png",
|
|
||||||
"Primary": "#FF0000"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"NW": {
|
|
||||||
"Colors": {
|
|
||||||
"Accent": "#B92D2D",
|
|
||||||
"Button": "#1C1C1C",
|
|
||||||
"Background": "#262424",
|
|
||||||
"Text": "#01DDDA",
|
|
||||||
"AltText": "#A88F2C"
|
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/NW.png",
|
|
||||||
"Primary": "#01DDDA"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"D3VL": {
|
|
||||||
"Colors": {
|
|
||||||
"Accent": "#AA0000",
|
|
||||||
"Button": "#333333",
|
|
||||||
"Background": "#220000",
|
|
||||||
"Text": "#FF0000",
|
|
||||||
"AltText": "#A88F2C"
|
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/D3VL.png",
|
|
||||||
"Primary": "#CC0000"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"HIT": {
|
|
||||||
"Colors": {
|
|
||||||
"Accent": "#B92D2D",
|
|
||||||
"Button": "#1C1C1C",
|
|
||||||
"Background": "#262424",
|
|
||||||
"Text": "#7d7d7d",
|
|
||||||
"AltText": "#A88F2C"
|
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/HIT.png"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"WRAITH": {
|
|
||||||
"Colors": {
|
|
||||||
"Accent": "#ff0000",
|
|
||||||
"Button": "#2a2a2a",
|
|
||||||
"Background": "#0a0a0a",
|
|
||||||
"Text": "#DFDFDF",
|
|
||||||
"AltText": "#8B0000"
|
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/WRITH.png",
|
|
||||||
"Primary": "#ff0000"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Cinderborn": {
|
|
||||||
"Colors": {
|
|
||||||
"Accent": "#FF4500",
|
|
||||||
"Button": "#2A0A0A",
|
|
||||||
"Background": "#1A0000",
|
|
||||||
"Text": "#FF8C42",
|
|
||||||
"AltText": "#FF6B35"
|
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/cinderborn.png",
|
|
||||||
"Primary": "#FF4500"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"EMP": {
|
|
||||||
"Colors": {
|
|
||||||
"Accent": "#F5721C",
|
|
||||||
"Button": "#535353",
|
|
||||||
"Background": "#080000",
|
|
||||||
"Text": "#FFFFFF",
|
|
||||||
"AltText": "#CEA75B"
|
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/EMP.png",
|
|
||||||
"Primary": "#F3BD9B"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"AVS": {
|
|
||||||
"Colors": {
|
|
||||||
"Accent": "#00BFFF",
|
|
||||||
"Button": "#001F3F",
|
|
||||||
"Background": "#000B1A",
|
|
||||||
"Text": "#FFFFFF",
|
|
||||||
"AltText": "#87CEEB"
|
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/AVSQN.png",
|
|
||||||
"Primary": "#00BFFF"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"HEX": {
|
|
||||||
"Colors": {
|
|
||||||
"Accent": "#00FF00",
|
|
||||||
"Button": "#001A00",
|
|
||||||
"Background": "#000D00",
|
|
||||||
"Text": "#FFFFFF",
|
|
||||||
"AltText": "#39FF14"
|
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/HEX.png",
|
|
||||||
"Primary": "#00FF00"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Mammon": {
|
|
||||||
"Colors": {
|
|
||||||
"Accent": "#FFD700",
|
|
||||||
"Button": "#2C2C2C",
|
|
||||||
"Background": "#1A1A1A",
|
|
||||||
"Text": "#FFFFFF",
|
|
||||||
"AltText": "#DAA520"
|
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/MAMMON.png",
|
|
||||||
"Primary": "#FFD700"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Shadow Moses": {
|
|
||||||
"Colors": {
|
|
||||||
"Accent": "#FF69B4",
|
|
||||||
"Button": "#2C2C2C",
|
|
||||||
"Background": "#2C1F28",
|
|
||||||
"Text": "#E6E6E6",
|
|
||||||
"AltText": "#FF1493"
|
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/ShadowMoses.png",
|
|
||||||
"Primary": "#FF69B4"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Mongrel Squad": {
|
|
||||||
"Colors": {
|
|
||||||
"Accent": "#00BFFF",
|
|
||||||
"Button": "#003366",
|
|
||||||
"Background": "#001F3F",
|
|
||||||
"Text": "#E6F3FF",
|
|
||||||
"AltText": "#87CEEB"
|
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/BOBGREL.png",
|
|
||||||
"Primary": "#00BFFF"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Feezy": {
|
|
||||||
"Colors": {
|
|
||||||
"Accent": "#FFA500",
|
|
||||||
"Button": "#1B0C04",
|
|
||||||
"Background": "#1B0C04",
|
|
||||||
"Text": "#FFE4B5",
|
|
||||||
"AltText": "#A88F2C"
|
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/chibifox.png",
|
|
||||||
"Primary": "#FFA500"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"NMOS": {
|
|
||||||
"Colors": {
|
|
||||||
"Accent": "#EAB787",
|
|
||||||
"Button": "#601C1B",
|
|
||||||
"Background": "#170402",
|
|
||||||
"Text": "#F6DBAD",
|
|
||||||
"AltText": "#EBCAA0"
|
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/NMOS.png",
|
|
||||||
"Primary": "#EAB787"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Rakk": {
|
|
||||||
"Colors": {
|
|
||||||
"Accent": "#FF00FF",
|
|
||||||
"Button": "#1C1C1C",
|
|
||||||
"Background": "#0A0A0A",
|
|
||||||
"Text": "#E6E6E6",
|
|
||||||
"AltText": "#00BFFF"
|
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/RACKETEERS.png",
|
|
||||||
"Primary": "#FF00FF"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Blightveil": {
|
|
||||||
"Colors": {
|
|
||||||
"Accent": "#8B4AC6",
|
|
||||||
"Button": "#2A2035",
|
|
||||||
"Background": "#1A1621",
|
|
||||||
"Text": "#FFFFFF",
|
|
||||||
"AltText": "#FF3333"
|
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/Blightveil.png",
|
|
||||||
"Primary": "#8B4AC6"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Gankhub": {
|
|
||||||
"Colors": {
|
|
||||||
"Accent": "#ffa500",
|
|
||||||
"Button": "#2C2C2C",
|
|
||||||
"Background": "#1b1b1b",
|
|
||||||
"Text": "#FFFFFF",
|
|
||||||
"AltText": "#ffa500"
|
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/Gankhub.png"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"IronPoint": {
|
|
||||||
"Colors": {
|
|
||||||
"Accent": "#FF0000",
|
|
||||||
"Button": "#1C1C1C",
|
|
||||||
"Background": "#000000",
|
|
||||||
"Text": "#FFFFFF",
|
|
||||||
"AltText": "#A88F2C"
|
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/IP.png",
|
|
||||||
"Primary": "#FF0000"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Shadow Guardian": {
|
|
||||||
"Colors": {
|
|
||||||
"Accent": "#8B0000",
|
|
||||||
"Button": "#1A0000",
|
|
||||||
"Background": "#0A0000",
|
|
||||||
"Text": "#D3D3D3",
|
|
||||||
"AltText": "#B22222"
|
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/shadowguard.png",
|
|
||||||
"Primary": "#8B0000"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"VOX": {
|
|
||||||
"Colors": {
|
|
||||||
"Accent": "#C0C0C0",
|
|
||||||
"Button": "#1C1C1C",
|
|
||||||
"Background": "#424242",
|
|
||||||
"Text": "#FFD700",
|
|
||||||
"AltText": "#817E79"
|
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/VOX.png",
|
|
||||||
"Primary": "#FFD700"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Zap": {
|
|
||||||
"Colors": {
|
|
||||||
"Accent": "#FFD700",
|
|
||||||
"Button": "#1A1A1A",
|
|
||||||
"Background": "#0A0A0A",
|
|
||||||
"Text": "#FFFFFF",
|
|
||||||
"AltText": "#FFA500"
|
|
||||||
},
|
|
||||||
"Logo": {
|
|
||||||
"Path": "/Assets/ZAP.png",
|
|
||||||
"Primary": "#FFD700"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"Green": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#1D9F00",
|
||||||
|
"Button": "#262424",
|
||||||
|
"Background": "#072501",
|
||||||
|
"Text": "#D7AF3C",
|
||||||
|
"AltText": "#DCD6C4"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/AutoTrackR.png"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Red": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#D32F2F",
|
||||||
|
"Button": "#424242",
|
||||||
|
"Background": "#212121",
|
||||||
|
"Text": "#E0E0E0",
|
||||||
|
"AltText": "#A88F2C"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/AutoTrackR.png"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Purple": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#32CD32",
|
||||||
|
"Button": "#33065F",
|
||||||
|
"Background": "#43065F",
|
||||||
|
"Text": "#00FF00",
|
||||||
|
"AltText": "#B3976E"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/AutoTrackR.png"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"GN": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#FF0000",
|
||||||
|
"Button": "#1A0000",
|
||||||
|
"Background": "#0A0000",
|
||||||
|
"Text": "#FFD700",
|
||||||
|
"AltText": "#FF4500"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/GN.png",
|
||||||
|
"Primary": "#FF0000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"NW": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#B92D2D",
|
||||||
|
"Button": "#1C1C1C",
|
||||||
|
"Background": "#262424",
|
||||||
|
"Text": "#01DDDA",
|
||||||
|
"AltText": "#A88F2C"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/NW.png",
|
||||||
|
"Primary": "#01DDDA"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"D3VL": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#AA0000",
|
||||||
|
"Button": "#333333",
|
||||||
|
"Background": "#220000",
|
||||||
|
"Text": "#FF0000",
|
||||||
|
"AltText": "#A88F2C"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/D3VL.png",
|
||||||
|
"Primary": "#CC0000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"HIT": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#B92D2D",
|
||||||
|
"Button": "#1C1C1C",
|
||||||
|
"Background": "#262424",
|
||||||
|
"Text": "#7d7d7d",
|
||||||
|
"AltText": "#A88F2C"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/HIT.png"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"WRAITH": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#ff0000",
|
||||||
|
"Button": "#2a2a2a",
|
||||||
|
"Background": "#0a0a0a",
|
||||||
|
"Text": "#DFDFDF",
|
||||||
|
"AltText": "#8B0000"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/WRITH.png",
|
||||||
|
"Primary": "#ff0000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Cinderborn": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#FF4500",
|
||||||
|
"Button": "#2A0A0A",
|
||||||
|
"Background": "#1A0000",
|
||||||
|
"Text": "#FF8C42",
|
||||||
|
"AltText": "#FF6B35"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/cinderborn.png",
|
||||||
|
"Primary": "#FF4500"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"EMP": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#F5721C",
|
||||||
|
"Button": "#535353",
|
||||||
|
"Background": "#080000",
|
||||||
|
"Text": "#FFFFFF",
|
||||||
|
"AltText": "#CEA75B"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/EMP.png",
|
||||||
|
"Primary": "#F3BD9B"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"AVS": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#00BFFF",
|
||||||
|
"Button": "#001F3F",
|
||||||
|
"Background": "#000B1A",
|
||||||
|
"Text": "#FFFFFF",
|
||||||
|
"AltText": "#87CEEB"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/AVSQN.png",
|
||||||
|
"Primary": "#00BFFF"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"HEX": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#00FF00",
|
||||||
|
"Button": "#001A00",
|
||||||
|
"Background": "#000D00",
|
||||||
|
"Text": "#FFFFFF",
|
||||||
|
"AltText": "#39FF14"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/HEX.png",
|
||||||
|
"Primary": "#00FF00"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Mammon": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#FFD700",
|
||||||
|
"Button": "#2C2C2C",
|
||||||
|
"Background": "#1A1A1A",
|
||||||
|
"Text": "#FFFFFF",
|
||||||
|
"AltText": "#DAA520"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/MAMMON.png",
|
||||||
|
"Primary": "#FFD700"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Shadow Moses": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#FF69B4",
|
||||||
|
"Button": "#2C2C2C",
|
||||||
|
"Background": "#2C1F28",
|
||||||
|
"Text": "#E6E6E6",
|
||||||
|
"AltText": "#FF1493"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/ShadowMoses.png",
|
||||||
|
"Primary": "#FF69B4"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Mongrel Squad": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#00BFFF",
|
||||||
|
"Button": "#003366",
|
||||||
|
"Background": "#001F3F",
|
||||||
|
"Text": "#E6F3FF",
|
||||||
|
"AltText": "#87CEEB"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/BOBGREL.png",
|
||||||
|
"Primary": "#00BFFF"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Feezy": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#FFA500",
|
||||||
|
"Button": "#1B0C04",
|
||||||
|
"Background": "#1B0C04",
|
||||||
|
"Text": "#FFE4B5",
|
||||||
|
"AltText": "#A88F2C"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/chibifox.png",
|
||||||
|
"Primary": "#FFA500"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"NMOS": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#EAB787",
|
||||||
|
"Button": "#601C1B",
|
||||||
|
"Background": "#170402",
|
||||||
|
"Text": "#F6DBAD",
|
||||||
|
"AltText": "#EBCAA0"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/NMOS.png",
|
||||||
|
"Primary": "#EAB787"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Rakk": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#FF00FF",
|
||||||
|
"Button": "#1C1C1C",
|
||||||
|
"Background": "#0A0A0A",
|
||||||
|
"Text": "#E6E6E6",
|
||||||
|
"AltText": "#00BFFF"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/RACKETEERS.png",
|
||||||
|
"Primary": "#FF00FF"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Blightveil": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#8B4AC6",
|
||||||
|
"Button": "#2A2035",
|
||||||
|
"Background": "#1A1621",
|
||||||
|
"Text": "#FFFFFF",
|
||||||
|
"AltText": "#FF3333"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/Blightveil.png",
|
||||||
|
"Primary": "#8B4AC6"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Gankhub": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#ffa500",
|
||||||
|
"Button": "#2C2C2C",
|
||||||
|
"Background": "#1b1b1b",
|
||||||
|
"Text": "#FFFFFF",
|
||||||
|
"AltText": "#ffa500"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/Gankhub.png"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"IronPoint": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#FF0000",
|
||||||
|
"Button": "#1C1C1C",
|
||||||
|
"Background": "#000000",
|
||||||
|
"Text": "#FFFFFF",
|
||||||
|
"AltText": "#A88F2C"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/IP.png",
|
||||||
|
"Primary": "#FF0000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Shadow Guardian": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#8B0000",
|
||||||
|
"Button": "#1A0000",
|
||||||
|
"Background": "#0A0000",
|
||||||
|
"Text": "#D3D3D3",
|
||||||
|
"AltText": "#B22222"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/shadowguard.png",
|
||||||
|
"Primary": "#8B0000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"VOX": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#C0C0C0",
|
||||||
|
"Button": "#1C1C1C",
|
||||||
|
"Background": "#424242",
|
||||||
|
"Text": "#FFD700",
|
||||||
|
"AltText": "#817E79"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/VOX.png",
|
||||||
|
"Primary": "#FFD700"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Zap": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#FFD700",
|
||||||
|
"Button": "#1A1A1A",
|
||||||
|
"Background": "#0A0A0A",
|
||||||
|
"Text": "#FFFFFF",
|
||||||
|
"AltText": "#FFA500"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/ZAP.png",
|
||||||
|
"Primary": "#FFD700"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"DMC": {
|
||||||
|
"Colors": {
|
||||||
|
"Accent": "#FF0000",
|
||||||
|
"Button": "#1A0000",
|
||||||
|
"Background": "#0A0000",
|
||||||
|
"Text": "#FFFFFF",
|
||||||
|
"AltText": "#FF3333"
|
||||||
|
},
|
||||||
|
"Logo": {
|
||||||
|
"Path": "/Assets/DMC.png",
|
||||||
|
"Primary": "#FF0000"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue