hybrid.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*
  2. vim-hybrid theme by w0ng (https://github.com/w0ng/vim-hybrid)
  3. */
  4. /*background color*/
  5. .hljs {
  6. display: block;
  7. overflow-x: auto;
  8. padding: .5em;
  9. background: #1d1f21;
  10. }
  11. /*selection color*/
  12. .hljs::-moz-selection, .hljs span::-moz-selection {
  13. background: #373b41;
  14. }
  15. .hljs::selection, .hljs span::selection {
  16. background: #373b41;
  17. }
  18. .hljs::-moz-selection, .hljs span::-moz-selection {
  19. background: #373b41;
  20. }
  21. /*foreground color*/
  22. .hljs {
  23. color: #c5c8c6;
  24. }
  25. /*color: fg_yellow*/
  26. .hljs-title, .hljs-name {
  27. color: #f0c674;
  28. }
  29. /*color: fg_comment*/
  30. .hljs-comment, .hljs-meta, .hljs-meta .hljs-keyword {
  31. color: #707880;
  32. }
  33. /*color: fg_red*/
  34. .hljs-number, .hljs-symbol, .hljs-literal, .hljs-deletion, .hljs-link {
  35. color: #c66;
  36. }
  37. /*color: fg_green*/
  38. .hljs-string, .hljs-doctag, .hljs-addition, .hljs-regexp, .hljs-selector-attr, .hljs-selector-pseudo {
  39. color: #b5bd68;
  40. }
  41. /*color: fg_purple*/
  42. .hljs-attribute, .hljs-code, .hljs-selector-id {
  43. color: #b294bb;
  44. }
  45. /*color: fg_blue*/
  46. .hljs-keyword, .hljs-selector-tag, .hljs-bullet, .hljs-tag {
  47. color: #81a2be;
  48. }
  49. /*color: fg_aqua*/
  50. .hljs-subst, .hljs-variable, .hljs-template-tag, .hljs-template-variable {
  51. color: #8abeb7;
  52. }
  53. /*color: fg_orange*/
  54. .hljs-type, .hljs-built_in, .hljs-builtin-name, .hljs-quote, .hljs-section, .hljs-selector-class {
  55. color: #de935f;
  56. }
  57. .hljs-emphasis {
  58. font-style: italic;
  59. }
  60. .hljs-strong {
  61. font-weight: bold;
  62. }