예제 #1
0
 public CaptureNodeHeaderEntry(FontAndColorDefaultsResultsTree parent) : base(parent)
 {
     Name              = EntryNames.CaptureNodeHeader;
     LocalizedName     = "Capture node";
     Usage             = ColorUsage.Foreground;
     DefaultBackground = new VsColor[] { new ThemeColor(TreeColors.DocumentBackgroundBrushKey), new RgbColor(0xFF, 0xFF, 0xFF) };
     DefaultForeground = new VsColor[] { new RgbColor(0x00, 0x80, 0x00) };
 }
예제 #2
0
 public DocumentEntry(FontAndColorDefaultsResultsTree parent) : base(parent)
 {
     Name              = EntryNames.Document;
     LocalizedName     = "Document";
     Usage             = ColorUsage.Background | ColorUsage.Foreground;
     DefaultBackground = new[] { new RgbColor(0xFF, 0xFF, 0xFF) };
     DefaultForeground = new[] { new RgbColor(0x00, 0x00, 0x00) };
 }
예제 #3
0
 public InactiveSelectionEntry(FontAndColorDefaultsResultsTree parent) : base(parent)
 {
     Name              = EntryNames.InactiveSelection;
     LocalizedName     = "Inactive selection";
     Usage             = ColorUsage.Background | ColorUsage.Foreground;
     DefaultBackground = new[] { new RgbColor(0xC0, 0xC0, 0xFF) };
     DefaultForeground = new[] { new RgbColor(0x00, 0x00, 0x00) };
 }
예제 #4
0
 public FailureMarkerEntry(FontAndColorDefaultsResultsTree parent) : base(parent)
 {
     Name              = EntryNames.FailureMarker;
     LocalizedName     = "Failure marker";
     Usage             = ColorUsage.Foreground;
     DefaultBackground = new VsColor[] { new ThemeColor(TreeColors.DocumentBackgroundBrushKey), new RgbColor(0xFF, 0xFF, 0xFF) };
     DefaultForeground = new VsColor[] { new RgbColor(0xFF, 0x40, 0x40) };
 }