36 lines
1.2 KiB
Go
36 lines
1.2 KiB
Go
package main
|
|
|
|
import (
|
|
"github.com/alecthomas/chroma/v2"
|
|
"github.com/alecthomas/chroma/v2/styles"
|
|
)
|
|
|
|
var charmStyle = styles.Register(chroma.MustNewStyle("charm", chroma.StyleEntries{
|
|
chroma.Text: "#C4C4C4",
|
|
chroma.Error: "#F1F1F1 bg:#F05B5B",
|
|
chroma.Comment: "#676767",
|
|
chroma.CommentPreproc: "#FF875F",
|
|
chroma.Keyword: "#00AAFF",
|
|
chroma.KeywordReserved: "#FF48DD",
|
|
chroma.KeywordNamespace: "#FF5F87",
|
|
chroma.KeywordType: "#635ADF",
|
|
chroma.Operator: "#FF7F83",
|
|
chroma.Punctuation: "#E8E8A8",
|
|
chroma.Name: "#C4C4C4",
|
|
chroma.NameBuiltin: "#FF7CDB",
|
|
chroma.NameTag: "#B083EA",
|
|
chroma.NameAttribute: "#7A7AE6",
|
|
chroma.NameClass: "#F1F1F1 underline bold",
|
|
chroma.NameDecorator: "#FFFF87",
|
|
chroma.NameFunction: "#00DC7F",
|
|
chroma.LiteralNumber: "#6EEFC0",
|
|
chroma.LiteralString: "#E38356",
|
|
chroma.LiteralStringEscape: "#AFFFD7",
|
|
chroma.GenericDeleted: "#FD5B5B",
|
|
chroma.GenericEmph: "italic",
|
|
chroma.GenericInserted: "#00D787",
|
|
chroma.GenericStrong: "bold",
|
|
chroma.GenericSubheading: "#777777",
|
|
// chroma.Background: "bg:#171717",
|
|
}))
|