From 637b4f85d0c7fdad3ec8df89b656f79201ccc482 Mon Sep 17 00:00:00 2001 From: Florian Stinglmayr Date: Thu, 23 Feb 2023 20:57:28 +0100 Subject: [PATCH] use brighter colour --- EliteBGS/Util/AppConfig.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; } }