...

Source file src/github.com/alecthomas/chroma/styles/paraiso-dark.go

Documentation: github.com/alecthomas/chroma/styles

     1  package styles
     2  
     3  import (
     4  	"github.com/alecthomas/chroma"
     5  )
     6  
     7  // ParaisoDark style.
     8  var ParaisoDark = Register(chroma.MustNewStyle("paraiso-dark", chroma.StyleEntries{
     9  	chroma.Text:                  "#e7e9db",
    10  	chroma.Error:                 "#ef6155",
    11  	chroma.Comment:               "#776e71",
    12  	chroma.Keyword:               "#815ba4",
    13  	chroma.KeywordNamespace:      "#5bc4bf",
    14  	chroma.KeywordType:           "#fec418",
    15  	chroma.Operator:              "#5bc4bf",
    16  	chroma.Punctuation:           "#e7e9db",
    17  	chroma.Name:                  "#e7e9db",
    18  	chroma.NameAttribute:         "#06b6ef",
    19  	chroma.NameClass:             "#fec418",
    20  	chroma.NameConstant:          "#ef6155",
    21  	chroma.NameDecorator:         "#5bc4bf",
    22  	chroma.NameException:         "#ef6155",
    23  	chroma.NameFunction:          "#06b6ef",
    24  	chroma.NameNamespace:         "#fec418",
    25  	chroma.NameOther:             "#06b6ef",
    26  	chroma.NameTag:               "#5bc4bf",
    27  	chroma.NameVariable:          "#ef6155",
    28  	chroma.LiteralNumber:         "#f99b15",
    29  	chroma.Literal:               "#f99b15",
    30  	chroma.LiteralDate:           "#48b685",
    31  	chroma.LiteralString:         "#48b685",
    32  	chroma.LiteralStringChar:     "#e7e9db",
    33  	chroma.LiteralStringDoc:      "#776e71",
    34  	chroma.LiteralStringEscape:   "#f99b15",
    35  	chroma.LiteralStringInterpol: "#f99b15",
    36  	chroma.GenericDeleted:        "#ef6155",
    37  	chroma.GenericEmph:           "italic",
    38  	chroma.GenericHeading:        "bold #e7e9db",
    39  	chroma.GenericInserted:       "#48b685",
    40  	chroma.GenericPrompt:         "bold #776e71",
    41  	chroma.GenericStrong:         "bold",
    42  	chroma.GenericSubheading:     "bold #5bc4bf",
    43  	chroma.Background:            "bg:#2f1e2e",
    44  }))
    45  

View as plain text