comparison 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
comparison
equal deleted inserted replaced
65:6d985efa0f7a 66:787b5ee0289d
1 package styles
2
3 import (
4 "github.com/alecthomas/chroma/v2"
5 )
6
7 // Igor style.
8 var Igor = Register(chroma.MustNewStyle("igor", chroma.StyleEntries{
9 chroma.Comment: "italic #FF0000",
10 chroma.Keyword: "#0000FF",
11 chroma.NameFunction: "#C34E00",
12 chroma.NameDecorator: "#CC00A3",
13 chroma.NameClass: "#007575",
14 chroma.LiteralString: "#009C00",
15 chroma.Background: " bg:#ffffff",
16 }))