summaryrefslogtreecommitdiff
path: root/vendor/github.com/alecthomas/chroma/v2/styles/average.go
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2024-10-25 00:47:47 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2024-10-25 00:47:47 +0200
commitc6cc0108ca7738023b45e0eeac0fa2390532dd93 (patch)
tree36890e6cd3091bbab8efbe686cc56f467f645bfd /vendor/github.com/alecthomas/chroma/v2/styles/average.go
parent0130404a1dc663d4aa68d780c9bcb23a4243e68d (diff)
downloadjbmafp-master.tar.gz
Added vendor lock on depsHEADmaster
Diffstat (limited to 'vendor/github.com/alecthomas/chroma/v2/styles/average.go')
-rw-r--r--vendor/github.com/alecthomas/chroma/v2/styles/average.go81
1 files changed, 81 insertions, 0 deletions
diff --git a/vendor/github.com/alecthomas/chroma/v2/styles/average.go b/vendor/github.com/alecthomas/chroma/v2/styles/average.go
new file mode 100644
index 0000000..b1276e2
--- /dev/null
+++ b/vendor/github.com/alecthomas/chroma/v2/styles/average.go
@@ -0,0 +1,81 @@
+package styles
+
+import (
+ "github.com/alecthomas/chroma/v2"
+)
+
+// Average style.
+var Average = Register(chroma.MustNewStyle("average", chroma.StyleEntries{
+ chroma.Comment: "#757575",
+ chroma.CommentHashbang: "#757575",
+ chroma.CommentMultiline: "#757575",
+ chroma.CommentPreproc: "#757575",
+ chroma.CommentSingle: "#757575",
+ chroma.CommentSpecial: "#757575",
+ chroma.Generic: "#757575",
+ chroma.GenericDeleted: "#ec0000",
+ chroma.GenericEmph: "#757575 underline",
+ chroma.GenericError: "#ec0000",
+ chroma.GenericHeading: "#757575 bold",
+ chroma.GenericInserted: "#757575 bold",
+ chroma.GenericOutput: "#757575",
+ chroma.GenericPrompt: "#757575",
+ chroma.GenericStrong: "#757575 italic",
+ chroma.GenericSubheading: "#757575 bold",
+ chroma.GenericTraceback: "#757575",
+ chroma.GenericUnderline: "underline",
+ chroma.Error: "#ec0000",
+ chroma.Keyword: "#ec0000",
+ chroma.KeywordConstant: "#ec0000",
+ chroma.KeywordDeclaration: "#ec0000",
+ chroma.KeywordNamespace: "#ec0000",
+ chroma.KeywordPseudo: "#ec0000",
+ chroma.KeywordReserved: "#ec0000",
+ chroma.KeywordType: "#5f5fff",
+ chroma.Literal: "#757575",
+ chroma.LiteralDate: "#757575",
+ chroma.Name: "#757575",
+ chroma.NameAttribute: "#5f5fff",
+ chroma.NameBuiltin: "#ec0000",
+ chroma.NameBuiltinPseudo: "#757575",
+ chroma.NameClass: "#5f5fff",
+ chroma.NameConstant: "#008900",
+ chroma.NameDecorator: "#008900",
+ chroma.NameEntity: "#757575",
+ chroma.NameException: "#757575",
+ chroma.NameFunction: "#5f5fff",
+ chroma.NameLabel: "#ec0000",
+ chroma.NameNamespace: "#757575",
+ chroma.NameOther: "#757575",
+ chroma.NameTag: "#ec0000",
+ chroma.NameVariable: "#ec0000",
+ chroma.NameVariableClass: "#ec0000",
+ chroma.NameVariableGlobal: "#ec0000",
+ chroma.NameVariableInstance: "#ec0000",
+ chroma.LiteralNumber: "#008900",
+ chroma.LiteralNumberBin: "#008900",
+ chroma.LiteralNumberFloat: "#008900",
+ chroma.LiteralNumberHex: "#008900",
+ chroma.LiteralNumberInteger: "#008900",
+ chroma.LiteralNumberIntegerLong: "#008900",
+ chroma.LiteralNumberOct: "#008900",
+ chroma.Operator: "#ec0000",
+ chroma.OperatorWord: "#ec0000",
+ chroma.Other: "#757575",
+ chroma.Punctuation: "#757575",
+ chroma.LiteralString: "#008900",
+ chroma.LiteralStringBacktick: "#008900",
+ chroma.LiteralStringChar: "#008900",
+ chroma.LiteralStringDoc: "#008900",
+ chroma.LiteralStringDouble: "#008900",
+ chroma.LiteralStringEscape: "#008900",
+ chroma.LiteralStringHeredoc: "#008900",
+ chroma.LiteralStringInterpol: "#008900",
+ chroma.LiteralStringOther: "#008900",
+ chroma.LiteralStringRegex: "#008900",
+ chroma.LiteralStringSingle: "#008900",
+ chroma.LiteralStringSymbol: "#008900",
+ chroma.Text: "#757575",
+ chroma.TextWhitespace: "#757575",
+ chroma.Background: " bg:#000000",
+}))