rainbow.css 1022 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. Style with support for rainbow parens
  11. */
  12. .hljs {
  13. background: #474949;
  14. color: #d1d9e1
  15. }
  16. .hljs-comment,
  17. .hljs-quote {
  18. color: #969896;
  19. font-style: italic
  20. }
  21. .hljs-keyword,
  22. .hljs-selector-tag,
  23. .hljs-literal,
  24. .hljs-type,
  25. .hljs-addition {
  26. color: #cc99cc
  27. }
  28. .hljs-number,
  29. .hljs-selector-attr,
  30. .hljs-selector-pseudo {
  31. color: #f99157
  32. }
  33. .hljs-string,
  34. .hljs-doctag,
  35. .hljs-regexp {
  36. color: #8abeb7
  37. }
  38. .hljs-title,
  39. .hljs-name,
  40. .hljs-section,
  41. .hljs-built_in {
  42. color: #b5bd68
  43. }
  44. .hljs-variable,
  45. .hljs-template-variable,
  46. .hljs-selector-id,
  47. .hljs-title.class_,
  48. .hljs-class .hljs-title {
  49. color: #ffcc66
  50. }
  51. .hljs-section,
  52. .hljs-name,
  53. .hljs-strong {
  54. font-weight: bold
  55. }
  56. .hljs-symbol,
  57. .hljs-bullet,
  58. .hljs-subst,
  59. .hljs-meta,
  60. .hljs-link {
  61. color: #f99157
  62. }
  63. .hljs-deletion {
  64. color: #dc322f
  65. }
  66. .hljs-formula {
  67. background: #eee8d5
  68. }
  69. .hljs-attr,
  70. .hljs-attribute {
  71. color: #81a2be
  72. }
  73. .hljs-emphasis {
  74. font-style: italic
  75. }