Skip to content

Commit

Permalink
Add Modus Operandi (light) theme
Browse files Browse the repository at this point in the history
  • Loading branch information
xjzi authored and alecthomas committed Oct 5, 2022
1 parent 5b957aa commit cbe8b53
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions styles/modus-operandi.go
@@ -0,0 +1,20 @@
package styles

import (
"github.com/alecthomas/chroma/v2"
)

// Modus Operandi (light) style.
var ModusOperandi = Register(chroma.MustNewStyle("modus-operandi", chroma.StyleEntries{
chroma.Keyword: "#5317ac",
chroma.KeywordConstant: "#0000c0",
chroma.KeywordType: "#005a5f",
chroma.Comment: "#505050",
chroma.NameVariable: "#00538b",
chroma.Operator: "#00538b",
chroma.NameFunction: "#721045",
chroma.NameBuiltin: "#8f0075",
chroma.Literal: "#0000c0",
chroma.String: "#2544bb",
chroma.Background: "#000000 bg:#ffffff",
}))

0 comments on commit cbe8b53

Please sign in to comment.