Skip to content

Commit cbe8b53

Browse files
xjzialecthomas
authored andcommitted
Add Modus Operandi (light) theme
1 parent 5b957aa commit cbe8b53

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

styles/modus-operandi.go

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)