diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/vendor/github.com/alecthomas/chroma/v2/styles/abap.go	Sun Jul 23 13:18:53 2023 +0000
@@ -0,0 +1,18 @@
+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",
+}))