highlight.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /**
  2. * Obsidian style
  3. * ported by Alexander Marenin (http://github.com/ioncreature)
  4. */
  5. .hljs {
  6. display: block;
  7. overflow-x: auto;
  8. padding: 0.5em;
  9. background: #282b2e;
  10. }
  11. .dark-theme .hljs {
  12. background: transparent;
  13. }
  14. .hljs-keyword,
  15. .hljs-selector-tag,
  16. .hljs-literal,
  17. .hljs-selector-id {
  18. color: #93c763;
  19. }
  20. .hljs-number {
  21. color: #ffcd22;
  22. }
  23. .hljs {
  24. color: #e0e2e4;
  25. }
  26. .hljs-attribute {
  27. color: #668bb0;
  28. }
  29. .hljs-code,
  30. .hljs-class .hljs-title,
  31. .hljs-section {
  32. color: white;
  33. }
  34. .hljs-regexp,
  35. .hljs-link {
  36. color: #d39745;
  37. }
  38. .hljs-meta {
  39. color: #557182;
  40. }
  41. .hljs-tag,
  42. .hljs-name,
  43. .hljs-bullet,
  44. .hljs-subst,
  45. .hljs-emphasis,
  46. .hljs-type,
  47. .hljs-built_in,
  48. .hljs-selector-attr,
  49. .hljs-selector-pseudo,
  50. .hljs-addition,
  51. .hljs-variable,
  52. .hljs-template-tag,
  53. .hljs-template-variable {
  54. color: #8cbbad;
  55. }
  56. .hljs-string,
  57. .hljs-symbol {
  58. color: #ec7600;
  59. }
  60. .hljs-comment,
  61. .hljs-quote,
  62. .hljs-deletion {
  63. color: #818e96;
  64. }
  65. .hljs-selector-class {
  66. color: #A082BD
  67. }
  68. .hljs-keyword,
  69. .hljs-selector-tag,
  70. .hljs-literal,
  71. .hljs-doctag,
  72. .hljs-title,
  73. .hljs-section,
  74. .hljs-type,
  75. .hljs-name,
  76. .hljs-strong {
  77. font-weight: bold;
  78. }