obsidian.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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: .5em;
  9. background: #282b2e;
  10. }
  11. .hljs-keyword, .hljs-selector-tag, .hljs-literal, .hljs-selector-id {
  12. color: #93c763;
  13. }
  14. .hljs-number {
  15. color: #ffcd22;
  16. }
  17. .hljs {
  18. color: #e0e2e4;
  19. }
  20. .hljs-attribute {
  21. color: #668bb0;
  22. }
  23. .hljs-code, .hljs-class .hljs-title, .hljs-section {
  24. color: white;
  25. }
  26. .hljs-regexp, .hljs-link {
  27. color: #d39745;
  28. }
  29. .hljs-meta {
  30. color: #557182;
  31. }
  32. .hljs-tag, .hljs-name, .hljs-bullet, .hljs-subst, .hljs-emphasis, .hljs-type, .hljs-built_in, .hljs-selector-attr, .hljs-selector-pseudo, .hljs-addition, .hljs-variable, .hljs-template-tag, .hljs-template-variable {
  33. color: #8cbbad;
  34. }
  35. .hljs-string, .hljs-symbol {
  36. color: #ec7600;
  37. }
  38. .hljs-comment, .hljs-quote, .hljs-deletion {
  39. color: #818e96;
  40. }
  41. .hljs-selector-class {
  42. color: #a082bd;
  43. }
  44. .hljs-keyword, .hljs-selector-tag, .hljs-literal, .hljs-doctag, .hljs-title, .hljs-section, .hljs-type, .hljs-name, .hljs-strong {
  45. font-weight: bold;
  46. }