default.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. Original highlight.js style (c) Ivan Sagalaev <maniac@softwaremaniacs.org>
  3. */
  4. .hljs {
  5. display: block;
  6. overflow-x: auto;
  7. padding: .5em;
  8. background: #f0f0f0;
  9. }
  10. /* Base color: saturation 0; */
  11. .hljs, .hljs-subst {
  12. color: #444;
  13. }
  14. .hljs-comment {
  15. color: #888;
  16. }
  17. .hljs-keyword, .hljs-attribute, .hljs-selector-tag, .hljs-meta-keyword, .hljs-doctag, .hljs-name {
  18. font-weight: bold;
  19. }
  20. /* User color: hue: 0 */
  21. .hljs-type, .hljs-string, .hljs-number, .hljs-selector-id, .hljs-selector-class, .hljs-quote, .hljs-template-tag, .hljs-deletion {
  22. color: #800;
  23. }
  24. .hljs-title, .hljs-section {
  25. color: #800;
  26. font-weight: bold;
  27. }
  28. .hljs-regexp, .hljs-symbol, .hljs-variable, .hljs-template-variable, .hljs-link, .hljs-selector-attr, .hljs-selector-pseudo {
  29. color: #bc6060;
  30. }
  31. /* Language color: hue: 90; */
  32. .hljs-literal {
  33. color: #78a960;
  34. }
  35. .hljs-built_in, .hljs-bullet, .hljs-code, .hljs-addition {
  36. color: #397300;
  37. }
  38. /* Meta color: hue: 200 */
  39. .hljs-meta {
  40. color: #1f7199;
  41. }
  42. .hljs-meta-string {
  43. color: #4d99bf;
  44. }
  45. /* Misc effects */
  46. .hljs-emphasis {
  47. font-style: italic;
  48. }
  49. .hljs-strong {
  50. font-weight: bold;
  51. }