66
|
1 package styles
|
|
2
|
|
3 import (
|
|
4 "github.com/alecthomas/chroma/v2"
|
|
5 )
|
|
6
|
|
7 // Fruity style.
|
|
8 var Fruity = Register(chroma.MustNewStyle("fruity", chroma.StyleEntries{
|
|
9 chroma.TextWhitespace: "#888888",
|
|
10 chroma.Background: "#ffffff bg:#111111",
|
|
11 chroma.GenericOutput: "#444444 bg:#222222",
|
|
12 chroma.Keyword: "#fb660a bold",
|
|
13 chroma.KeywordPseudo: "nobold",
|
|
14 chroma.LiteralNumber: "#0086f7 bold",
|
|
15 chroma.NameTag: "#fb660a bold",
|
|
16 chroma.NameVariable: "#fb660a",
|
|
17 chroma.Comment: "#008800 bg:#0f140f italic",
|
|
18 chroma.NameAttribute: "#ff0086 bold",
|
|
19 chroma.LiteralString: "#0086d2",
|
|
20 chroma.NameFunction: "#ff0086 bold",
|
|
21 chroma.GenericHeading: "#ffffff bold",
|
|
22 chroma.KeywordType: "#cdcaa9 bold",
|
|
23 chroma.GenericSubheading: "#ffffff bold",
|
|
24 chroma.NameConstant: "#0086d2",
|
|
25 chroma.CommentPreproc: "#ff0007 bold",
|
|
26 }))
|