2017-07-19 23:51:16 -07:00
|
|
|
package styles
|
|
|
|
|
|
|
|
import (
|
2017-09-26 22:05:44 +10:00
|
|
|
"github.com/alecthomas/chroma"
|
2017-07-19 23:51:16 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
// Abap style.
|
2017-09-21 12:52:08 +10:00
|
|
|
var Abap = Register(chroma.MustNewStyle("abap", chroma.StyleEntries{
|
2017-09-26 22:05:44 +10:00
|
|
|
chroma.Comment: "italic #888",
|
|
|
|
chroma.CommentSpecial: "#888",
|
|
|
|
chroma.Keyword: "#00f",
|
|
|
|
chroma.OperatorWord: "#00f",
|
|
|
|
chroma.Name: "#000",
|
|
|
|
chroma.LiteralNumber: "#3af",
|
|
|
|
chroma.LiteralString: "#5a2",
|
|
|
|
chroma.Error: "#F00",
|
|
|
|
chroma.Background: " bg:#ffffff",
|
2017-07-19 23:51:16 -07:00
|
|
|
}))
|