comparison vendor/github.com/alecthomas/chroma/v2/styles/fruity.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 // 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 }))