...

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

Documentation: github.com/alecthomas/chroma/styles

     1  package styles
     2  
     3  import (
     4  	"github.com/alecthomas/chroma"
     5  )
     6  
     7  // Theme based on HackerRank High Contrast Editor Theme
     8  var HrHighContrast = Register(chroma.MustNewStyle("hr_high_contrast", chroma.StyleEntries{
     9  	chroma.Comment:              "#5a8349",
    10  	chroma.Keyword:              "#467faf",
    11  	chroma.OperatorWord:         "#467faf",
    12  	chroma.Name:                 "#ffffff",
    13  	chroma.LiteralString:        "#a87662",
    14  	chroma.LiteralNumber:        "#fff",
    15  	chroma.LiteralStringBoolean: "#467faf",
    16  	chroma.Operator:             "#e4e400",
    17  	chroma.Background:           "#000",
    18  	chroma.Other:                "#d5d500",
    19  }))
    20  

View as plain text