* testing code highlight with bfchroma render * add bfchroma vendoring * render code htm with classes * adjust bfchroma test cases inside formatter * go mod tidy * fix markdown code render tests * adjust comment text sanitizer to permit code HTML classes * go mod tidy * add chroma classes list regexp * unify gitignore entries style Co-authored-by: Umputun <umputun@gmail.com>
26 lines
843 B
Go
26 lines
843 B
Go
package styles
|
|
|
|
import (
|
|
"github.com/alecthomas/chroma"
|
|
)
|
|
|
|
// SwapOff theme.
|
|
var SwapOff = Register(chroma.MustNewStyle("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.NameKeyword: "bold #ansiwhite",
|
|
chroma.NameBuiltin: "bold #ansiwhite",
|
|
chroma.GenericHeading: "bold",
|
|
chroma.GenericSubheading: "bold",
|
|
chroma.GenericStrong: "bold",
|
|
chroma.GenericUnderline: "underline",
|
|
chroma.NameTag: "bold",
|
|
chroma.NameAttribute: "#ansiteal",
|
|
chroma.Error: "#ansired",
|
|
chroma.LiteralDate: "bold #ansiyellow",
|
|
}))
|