using System.Text.Json; using static Terminal.Gui.Configuration.ConfigurationManager; namespace UnitTests.ConfigurationTests; /// /// Tests Settings["Theme"] and ThemeManager.Theme /// public class ThemeTests { public static readonly JsonSerializerOptions _jsonOptions = new () { Converters = { new AttributeJsonConverter (), new ColorJsonConverter () } }; }