...
1 package styles
2
3 import (
4 "github.com/alecthomas/chroma"
5 )
6
7
8 var Xcode = Register(chroma.MustNewStyle("xcode", chroma.StyleEntries{
9 chroma.Comment: "#177500",
10 chroma.CommentPreproc: "#633820",
11 chroma.LiteralString: "#C41A16",
12 chroma.LiteralStringChar: "#2300CE",
13 chroma.Operator: "#000000",
14 chroma.Keyword: "#A90D91",
15 chroma.Name: "#000000",
16 chroma.NameAttribute: "#836C28",
17 chroma.NameClass: "#3F6E75",
18 chroma.NameFunction: "#000000",
19 chroma.NameBuiltin: "#A90D91",
20 chroma.NameBuiltinPseudo: "#5B269A",
21 chroma.NameVariable: "#000000",
22 chroma.NameTag: "#000000",
23 chroma.NameDecorator: "#000000",
24 chroma.NameLabel: "#000000",
25 chroma.Literal: "#1C01CE",
26 chroma.LiteralNumber: "#1C01CE",
27 chroma.Error: "#000000",
28 chroma.Background: " bg:#ffffff",
29 }))
30
View as plain text