source: code/trunk/vendor/github.com/alecthomas/chroma/v2/styles/swapoff.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: 838 bytes
Line 
1package styles
2
3import (
4 "github.com/alecthomas/chroma/v2"
5)
6
7// SwapOff theme.
8var SwapOff = Register(chroma.MustNewStyle("swapoff", chroma.StyleEntries{
9 chroma.Background: "#lightgray bg:#black",
10 chroma.Number: "bold #ansiyellow",
11 chroma.Comment: "#ansiteal",
12 chroma.CommentPreproc: "bold #ansigreen",
13 chroma.String: "bold #ansiturquoise",
14 chroma.Keyword: "bold #ansiwhite",
15 chroma.NameKeyword: "bold #ansiwhite",
16 chroma.NameBuiltin: "bold #ansiwhite",
17 chroma.GenericHeading: "bold",
18 chroma.GenericSubheading: "bold",
19 chroma.GenericStrong: "bold",
20 chroma.GenericUnderline: "underline",
21 chroma.NameTag: "bold",
22 chroma.NameAttribute: "#ansiteal",
23 chroma.Error: "#ansired",
24 chroma.LiteralDate: "bold #ansiyellow",
25}))
Note: See TracBrowser for help on using the repository browser.