code.css 586 B

12345678910111213141516171819202122232425262728293031323334
  1. /* Syntax highlighting code, by David Thompson, borrowed
  2. from:
  3. https://git.dthompson.us/blog.git/blob_plain/refs/heads/haunt-migration:/css/dthompson.css
  4. David Thompson gives permission for this to be GPLv3+ and CC BY-SA 4.0
  5. Modified significantly since.
  6. */
  7. .syntax-special, .syntax-element {
  8. color: #8e6da6;
  9. font-weight: bold;
  10. }
  11. .syntax-symbol {
  12. color: #e0ceed;
  13. }
  14. .syntax-string {
  15. color: #95e454;
  16. }
  17. .syntax-keyword, .syntax-attribute {
  18. color: #e5786d;
  19. }
  20. .syntax-comment {
  21. color: #999;
  22. }
  23. .syntax-open, .syntax-close {
  24. color: #00768b;
  25. }