...

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

Documentation: github.com/alecthomas/chroma/styles

     1  package styles
     2  
     3  import (
     4  	"github.com/alecthomas/chroma"
     5  )
     6  
     7  // Igor style.
     8  var Igor = Register(chroma.MustNewStyle("igor", chroma.StyleEntries{
     9  	chroma.Comment:       "italic #FF0000",
    10  	chroma.Keyword:       "#0000FF",
    11  	chroma.NameFunction:  "#C34E00",
    12  	chroma.NameDecorator: "#CC00A3",
    13  	chroma.NameClass:     "#007575",
    14  	chroma.LiteralString: "#009C00",
    15  	chroma.Background:    " bg:#ffffff",
    16  }))
    17  

View as plain text