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.
17 lines
452 B
17 lines
452 B
package styles
|
|
|
|
import (
|
|
"github.com/alecthomas/chroma"
|
|
)
|
|
|
|
// Theme based on HackerRank Dark Editor theme
|
|
var HrDark = Register(chroma.MustNewStyle("hrdark", chroma.StyleEntries{
|
|
chroma.Comment: "italic #828b96",
|
|
chroma.Keyword: "#ff636f",
|
|
chroma.OperatorWord: "#ff636f",
|
|
chroma.Name: "#58a1dd",
|
|
chroma.Literal: "#a6be9d",
|
|
chroma.Operator: "#ff636f",
|
|
chroma.Background: "#1d2432",
|
|
chroma.Other: "#fff",
|
|
}))
|
|
|