comparison vendor/github.com/alecthomas/chroma/v2/styles/swapoff.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
comparison
equal deleted inserted replaced
65:6d985efa0f7a 66:787b5ee0289d
1 package styles
2
3 import (
4 "github.com/alecthomas/chroma/v2"
5 )
6
7 // SwapOff theme.
8 var 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 }))