source: code/trunk/vendor/github.com/alecthomas/chroma/v2/styles/xcode.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: 918 bytes
Line 
1package styles
2
3import (
4 "github.com/alecthomas/chroma/v2"
5)
6
7// Xcode style.
8var Xcode = Register(chroma.MustNewStyle("xcode", chroma.StyleEntries{
9 chroma.Comment: "#177500",
10 chroma.CommentPreproc: "#633820",
11 chroma.LiteralString: "#C41A16",
12 chroma.LiteralStringChar: "#2300CE",
13 chroma.Operator: "#000000",
14 chroma.Keyword: "#A90D91",
15 chroma.Name: "#000000",
16 chroma.NameAttribute: "#836C28",
17 chroma.NameClass: "#3F6E75",
18 chroma.NameFunction: "#000000",
19 chroma.NameBuiltin: "#A90D91",
20 chroma.NameBuiltinPseudo: "#5B269A",
21 chroma.NameVariable: "#000000",
22 chroma.NameTag: "#000000",
23 chroma.NameDecorator: "#000000",
24 chroma.NameLabel: "#000000",
25 chroma.Literal: "#1C01CE",
26 chroma.LiteralNumber: "#1C01CE",
27 chroma.Error: "#000000",
28 chroma.Background: " bg:#ffffff",
29}))
Note: See TracBrowser for help on using the repository browser.