1package styles
2
3import (
4	"github.com/alecthomas/chroma"
5)
6
7// MonokaiLight style.
8var MonokaiLight = Register(chroma.MustNewStyle("monokailight", chroma.StyleEntries{
9	chroma.Text:                "#272822",
10	chroma.Error:               "#960050 bg:#1e0010",
11	chroma.Comment:             "#75715e",
12	chroma.Keyword:             "#00a8c8",
13	chroma.KeywordNamespace:    "#f92672",
14	chroma.Operator:            "#f92672",
15	chroma.Punctuation:         "#111111",
16	chroma.Name:                "#111111",
17	chroma.NameAttribute:       "#75af00",
18	chroma.NameClass:           "#75af00",
19	chroma.NameConstant:        "#00a8c8",
20	chroma.NameDecorator:       "#75af00",
21	chroma.NameException:       "#75af00",
22	chroma.NameFunction:        "#75af00",
23	chroma.NameOther:           "#75af00",
24	chroma.NameTag:             "#f92672",
25	chroma.LiteralNumber:       "#ae81ff",
26	chroma.Literal:             "#ae81ff",
27	chroma.LiteralDate:         "#d88200",
28	chroma.LiteralString:       "#d88200",
29	chroma.LiteralStringEscape: "#8045FF",
30	chroma.GenericEmph:         "italic",
31	chroma.GenericStrong:       "bold",
32	chroma.Background:          " bg:#fafafa",
33}))
34