...
1 package styles
2
3 import (
4 "github.com/alecthomas/chroma"
5 )
6
7
8 var SolarizedLight = Register(chroma.MustNewStyle("solarized-light", chroma.StyleEntries{
9 chroma.Text: "bg: #eee8d5 #586e75",
10 chroma.Keyword: "#859900",
11 chroma.KeywordConstant: "bold",
12 chroma.KeywordNamespace: "#dc322f bold",
13 chroma.KeywordType: "bold",
14 chroma.Name: "#268bd2",
15 chroma.NameBuiltin: "#cb4b16",
16 chroma.NameClass: "#cb4b16",
17 chroma.NameTag: "bold",
18 chroma.Literal: "#2aa198",
19 chroma.LiteralNumber: "bold",
20 chroma.OperatorWord: "#859900",
21 chroma.Comment: "#93a1a1 italic",
22 chroma.Generic: "#d33682",
23 chroma.Background: " bg:#eee8d5",
24 }))
25
View as plain text