sunburst.scss 1.2 KB

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