using System; using System.Collections.Generic; namespace StardewModdingAPI.Internal.ConsoleWriting { /// The console color scheme options. internal class ColorSchemeConfig { /// The default color scheme ID to use, or to select one automatically. public MonitorColorScheme UseScheme { get; set; } /// The available console color schemes. public IDictionary> Schemes { get; set; } } }