diff options
Diffstat (limited to 'vendor/github.com/alecthomas/chroma/v2/styles/hr_dark.go')
| -rw-r--r-- | vendor/github.com/alecthomas/chroma/v2/styles/hr_dark.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/vendor/github.com/alecthomas/chroma/v2/styles/hr_dark.go b/vendor/github.com/alecthomas/chroma/v2/styles/hr_dark.go new file mode 100644 index 0000000..74867f6 --- /dev/null +++ b/vendor/github.com/alecthomas/chroma/v2/styles/hr_dark.go | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | package styles | ||
| 2 | |||
| 3 | import ( | ||
| 4 | "github.com/alecthomas/chroma/v2" | ||
| 5 | ) | ||
| 6 | |||
| 7 | // Theme based on HackerRank Dark Editor theme | ||
| 8 | var HrDark = Register(chroma.MustNewStyle("hrdark", chroma.StyleEntries{ | ||
| 9 | chroma.Comment: "italic #828b96", | ||
| 10 | chroma.Keyword: "#ff636f", | ||
| 11 | chroma.OperatorWord: "#ff636f", | ||
| 12 | chroma.Name: "#58a1dd", | ||
| 13 | chroma.Literal: "#a6be9d", | ||
| 14 | chroma.Operator: "#ff636f", | ||
| 15 | chroma.Background: "#1d2432", | ||
| 16 | chroma.Other: "#fff", | ||
| 17 | })) | ||
