diff vendor/github.com/alecthomas/chroma/v2/styles/igor.go @ 66:787b5ee0289d draft

Use vendored modules Signed-off-by: Izuru Yakumo <yakumo.izuru@chaotic.ninja>
author yakumo.izuru
date Sun, 23 Jul 2023 13:18:53 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/vendor/github.com/alecthomas/chroma/v2/styles/igor.go	Sun Jul 23 13:18:53 2023 +0000
@@ -0,0 +1,16 @@
+package styles
+
+import (
+	"github.com/alecthomas/chroma/v2"
+)
+
+// Igor style.
+var Igor = Register(chroma.MustNewStyle("igor", chroma.StyleEntries{
+	chroma.Comment:       "italic #FF0000",
+	chroma.Keyword:       "#0000FF",
+	chroma.NameFunction:  "#C34E00",
+	chroma.NameDecorator: "#CC00A3",
+	chroma.NameClass:     "#007575",
+	chroma.LiteralString: "#009C00",
+	chroma.Background:    " bg:#ffffff",
+}))