source: code/trunk/vendor/github.com/alecthomas/chroma/v2/styles/vim.go@ 67

Last change on this file since 67 was 67, checked in by Izuru Yakumo, 23 months ago

Use vendored modules

Signed-off-by: Izuru Yakumo <yakumo.izuru@…>

File size: 1.2 KB
Line 
1package styles
2
3import (
4 "github.com/alecthomas/chroma/v2"
5)
6
7// Vim style.
8var Vim = Register(chroma.MustNewStyle("vim", chroma.StyleEntries{
9 chroma.Background: "#cccccc bg:#000000",
10 chroma.Comment: "#000080",
11 chroma.CommentSpecial: "bold #cd0000",
12 chroma.Keyword: "#cdcd00",
13 chroma.KeywordDeclaration: "#00cd00",
14 chroma.KeywordNamespace: "#cd00cd",
15 chroma.KeywordType: "#00cd00",
16 chroma.Operator: "#3399cc",
17 chroma.OperatorWord: "#cdcd00",
18 chroma.NameClass: "#00cdcd",
19 chroma.NameBuiltin: "#cd00cd",
20 chroma.NameException: "bold #666699",
21 chroma.NameVariable: "#00cdcd",
22 chroma.LiteralString: "#cd0000",
23 chroma.LiteralNumber: "#cd00cd",
24 chroma.GenericHeading: "bold #000080",
25 chroma.GenericSubheading: "bold #800080",
26 chroma.GenericDeleted: "#cd0000",
27 chroma.GenericInserted: "#00cd00",
28 chroma.GenericError: "#FF0000",
29 chroma.GenericEmph: "italic",
30 chroma.GenericStrong: "bold",
31 chroma.GenericPrompt: "bold #000080",
32 chroma.GenericOutput: "#888",
33 chroma.GenericTraceback: "#04D",
34 chroma.GenericUnderline: "underline",
35 chroma.Error: "border:#FF0000",
36}))
Note: See TracBrowser for help on using the repository browser.