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.

71 lines
891B

  1. /*
  2. Description: Magula style for highligh.js
  3. Author: Ruslan Keba <rukeba@gmail.com>
  4. Website: http://rukeba.com/
  5. Version: 1.0
  6. Date: 2009-01-03
  7. Music: Aphex Twin / Xtal
  8. */
  9. .hljs {
  10. display: block;
  11. overflow-x: auto;
  12. padding: 0.5em;
  13. background-color: #f4f4f4;
  14. }
  15. .hljs,
  16. .hljs-subst {
  17. color: black;
  18. }
  19. .hljs-string,
  20. .hljs-title,
  21. .hljs-symbol,
  22. .hljs-bullet,
  23. .hljs-attribute,
  24. .hljs-addition,
  25. .hljs-variable,
  26. .hljs-template-tag,
  27. .hljs-template-variable {
  28. color: #050;
  29. }
  30. .hljs-comment,
  31. .hljs-quote {
  32. color: #777;
  33. }
  34. .hljs-number,
  35. .hljs-regexp,
  36. .hljs-literal,
  37. .hljs-type,
  38. .hljs-link {
  39. color: #800;
  40. }
  41. .hljs-deletion,
  42. .hljs-meta {
  43. color: #00e;
  44. }
  45. .hljs-keyword,
  46. .hljs-selector-tag,
  47. .hljs-doctag,
  48. .hljs-title,
  49. .hljs-section,
  50. .hljs-built_in,
  51. .hljs-tag,
  52. .hljs-name {
  53. font-weight: bold;
  54. color: navy;
  55. }
  56. .hljs-emphasis {
  57. font-style: italic;
  58. }
  59. .hljs-strong {
  60. font-weight: bold;
  61. }