...

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

Documentation: github.com/alecthomas/chroma/styles

     1  package styles
     2  
     3  import (
     4  	"github.com/alecthomas/chroma"
     5  )
     6  
     7  // SwapOff theme.
     8  var SwapOff = Register(chroma.MustNewStyle("swapoff", chroma.StyleEntries{
     9  	chroma.Background:        "#lightgray bg:#black",
    10  	chroma.Number:            "bold #ansiyellow",
    11  	chroma.Comment:           "#ansiteal",
    12  	chroma.CommentPreproc:    "bold #ansigreen",
    13  	chroma.String:            "bold #ansiturquoise",
    14  	chroma.Keyword:           "bold #ansiwhite",
    15  	chroma.NameKeyword:       "bold #ansiwhite",
    16  	chroma.NameBuiltin:       "bold #ansiwhite",
    17  	chroma.GenericHeading:    "bold",
    18  	chroma.GenericSubheading: "bold",
    19  	chroma.GenericStrong:     "bold",
    20  	chroma.GenericUnderline:  "underline",
    21  	chroma.NameTag:           "bold",
    22  	chroma.NameAttribute:     "#ansiteal",
    23  	chroma.Error:             "#ansired",
    24  	chroma.LiteralDate:       "bold #ansiyellow",
    25  }))
    26  

View as plain text