Mercurial > yakumo_izuru > aya
annotate vendor/github.com/alecthomas/chroma/v2/styles/abap.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 // Abap style. | |
8 var Abap = Register(chroma.MustNewStyle("abap", chroma.StyleEntries{ | |
9 chroma.Comment: "italic #888", | |
10 chroma.CommentSpecial: "#888", | |
11 chroma.Keyword: "#00f", | |
12 chroma.OperatorWord: "#00f", | |
13 chroma.Name: "#000", | |
14 chroma.LiteralNumber: "#3af", | |
15 chroma.LiteralString: "#5a2", | |
16 chroma.Error: "#F00", | |
17 chroma.Background: " bg:#ffffff", | |
18 })) |