diff vendor/github.com/alecthomas/chroma/v2/styles/swapoff.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/swapoff.go	Sun Jul 23 13:18:53 2023 +0000
@@ -0,0 +1,25 @@
+package styles
+
+import (
+	"github.com/alecthomas/chroma/v2"
+)
+
+// SwapOff theme.
+var SwapOff = Register(chroma.MustNewStyle("swapoff", chroma.StyleEntries{
+	chroma.Background:        "#lightgray bg:#black",
+	chroma.Number:            "bold #ansiyellow",
+	chroma.Comment:           "#ansiteal",
+	chroma.CommentPreproc:    "bold #ansigreen",
+	chroma.String:            "bold #ansiturquoise",
+	chroma.Keyword:           "bold #ansiwhite",
+	chroma.NameKeyword:       "bold #ansiwhite",
+	chroma.NameBuiltin:       "bold #ansiwhite",
+	chroma.GenericHeading:    "bold",
+	chroma.GenericSubheading: "bold",
+	chroma.GenericStrong:     "bold",
+	chroma.GenericUnderline:  "underline",
+	chroma.NameTag:           "bold",
+	chroma.NameAttribute:     "#ansiteal",
+	chroma.Error:             "#ansired",
+	chroma.LiteralDate:       "bold #ansiyellow",
+}))