aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/alecthomas/chroma/v2/styles/swapoff.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/alecthomas/chroma/v2/styles/swapoff.go')
-rw-r--r--vendor/github.com/alecthomas/chroma/v2/styles/swapoff.go25
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/github.com/alecthomas/chroma/v2/styles/swapoff.go b/vendor/github.com/alecthomas/chroma/v2/styles/swapoff.go
new file mode 100644
index 0000000..0cf7135
--- /dev/null
+++ b/vendor/github.com/alecthomas/chroma/v2/styles/swapoff.go
@@ -0,0 +1,25 @@
1package styles
2
3import (
4 "github.com/alecthomas/chroma/v2"
5)
6
7// SwapOff theme.
8var SwapOff = Register(chroma.MustNewStyle("swapoff", chroma.StyleEntries{
9 chroma.Background: "#lightgray bg:#black",
10 chroma.Number: "bold #ansiyellow",
11 chroma.Comment: "#ansiteal",
12 chroma.CommentPreproc: "bold #ansigreen",
13 chroma.String: "bold #ansiturquoise",
14 chroma.Keyword: "bold #ansiwhite",
15 chroma.NameKeyword: "bold #ansiwhite",
16 chroma.NameBuiltin: "bold #ansiwhite",
17 chroma.GenericHeading: "bold",
18 chroma.GenericSubheading: "bold",
19 chroma.GenericStrong: "bold",
20 chroma.GenericUnderline: "underline",
21 chroma.NameTag: "bold",
22 chroma.NameAttribute: "#ansiteal",
23 chroma.Error: "#ansired",
24 chroma.LiteralDate: "bold #ansiyellow",
25}))