1 | package styles
|
---|
2 |
|
---|
3 | import (
|
---|
4 | "github.com/alecthomas/chroma/v2"
|
---|
5 | )
|
---|
6 |
|
---|
7 | // ParaisoLight style.
|
---|
8 | var ParaisoLight = Register(chroma.MustNewStyle("paraiso-light", chroma.StyleEntries{
|
---|
9 | chroma.Text: "#2f1e2e",
|
---|
10 | chroma.Error: "#ef6155",
|
---|
11 | chroma.Comment: "#8d8687",
|
---|
12 | chroma.Keyword: "#815ba4",
|
---|
13 | chroma.KeywordNamespace: "#5bc4bf",
|
---|
14 | chroma.KeywordType: "#fec418",
|
---|
15 | chroma.Operator: "#5bc4bf",
|
---|
16 | chroma.Punctuation: "#2f1e2e",
|
---|
17 | chroma.Name: "#2f1e2e",
|
---|
18 | chroma.NameAttribute: "#06b6ef",
|
---|
19 | chroma.NameClass: "#fec418",
|
---|
20 | chroma.NameConstant: "#ef6155",
|
---|
21 | chroma.NameDecorator: "#5bc4bf",
|
---|
22 | chroma.NameException: "#ef6155",
|
---|
23 | chroma.NameFunction: "#06b6ef",
|
---|
24 | chroma.NameNamespace: "#fec418",
|
---|
25 | chroma.NameOther: "#06b6ef",
|
---|
26 | chroma.NameTag: "#5bc4bf",
|
---|
27 | chroma.NameVariable: "#ef6155",
|
---|
28 | chroma.LiteralNumber: "#f99b15",
|
---|
29 | chroma.Literal: "#f99b15",
|
---|
30 | chroma.LiteralDate: "#48b685",
|
---|
31 | chroma.LiteralString: "#48b685",
|
---|
32 | chroma.LiteralStringChar: "#2f1e2e",
|
---|
33 | chroma.LiteralStringDoc: "#8d8687",
|
---|
34 | chroma.LiteralStringEscape: "#f99b15",
|
---|
35 | chroma.LiteralStringInterpol: "#f99b15",
|
---|
36 | chroma.GenericDeleted: "#ef6155",
|
---|
37 | chroma.GenericEmph: "italic",
|
---|
38 | chroma.GenericHeading: "bold #2f1e2e",
|
---|
39 | chroma.GenericInserted: "#48b685",
|
---|
40 | chroma.GenericPrompt: "bold #8d8687",
|
---|
41 | chroma.GenericStrong: "bold",
|
---|
42 | chroma.GenericSubheading: "bold #5bc4bf",
|
---|
43 | chroma.Background: "bg:#e7e9db",
|
---|
44 | }))
|
---|