...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 package styles
16
17 import (
18 "github.com/alecthomas/chroma"
19 )
20
21
22 var WitchHazel = Register(chroma.MustNewStyle("witchhazel", chroma.StyleEntries{
23 chroma.Text: "#F8F8F2",
24 chroma.Whitespace: "#A8757B",
25 chroma.Error: "#960050 bg:#1e0010",
26 chroma.Comment: "#b0bec5",
27 chroma.Keyword: "#C2FFDF",
28 chroma.KeywordNamespace: "#FFB8D1",
29 chroma.Operator: "#FFB8D1",
30 chroma.Punctuation: "#F8F8F2",
31 chroma.Name: "#F8F8F2",
32 chroma.NameAttribute: "#ceb1ff",
33 chroma.NameBuiltinPseudo: "#80cbc4",
34 chroma.NameClass: "#ceb1ff",
35 chroma.NameConstant: "#C5A3FF",
36 chroma.NameDecorator: "#ceb1ff",
37 chroma.NameException: "#ceb1ff",
38 chroma.NameFunction: "#ceb1ff",
39 chroma.NameProperty: "#F8F8F2",
40 chroma.NameTag: "#FFB8D1",
41 chroma.NameVariable: "#F8F8F2",
42 chroma.Number: "#C5A3FF",
43 chroma.Literal: "#ae81ff",
44 chroma.LiteralDate: "#e6db74",
45 chroma.String: "#1bc5e0",
46 chroma.GenericDeleted: "#f92672",
47 chroma.GenericEmph: "italic",
48 chroma.GenericInserted: "#a6e22e",
49 chroma.GenericStrong: "bold",
50 chroma.GenericSubheading: "#75715e",
51 chroma.Background: " bg:#433e56",
52 }))
53
View as plain text