Mercurial > yakumo_izuru > aya
annotate vendor/github.com/alecthomas/chroma/v2/styles/hr_dark.go @ 66:787b5ee0289d draft
Use vendored modules
Signed-off-by: Izuru Yakumo <yakumo.izuru@chaotic.ninja>
author | yakumo.izuru |
---|---|
date | Sun, 23 Jul 2023 13:18:53 +0000 |
parents | |
children |
rev | line source |
---|---|
66 | 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 })) |