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.

abap.go 450B

123456789101112131415161718
  1. package styles
  2. import (
  3. "github.com/alecthomas/chroma"
  4. )
  5. // Abap style.
  6. var Abap = Register(chroma.MustNewStyle("abap", chroma.StyleEntries{
  7. chroma.Comment: "italic #888",
  8. chroma.CommentSpecial: "#888",
  9. chroma.Keyword: "#00f",
  10. chroma.OperatorWord: "#00f",
  11. chroma.Name: "#000",
  12. chroma.LiteralNumber: "#3af",
  13. chroma.LiteralString: "#5a2",
  14. chroma.Error: "#F00",
  15. chroma.Background: " bg:#ffffff",
  16. }))