Compare commits

..

No commits in common. "75eec20237e4d8545ee97393f7d707c37e8e6432" and "dd7e229db36cee264df140698ee9940429fea90c" have entirely different histories.

2 changed files with 21 additions and 21 deletions

View File

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

View File

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