Mercurial > yakumo_izuru > aya
comparison vendor/github.com/alecthomas/chroma/v2/styles/monokailight.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 // MonokaiLight style. | |
8 var 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 })) |