public FSharpReferenceTypeFormat(ClassificationColorManager colorManager)
            {
                this.DisplayName = "F# Types";
                var colors = colorManager.GetDefaultColors(ClassificationTypes.FSharpReferenceType);

                this.ForegroundColor = colors.Foreground;
                this.BackgroundColor = colors.Background;
            }
            public FSharpPatternCaseFormat(ClassificationColorManager colorManager)
            {
                this.DisplayName = "F# Patterns";
                var colors = colorManager.GetDefaultColors(ClassificationTypes.FSharpPatternCase);

                this.ForegroundColor = colors.Foreground;
                this.BackgroundColor = colors.Background;
            }
コード例 #3
0
            public FSharpOperatorFormat(ClassificationColorManager colorManager)
            {
                this.DisplayName = "F# Operators";
                var colors = colorManager.GetDefaultColors(ClassificationTypes.FSharpOperator);

                this.ForegroundColor = colors.Foreground;
                this.BackgroundColor = colors.Background;
            }
コード例 #4
0
            public FSharpEscapedFormat(ClassificationColorManager colorManager)
            {
                this.DisplayName = "F# Escaped Characters";
                var colors = colorManager.GetDefaultColors(ClassificationTypes.FSharpEscaped);

                this.ForegroundColor = colors.Foreground;
                this.BackgroundColor = colors.Background;
            }
コード例 #5
0
            public FSharpUnusedFormat(ClassificationColorManager colorManager)
            {
                this.DisplayName = "F# Unused Declarations";
                var colors = colorManager.GetDefaultColors(ClassificationTypes.FSharpUnused);

                this.ForegroundColor = colors.Foreground;
                this.BackgroundColor = colors.Background;
            }
コード例 #6
0
            public FSharpMutableVarFormat(ClassificationColorManager colorManager)
            {
                this.DisplayName = "F# Mutable Variables / Reference Cells";
                var colors = colorManager.GetDefaultColors(ClassificationTypes.FSharpMutableVar);

                this.ForegroundColor = colors.Foreground;
                this.BackgroundColor = colors.Background;
            }
コード例 #7
0
            public FSharpFunctionFormat(ClassificationColorManager colorManager)
            {
                this.DisplayName = "F# Functions / Methods";
                var colors = colorManager.GetDefaultColors(ClassificationTypes.FSharpFunction);

                this.ForegroundColor = colors.Foreground;
                this.BackgroundColor = colors.Background;
            }
コード例 #8
0
            public FSharpQuotationFormat(ClassificationColorManager colorManager)
            {
                DisplayName = "F# Quotations";
                var colors = colorManager.GetDefaultColors(ClassificationTypes.FSharpQuotation);

                ForegroundColor        = colors.Foreground;
                BackgroundColor        = colors.Background;
                ForegroundCustomizable = false;
            }
コード例 #9
0
 public FSharpValueTypeFormat(ClassificationColorManager colorManager)
 {
     this.DisplayName = "F# Value Types";
     var colors = colorManager.GetDefaultColors(ClassificationTypes.FSharpValueType);
     this.ForegroundColor = colors.Foreground;
     this.BackgroundColor = colors.Background;
 }
コード例 #10
0
 public FSharpQuotationFormat(ClassificationColorManager colorManager)
 {
     this.DisplayName = "F# Quotations";
     var colors = colorManager.GetDefaultColors(ClassificationTypes.FSharpQuotation);
     this.ForegroundColor = colors.Foreground;
     this.BackgroundColor = colors.Background;
     this.ForegroundCustomizable = false;
 }
コード例 #11
0
 public FSharpMutableVarFormat(ClassificationColorManager colorManager)
 {
     this.DisplayName = "F# Mutable Variables / Reference Cells";
     var colors = colorManager.GetDefaultColors(ClassificationTypes.FSharpMutableVar);
     this.ForegroundColor = colors.Foreground;
     this.BackgroundColor = colors.Background;
 }
コード例 #12
0
 public FSharpFunctionFormat(ClassificationColorManager colorManager)
 {
     this.DisplayName = "F# Functions / Methods";
     var colors = colorManager.GetDefaultColors(ClassificationTypes.FSharpFunction);
     this.ForegroundColor = colors.Foreground;
     this.BackgroundColor = colors.Background;
 }
 public FSharpUnusedFormat(ClassificationColorManager colorManager)
 {
     this.DisplayName = "F# Unused Declarations";
     var colors = colorManager.GetDefaultColors(ClassificationTypes.FSharpUnused);
     this.ForegroundColor = colors.Foreground;
     this.BackgroundColor = colors.Background;
 }
 public FSharpEscapedFormat(ClassificationColorManager colorManager)
 {
     this.DisplayName = "F# Escaped Characters";
      var colors = colorManager.GetDefaultColors(ClassificationTypes.FSharpEscaped);
      this.ForegroundColor = colors.Foreground;
      this.BackgroundColor = colors.Background;
 }