...

Source file src/github.com/alecthomas/chroma/styles/vs.go

Documentation: github.com/alecthomas/chroma/styles

     1  package styles
     2  
     3  import (
     4  	"github.com/alecthomas/chroma"
     5  )
     6  
     7  // VisualStudio style.
     8  var VisualStudio = Register(chroma.MustNewStyle("vs", chroma.StyleEntries{
     9  	chroma.Comment:           "#008000",
    10  	chroma.CommentPreproc:    "#0000ff",
    11  	chroma.Keyword:           "#0000ff",
    12  	chroma.OperatorWord:      "#0000ff",
    13  	chroma.KeywordType:       "#2b91af",
    14  	chroma.NameClass:         "#2b91af",
    15  	chroma.LiteralString:     "#a31515",
    16  	chroma.GenericHeading:    "bold",
    17  	chroma.GenericSubheading: "bold",
    18  	chroma.GenericEmph:       "italic",
    19  	chroma.GenericStrong:     "bold",
    20  	chroma.GenericPrompt:     "bold",
    21  	chroma.Error:             "border:#FF0000",
    22  	chroma.Background:        " bg:#ffffff",
    23  }))
    24  

View as plain text