1
0
mirror of https://github.com/alecthomas/chroma.git synced 2025-02-21 19:06:18 +02:00
chroma/styles/swapoff.go
2017-09-18 19:29:14 +10:00

24 lines
735 B
Go

package styles
import (
"github.com/alecthomas/chroma"
)
// SwapOff theme.
var SwapOff = Register(chroma.NewStyle("swapoff", map[chroma.TokenType]string{
chroma.Background: "#lightgray bg:#black",
chroma.Number: "bold #ansiyellow",
chroma.Comment: "#ansiteal",
chroma.CommentPreproc: "bold #ansigreen",
chroma.String: "bold #ansiturquoise",
chroma.Keyword: "bold #ansiwhite",
chroma.GenericHeading: "bold",
chroma.GenericSubheading: "bold",
chroma.GenericStrong: "bold",
chroma.GenericUnderline: "underline",
chroma.NameTag: "bold",
chroma.NameAttribute: "#ansiteal",
chroma.NameVariable: "bold",
chroma.Error: "#ansired",
}))