source: code/trunk/vendor/github.com/alecthomas/chroma/v2/styles/fruity.go@ 67

Last change on this file since 67 was 67, checked in by Izuru Yakumo, 23 months ago

Use vendored modules

Signed-off-by: Izuru Yakumo <yakumo.izuru@…>

File size: 887 bytes
Line 
1package styles
2
3import (
4 "github.com/alecthomas/chroma/v2"
5)
6
7// Fruity style.
8var 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}))
Note: See TracBrowser for help on using the repository browser.