no git submodules
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2022-02-28 10:28:34 +01:00
parent 58ffd68822
commit a781485c0a
1164 changed files with 362163 additions and 1 deletions

20
vendor/github.com/alecthomas/chroma/styles/rrt.go generated vendored Normal file
View File

@@ -0,0 +1,20 @@
package styles
import (
"github.com/alecthomas/chroma"
)
// Rrt style.
var Rrt = Register(chroma.MustNewStyle("rrt", chroma.StyleEntries{
chroma.CommentPreproc: "#e5e5e5",
chroma.Comment: "#00ff00",
chroma.KeywordType: "#ee82ee",
chroma.Keyword: "#ff0000",
chroma.LiteralNumber: "#ff6600",
chroma.LiteralStringSymbol: "#ff6600",
chroma.LiteralString: "#87ceeb",
chroma.NameFunction: "#ffff00",
chroma.NameConstant: "#7fffd4",
chroma.NameVariable: "#eedd82",
chroma.Background: "#f8f8f2 bg:#000000",
}))