Mercurial > yakumo_izuru > aya
view vendor/github.com/alecthomas/chroma/v2/styles/abap.go @ 66:787b5ee0289d draft
Use vendored modules
Signed-off-by: Izuru Yakumo <yakumo.izuru@chaotic.ninja>
author | yakumo.izuru |
---|---|
date | Sun, 23 Jul 2023 13:18:53 +0000 |
parents | |
children |
line wrap: on
line source
package styles import ( "github.com/alecthomas/chroma/v2" ) // Abap style. var Abap = Register(chroma.MustNewStyle("abap", chroma.StyleEntries{ 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", }))