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.2KB

  1. /*
  2. Sunburst-like style (c) Vasily Polovnyov <vast@whiteants.net>
  3. */
  4. .hljs {
  5. display: block;
  6. overflow-x: auto;
  7. padding: 0.5em;
  8. background: #000;
  9. color: #f8f8f8;
  10. }
  11. .hljs-comment,
  12. .hljs-quote {
  13. color: #aeaeae;
  14. font-style: italic;
  15. }
  16. .hljs-keyword,
  17. .hljs-selector-tag,
  18. .hljs-type {
  19. color: #e28964;
  20. }
  21. .hljs-string {
  22. color: #65b042;
  23. }
  24. .hljs-subst {
  25. color: #daefa3;
  26. }
  27. .hljs-regexp,
  28. .hljs-link {
  29. color: #e9c062;
  30. }
  31. .hljs-title,
  32. .hljs-section,
  33. .hljs-tag,
  34. .hljs-name {
  35. color: #89bdff;
  36. }
  37. .hljs-class .hljs-title,
  38. .hljs-doctag {
  39. text-decoration: underline;
  40. }
  41. .hljs-symbol,
  42. .hljs-bullet,
  43. .hljs-number {
  44. color: #3387cc;
  45. }
  46. .hljs-params,
  47. .hljs-variable,
  48. .hljs-template-variable {
  49. color: #3e87e3;
  50. }
  51. .hljs-attribute {
  52. color: #cda869;
  53. }
  54. .hljs-meta {
  55. color: #8996a8;
  56. }
  57. .hljs-formula {
  58. background-color: #0e2231;
  59. color: #f8f8f8;
  60. font-style: italic;
  61. }
  62. .hljs-addition {
  63. background-color: #253b22;
  64. color: #f8f8f8;
  65. }
  66. .hljs-deletion {
  67. background-color: #420e09;
  68. color: #f8f8f8;
  69. }
  70. .hljs-selector-class {
  71. color: #9b703f;
  72. }
  73. .hljs-selector-id {
  74. color: #8b98ab;
  75. }
  76. .hljs-emphasis {
  77. font-style: italic;
  78. }
  79. .hljs-strong {
  80. font-weight: bold;
  81. }