From 5b957aac0ae12a1edfcbf604afce3be666ada1a8 Mon Sep 17 00:00:00 2001 From: xjzi Date: Sat, 27 Aug 2022 14:45:00 -0400 Subject: [PATCH] Add Modus Vivendi (dark) theme --- styles/modus-vivendi.go | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 styles/modus-vivendi.go diff --git a/styles/modus-vivendi.go b/styles/modus-vivendi.go new file mode 100644 index 000000000..7223a7e93 --- /dev/null +++ b/styles/modus-vivendi.go @@ -0,0 +1,20 @@ +package styles + +import ( + "github.com/alecthomas/chroma/v2" +) + +// Modus Vivendi (dark) style. +var ModusVivendi = Register(chroma.MustNewStyle("modus-vivendi", chroma.StyleEntries{ + chroma.Keyword: "#b6a0ff", + chroma.KeywordConstant: "#00bcff", + chroma.KeywordType: "#6ae4b9", + chroma.Comment: "#a8a8a8", + chroma.NameVariable: "#00d3d0", + chroma.Operator: "#00d3d0", + chroma.NameFunction: "#feacd0", + chroma.NameBuiltin: "#f78fe7", + chroma.Literal: "#00bcff", + chroma.String: "#79a8ff", + chroma.Background: "#ffffff bg:#000000", +}))