You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

swapoff.go 835B

12345678910111213141516171819202122232425
  1. package styles
  2. import (
  3. "github.com/alecthomas/chroma"
  4. )
  5. // SwapOff theme.
  6. var SwapOff = Register(chroma.MustNewStyle("swapoff", chroma.StyleEntries{
  7. chroma.Background: "#lightgray bg:#black",
  8. chroma.Number: "bold #ansiyellow",
  9. chroma.Comment: "#ansiteal",
  10. chroma.CommentPreproc: "bold #ansigreen",
  11. chroma.String: "bold #ansiturquoise",
  12. chroma.Keyword: "bold #ansiwhite",
  13. chroma.NameKeyword: "bold #ansiwhite",
  14. chroma.NameBuiltin: "bold #ansiwhite",
  15. chroma.GenericHeading: "bold",
  16. chroma.GenericSubheading: "bold",
  17. chroma.GenericStrong: "bold",
  18. chroma.GenericUnderline: "underline",
  19. chroma.NameTag: "bold",
  20. chroma.NameAttribute: "#ansiteal",
  21. chroma.Error: "#ansired",
  22. chroma.LiteralDate: "bold #ansiyellow",
  23. }))