comparison vendor/github.com/alecthomas/chroma/v2/styles/rrt.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
comparison
equal deleted inserted replaced
65:6d985efa0f7a 66:787b5ee0289d
1 package styles
2
3 import (
4 "github.com/alecthomas/chroma/v2"
5 )
6
7 // Rrt style.
8 var Rrt = Register(chroma.MustNewStyle("rrt", chroma.StyleEntries{
9 chroma.CommentPreproc: "#e5e5e5",
10 chroma.Comment: "#00ff00",
11 chroma.KeywordType: "#ee82ee",
12 chroma.Keyword: "#ff0000",
13 chroma.LiteralNumber: "#ff6600",
14 chroma.LiteralStringSymbol: "#ff6600",
15 chroma.LiteralString: "#87ceeb",
16 chroma.NameFunction: "#ffff00",
17 chroma.NameConstant: "#7fffd4",
18 chroma.NameVariable: "#eedd82",
19 chroma.Background: "#f8f8f2 bg:#000000",
20 }))