You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

103 lines
1.3KB

  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: 0.5em;
  9. background: #1d1f21;
  10. }
  11. /*selection color*/
  12. .hljs::selection,
  13. .hljs span::selection {
  14. background: #373b41;
  15. }
  16. .hljs::-moz-selection,
  17. .hljs span::-moz-selection {
  18. background: #373b41;
  19. }
  20. /*foreground color*/
  21. .hljs {
  22. color: #c5c8c6;
  23. }
  24. /*color: fg_yellow*/
  25. .hljs-title,
  26. .hljs-name {
  27. color: #f0c674;
  28. }
  29. /*color: fg_comment*/
  30. .hljs-comment,
  31. .hljs-meta,
  32. .hljs-meta .hljs-keyword {
  33. color: #707880;
  34. }
  35. /*color: fg_red*/
  36. .hljs-number,
  37. .hljs-symbol,
  38. .hljs-literal,
  39. .hljs-deletion,
  40. .hljs-link {
  41. color: #cc6666
  42. }
  43. /*color: fg_green*/
  44. .hljs-string,
  45. .hljs-doctag,
  46. .hljs-addition,
  47. .hljs-regexp,
  48. .hljs-selector-attr,
  49. .hljs-selector-pseudo {
  50. color: #b5bd68;
  51. }
  52. /*color: fg_purple*/
  53. .hljs-attribute,
  54. .hljs-code,
  55. .hljs-selector-id {
  56. color: #b294bb;
  57. }
  58. /*color: fg_blue*/
  59. .hljs-keyword,
  60. .hljs-selector-tag,
  61. .hljs-bullet,
  62. .hljs-tag {
  63. color: #81a2be;
  64. }
  65. /*color: fg_aqua*/
  66. .hljs-subst,
  67. .hljs-variable,
  68. .hljs-template-tag,
  69. .hljs-template-variable {
  70. color: #8abeb7;
  71. }
  72. /*color: fg_orange*/
  73. .hljs-type,
  74. .hljs-built_in,
  75. .hljs-builtin-name,
  76. .hljs-quote,
  77. .hljs-section,
  78. .hljs-selector-class {
  79. color: #de935f;
  80. }
  81. .hljs-emphasis {
  82. font-style: italic;
  83. }
  84. .hljs-strong {
  85. font-weight: bold;
  86. }