From cbe8b53db704bd5990fd56223880c3f5eb160741 Mon Sep 17 00:00:00 2001 From: xjzi Date: Sun, 28 Aug 2022 16:40:30 -0400 Subject: [PATCH] Add Modus Operandi (light) theme --- styles/modus-operandi.go | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 styles/modus-operandi.go diff --git a/styles/modus-operandi.go b/styles/modus-operandi.go new file mode 100644 index 000000000..69d02c186 --- /dev/null +++ b/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", +}))