mono-blue.css 748 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. Five-color theme from a single blue hue.
  3. */
  4. .hljs {
  5. display: block;
  6. overflow-x: auto;
  7. padding: .5em;
  8. background: #eaeef3;
  9. }
  10. .hljs {
  11. color: #00193a;
  12. }
  13. .hljs-keyword, .hljs-selector-tag, .hljs-title, .hljs-section, .hljs-doctag, .hljs-name, .hljs-strong {
  14. font-weight: bold;
  15. }
  16. .hljs-comment {
  17. color: #738191;
  18. }
  19. .hljs-string, .hljs-title, .hljs-section, .hljs-built_in, .hljs-literal, .hljs-type, .hljs-addition, .hljs-tag, .hljs-quote, .hljs-name, .hljs-selector-id, .hljs-selector-class {
  20. color: #0048ab;
  21. }
  22. .hljs-meta, .hljs-subst, .hljs-symbol, .hljs-regexp, .hljs-attribute, .hljs-deletion, .hljs-variable, .hljs-template-variable, .hljs-link, .hljs-bullet {
  23. color: #4c81c9;
  24. }
  25. .hljs-emphasis {
  26. font-style: italic;
  27. }