aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/alecthomas/chroma/v2/styles/abap.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/alecthomas/chroma/v2/styles/abap.go')
-rw-r--r--vendor/github.com/alecthomas/chroma/v2/styles/abap.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/vendor/github.com/alecthomas/chroma/v2/styles/abap.go b/vendor/github.com/alecthomas/chroma/v2/styles/abap.go
new file mode 100644
index 0000000..2807dc7
--- /dev/null
+++ b/vendor/github.com/alecthomas/chroma/v2/styles/abap.go
@@ -0,0 +1,18 @@
1package styles
2
3import (
4 "github.com/alecthomas/chroma/v2"
5)
6
7// Abap style.
8var 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}))