aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/alecthomas/chroma/v2/styles/bw.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/alecthomas/chroma/v2/styles/bw.go')
-rw-r--r--vendor/github.com/alecthomas/chroma/v2/styles/bw.go30
1 files changed, 30 insertions, 0 deletions
diff --git a/vendor/github.com/alecthomas/chroma/v2/styles/bw.go b/vendor/github.com/alecthomas/chroma/v2/styles/bw.go
new file mode 100644
index 0000000..2f41f20
--- /dev/null
+++ b/vendor/github.com/alecthomas/chroma/v2/styles/bw.go
@@ -0,0 +1,30 @@
1package styles
2
3import (
4 "github.com/alecthomas/chroma/v2"
5)
6
7// BlackWhite style.
8var BlackWhite = Register(chroma.MustNewStyle("bw", chroma.StyleEntries{
9 chroma.Comment: "italic",
10 chroma.CommentPreproc: "noitalic",
11 chroma.Keyword: "bold",
12 chroma.KeywordPseudo: "nobold",
13 chroma.KeywordType: "nobold",
14 chroma.OperatorWord: "bold",
15 chroma.NameClass: "bold",
16 chroma.NameNamespace: "bold",
17 chroma.NameException: "bold",
18 chroma.NameEntity: "bold",
19 chroma.NameTag: "bold",
20 chroma.LiteralString: "italic",
21 chroma.LiteralStringInterpol: "bold",
22 chroma.LiteralStringEscape: "bold",
23 chroma.GenericHeading: "bold",
24 chroma.GenericSubheading: "bold",
25 chroma.GenericEmph: "italic",
26 chroma.GenericStrong: "bold",
27 chroma.GenericPrompt: "bold",
28 chroma.Error: "border:#FF0000",
29 chroma.Background: " bg:#ffffff",
30}))