github-gist.css 912 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /**
  2. * GitHub Gist Theme
  3. * Author : Louis Barranqueiro - https://github.com/LouisBarranqueiro
  4. */
  5. .hljs {
  6. display: block;
  7. background: white;
  8. padding: .5em;
  9. color: #333;
  10. overflow-x: auto;
  11. }
  12. .hljs-comment, .hljs-meta {
  13. color: #969896;
  14. }
  15. .hljs-string, .hljs-variable, .hljs-template-variable, .hljs-strong, .hljs-emphasis, .hljs-quote {
  16. color: #df5000;
  17. }
  18. .hljs-keyword, .hljs-selector-tag, .hljs-type {
  19. color: #a71d5d;
  20. }
  21. .hljs-literal, .hljs-symbol, .hljs-bullet, .hljs-attribute {
  22. color: #0086b3;
  23. }
  24. .hljs-section, .hljs-name {
  25. color: #63a35c;
  26. }
  27. .hljs-tag {
  28. color: #333;
  29. }
  30. .hljs-title, .hljs-attr, .hljs-selector-id, .hljs-selector-class, .hljs-selector-attr, .hljs-selector-pseudo {
  31. color: #795da3;
  32. }
  33. .hljs-addition {
  34. color: #55a532;
  35. background-color: #eaffea;
  36. }
  37. .hljs-deletion {
  38. color: #bd2c00;
  39. background-color: #ffecec;
  40. }
  41. .hljs-link {
  42. text-decoration: underline;
  43. }