mirror of
https://github.com/alecthomas/chroma.git
synced 2026-05-22 10:15:46 +02:00
21 lines
593 B
Go
21 lines
593 B
Go
package styles
|
|
|
|
import (
|
|
"github.com/alecthomas/chroma"
|
|
)
|
|
|
|
// SwapOff theme.
|
|
var SwapOff = Register(New("swapoff", map[chroma.TokenType]string{
|
|
chroma.Number: "bold #ansiyellow",
|
|
chroma.Comment: "#ansiteal",
|
|
chroma.CommentPreproc: "bold #ansigreen",
|
|
chroma.String: "bold #ansiteal",
|
|
chroma.Keyword: "bold #ansiwhite",
|
|
chroma.GenericHeading: "bold",
|
|
chroma.GenericSubheading: "bold",
|
|
chroma.GenericStrong: "bold",
|
|
chroma.GenericUnderline: "underline",
|
|
chroma.NameTag: "bold",
|
|
chroma.NameAttribute: "#ansiteal",
|
|
}))
|