public SelectedTextEntry(FontAndColorDefaultsResultsText parent) : base(parent) { Name = EntryNames.SelectedText; LocalizedName = "Selected Text"; Usage = ColorUsage.Background; DefaultBackground = new[] { new RgbColor(0x00, 0x00, 0x80) }; DefaultForeground = new[] { new RgbColor(0x00, 0x00, 0x00) }; }
public PlainTextEntry(FontAndColorDefaultsResultsText parent) : base(parent) { Name = EntryNames.PlainText; LocalizedName = "Plain Text"; Usage = ColorUsage.Background | ColorUsage.Foreground; DefaultBackground = new[] { new RgbColor(0xFF, 0xFF, 0xFF) }; DefaultForeground = new[] { new RgbColor(0x00, 0x00, 0x00) }; }