Compare commits

..

2 Commits

Author SHA1 Message Date
Greg Tseng
75eec20237 updated the url of the server to pull the server_profiles.json from assets 2025-03-03 18:38:58 -05:00
Greg Tseng
21ffc7a454 reskinned it a bit for some fun 2025-03-03 18:30:07 -05:00
2 changed files with 21 additions and 21 deletions

View File

@ -2,38 +2,38 @@
xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Application.Resources>
<Color x:Key="DarkBackgroundColor">#3E3529</Color>
<Color x:Key="DarkTranslucentBackgroundColor">#CC3E3529</Color>
<Color x:Key="DarkForegroundColor">#3E3529</Color>
<Color x:Key="DarkBorderColor">#3E3529</Color>
<Color x:Key="DarkBackgroundColor">#000000</Color>
<Color x:Key="DarkTranslucentBackgroundColor">#CC000000</Color>
<Color x:Key="DarkForegroundColor">#000000</Color>
<Color x:Key="DarkBorderColor">#000000</Color>
<Color x:Key="SemiDarkBackgroundColor">#4F463A</Color>
<Color x:Key="SemiDarkForegroundColor">#4F463A</Color>
<Color x:Key="SemiDarkBorderColor">#4F463A</Color>
<Color x:Key="SemiDarkBackgroundColor">#080808</Color>
<Color x:Key="SemiDarkForegroundColor">#080808</Color>
<Color x:Key="SemiDarkBorderColor">#080808</Color>
<Color x:Key="DarkMediumBackgroundColor">#6F5D45</Color>
<Color x:Key="DarkMediumForegroundColor">#6F5D45</Color>
<Color x:Key="DarkMediumBorderColor">#6F5D45</Color>
<Color x:Key="DarkMediumBackgroundColor">#AAAAAA</Color>
<Color x:Key="DarkMediumForegroundColor">#AAAAAA</Color>
<Color x:Key="DarkMediumBorderColor">#AAAAAA</Color>
<Color x:Key="SemiLightMediumBackgroundColor">#7F6D55</Color>
<Color x:Key="SemiLightMediumForegroundColor">#7F6D55</Color>
<Color x:Key="SemiLightMediumBorderColor">#7F6D55</Color>
<Color x:Key="SemiLightMediumBackgroundColor">#555555</Color>
<Color x:Key="SemiLightMediumForegroundColor">#555555</Color>
<Color x:Key="SemiLightMediumBorderColor">#555555</Color>
<Color x:Key="LightMediumBackgroundColor">#8F7D65</Color>
<Color x:Key="LightMediumForegroundColor">#8F7D65</Color>
<Color x:Key="LightMediumBackgroundColor">#666666</Color>
<Color x:Key="LightMediumForegroundColor">#666666</Color>
<Color x:Key="MediumBackgroundColor">#998468</Color>
<Color x:Key="MediumForegroundColor">#998468</Color>
<Color x:Key="MediumBackgroundColor">#999999</Color>
<Color x:Key="MediumForegroundColor">#999999</Color>
<Color x:Key="WindowBackgroundColor">#A1855C</Color>
<Color x:Key="WindowBackgroundColor">#333333</Color>
<Color x:Key="LightForegroundColor">#F0F0F0</Color>
<Color x:Key="LightBackgroundColor">#F0F0F0</Color>
<Color x:Key="MouseOverColor">#FFFFFF</Color>
<Color x:Key="AccentColor">#F2C954</Color>
<Color x:Key="DarkAccentColor">#B28914</Color>
<Color x:Key="AccentColor">#FF0000</Color>
<Color x:Key="DarkAccentColor">#808080</Color>
<SolidColorBrush x:Key="DarkBackgroundBrush"
Color="{StaticResource DarkBackgroundColor}" />

View File

@ -11,7 +11,7 @@ namespace Saradomin.Infrastructure.Services
public class RemoteConfigService : IRemoteConfigService
{
private const string ServerProfilesURL =
"https://emoscape.org/server_profiles.json";
"https://assets.emoscape.org/server_profiles.json";
public ObservableCollection<ServerProfile> AvailableProfiles { get; private set; } = new();