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.

80 lines
1.0KB

  1. /**
  2. * GitHub Gist Theme
  3. * Author : Anthony Attard - https://github.com/AnthonyAttard
  4. * Author : Louis Barranqueiro - https://github.com/LouisBarranqueiro
  5. */
  6. .hljs {
  7. display: block;
  8. background: white;
  9. padding: 0.5em;
  10. color: #333333;
  11. overflow-x: auto;
  12. }
  13. .hljs-comment,
  14. .hljs-meta {
  15. color: #969896;
  16. }
  17. .hljs-variable,
  18. .hljs-template-variable,
  19. .hljs-strong,
  20. .hljs-emphasis,
  21. .hljs-quote {
  22. color: #df5000;
  23. }
  24. .hljs-keyword,
  25. .hljs-selector-tag,
  26. .hljs-type {
  27. color: #d73a49;
  28. }
  29. .hljs-literal,
  30. .hljs-symbol,
  31. .hljs-bullet,
  32. .hljs-attribute {
  33. color: #0086b3;
  34. }
  35. .hljs-section,
  36. .hljs-name {
  37. color: #63a35c;
  38. }
  39. .hljs-tag {
  40. color: #333333;
  41. }
  42. .hljs-title,
  43. .hljs-attr,
  44. .hljs-selector-id,
  45. .hljs-selector-class,
  46. .hljs-selector-attr,
  47. .hljs-selector-pseudo {
  48. color: #6f42c1;
  49. }
  50. .hljs-addition {
  51. color: #55a532;
  52. background-color: #eaffea;
  53. }
  54. .hljs-deletion {
  55. color: #bd2c00;
  56. background-color: #ffecec;
  57. }
  58. .hljs-link {
  59. text-decoration: underline;
  60. }
  61. .hljs-number {
  62. color: #005cc5;
  63. }
  64. .hljs-string {
  65. color: #032f62;
  66. }