use brighter colour

This commit is contained in:
Florian Stinglmayr 2023-02-23 20:57:28 +01:00
parent 53bf0d22b8
commit 637b4f85d0

View File

@ -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; }
}