You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
615 B
20 lines
615 B
4 years ago
|
package styles
|
||
|
|
||
|
import (
|
||
|
"github.com/alecthomas/chroma"
|
||
|
)
|
||
|
|
||
|
// Theme based on HackerRank High Contrast Editor Theme
|
||
|
var HrHighContrast = Register(chroma.MustNewStyle("hr_high_contrast", chroma.StyleEntries{
|
||
|
chroma.Comment: "#5a8349",
|
||
|
chroma.Keyword: "#467faf",
|
||
|
chroma.OperatorWord: "#467faf",
|
||
|
chroma.Name: "#ffffff",
|
||
|
chroma.LiteralString: "#a87662",
|
||
|
chroma.LiteralNumber: "#fff",
|
||
|
chroma.LiteralStringBoolean: "#467faf",
|
||
|
chroma.Operator: "#e4e400",
|
||
|
chroma.Background: "#000",
|
||
|
chroma.Other: "#d5d500",
|
||
|
}))
|