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.

fruity.go 884B

1234567891011121314151617181920212223242526
  1. package styles
  2. import (
  3. "github.com/alecthomas/chroma"
  4. )
  5. // Fruity style.
  6. var Fruity = Register(chroma.MustNewStyle("fruity", chroma.StyleEntries{
  7. chroma.TextWhitespace: "#888888",
  8. chroma.Background: "#ffffff bg:#111111",
  9. chroma.GenericOutput: "#444444 bg:#222222",
  10. chroma.Keyword: "#fb660a bold",
  11. chroma.KeywordPseudo: "nobold",
  12. chroma.LiteralNumber: "#0086f7 bold",
  13. chroma.NameTag: "#fb660a bold",
  14. chroma.NameVariable: "#fb660a",
  15. chroma.Comment: "#008800 bg:#0f140f italic",
  16. chroma.NameAttribute: "#ff0086 bold",
  17. chroma.LiteralString: "#0086d2",
  18. chroma.NameFunction: "#ff0086 bold",
  19. chroma.GenericHeading: "#ffffff bold",
  20. chroma.KeywordType: "#cdcaa9 bold",
  21. chroma.GenericSubheading: "#ffffff bold",
  22. chroma.NameConstant: "#0086d2",
  23. chroma.CommentPreproc: "#ff0007 bold",
  24. }))