1 package styles 2 3 import ( 4 "github.com/alecthomas/chroma" 5 ) 6 7 // Abap style. 8 var Abap = Register(chroma.MustNewStyle("abap", chroma.StyleEntries{ 9 chroma.Comment: "italic #888", 10 chroma.CommentSpecial: "#888", 11 chroma.Keyword: "#00f", 12 chroma.OperatorWord: "#00f", 13 chroma.Name: "#000", 14 chroma.LiteralNumber: "#3af", 15 chroma.LiteralString: "#5a2", 16 chroma.Error: "#F00", 17 chroma.Background: " bg:#ffffff", 18 })) 19