aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/alecthomas/chroma/v2/styles/rrt.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/alecthomas/chroma/v2/styles/rrt.go')
-rw-r--r--vendor/github.com/alecthomas/chroma/v2/styles/rrt.go20
1 files changed, 20 insertions, 0 deletions
diff --git a/vendor/github.com/alecthomas/chroma/v2/styles/rrt.go b/vendor/github.com/alecthomas/chroma/v2/styles/rrt.go
new file mode 100644
index 0000000..6eda8c4
--- /dev/null
+++ b/vendor/github.com/alecthomas/chroma/v2/styles/rrt.go
@@ -0,0 +1,20 @@
1package styles
2
3import (
4 "github.com/alecthomas/chroma/v2"
5)
6
7// Rrt style.
8var Rrt = Register(chroma.MustNewStyle("rrt", chroma.StyleEntries{
9 chroma.CommentPreproc: "#e5e5e5",
10 chroma.Comment: "#00ff00",
11 chroma.KeywordType: "#ee82ee",
12 chroma.Keyword: "#ff0000",
13 chroma.LiteralNumber: "#ff6600",
14 chroma.LiteralStringSymbol: "#ff6600",
15 chroma.LiteralString: "#87ceeb",
16 chroma.NameFunction: "#ffff00",
17 chroma.NameConstant: "#7fffd4",
18 chroma.NameVariable: "#eedd82",
19 chroma.Background: "#f8f8f2 bg:#000000",
20}))