...

Source file src/github.com/alecthomas/chroma/styles/hr_dark.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 Dark Editor theme
     8  var HrDark = Register(chroma.MustNewStyle("hrdark", chroma.StyleEntries{
     9  	chroma.Comment:      "italic #828b96",
    10  	chroma.Keyword:      "#ff636f",
    11  	chroma.OperatorWord: "#ff636f",
    12  	chroma.Name:         "#58a1dd",
    13  	chroma.Literal:      "#a6be9d",
    14  	chroma.Operator:     "#ff636f",
    15  	chroma.Background:   "#1d2432",
    16  	chroma.Other:        "#fff",
    17  }))
    18  

View as plain text