diff --git a/EliteBGS/Util/AppConfig.cs b/EliteBGS/Util/AppConfig.cs index 9b5348c..96a3231 100644 --- a/EliteBGS/Util/AppConfig.cs +++ b/EliteBGS/Util/AppConfig.cs @@ -1,11 +1,11 @@ -using System.ComponentModel; +using Newtonsoft.Json; namespace EliteBGS.Util { public class AppConfig { private static readonly string default_journal_location = "%UserProfile%\\Saved Games\\Frontier Developments\\Elite Dangerous"; private string journal_location = default_journal_location; public string DefaultJournalLocation => default_journal_location; - private string colour = "Blue"; + private string colour = "Amber"; private string theme = "Dark"; public string LastUsedDiscordTemplate { get; set; } @@ -48,6 +48,7 @@ namespace EliteBGS.Util { } } + [JsonIgnore] public string FullTheme { get { return Theme + "." + Colour; } }