public FSharpValueTypeFormat(ClassificationColorManager colorManager)
 {
     this.DisplayName = "F# Value Types";
     this.ForegroundColor = colorManager.GetDefaultColor(ClassificationTypes.FSharpValueType);
 }
 public FSharpMutableVarFormat(ClassificationColorManager colorManager)
 {
     this.DisplayName = "F# Mutable Variables / Reference Cells";
     this.ForegroundColor = colorManager.GetDefaultColor(ClassificationTypes.FSharpMutableVar);
 }
 public FSharpPatternCaseFormat(ClassificationColorManager colorManager)
 {
     this.DisplayName = "F# Patterns";
     this.ForegroundColor = colorManager.GetDefaultColor(ClassificationTypes.FSharpPatternCase);
 }
 public FSharpFunctionFormat(ClassificationColorManager colorManager)
 {
     this.DisplayName = "F# Functions / Methods";
     this.ForegroundColor = colorManager.GetDefaultColor(ClassificationTypes.FSharpFunction);
 }