We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b957aa commit cbe8b53Copy full SHA for cbe8b53
styles/modus-operandi.go
@@ -0,0 +1,20 @@
1
+package styles
2
+
3
+import (
4
+ "github.com/alecthomas/chroma/v2"
5
+)
6
7
+// Modus Operandi (light) style.
8
+var ModusOperandi = Register(chroma.MustNewStyle("modus-operandi", chroma.StyleEntries{
9
+ chroma.Keyword: "#5317ac",
10
+ chroma.KeywordConstant: "#0000c0",
11
+ chroma.KeywordType: "#005a5f",
12
+ chroma.Comment: "#505050",
13
+ chroma.NameVariable: "#00538b",
14
+ chroma.Operator: "#00538b",
15
+ chroma.NameFunction: "#721045",
16
+ chroma.NameBuiltin: "#8f0075",
17
+ chroma.Literal: "#0000c0",
18
+ chroma.String: "#2544bb",
19
+ chroma.Background: "#000000 bg:#ffffff",
20
+}))
0 commit comments