rainbow.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*
  2. Style with support for rainbow parens
  3. */
  4. .hljs {
  5. font: normal 10pt Consolas, Monaco, monospace;
  6. font-size: 13px;
  7. color: inherit;
  8. }
  9. .hljs * {
  10. font-size: 13px;
  11. color: inherit;
  12. }
  13. .hljs {
  14. display: block;
  15. overflow-x: auto;
  16. padding: 0.5em;
  17. background: #474949;
  18. color: #d1d9e1;
  19. }
  20. .hljs-comment,
  21. .hljs-quote {
  22. color: #969896;
  23. font-style: italic;
  24. }
  25. .hljs-keyword,
  26. .hljs-selector-tag,
  27. .hljs-literal,
  28. .hljs-type,
  29. .hljs-addition {
  30. color: #cc99cc;
  31. }
  32. .hljs-number,
  33. .hljs-selector-attr,
  34. .hljs-selector-pseudo {
  35. color: #f99157;
  36. }
  37. .hljs-string,
  38. .hljs-doctag,
  39. .hljs-regexp {
  40. color: #8abeb7;
  41. }
  42. .hljs-title,
  43. .hljs-name,
  44. .hljs-section,
  45. .hljs-built_in {
  46. color: #b5bd68;
  47. }
  48. .hljs-variable,
  49. .hljs-template-variable,
  50. .hljs-selector-id,
  51. .hljs-class .hljs-title {
  52. color: #ffcc66;
  53. }
  54. .hljs-section,
  55. .hljs-name,
  56. .hljs-strong {
  57. font-weight: bold;
  58. }
  59. .hljs-symbol,
  60. .hljs-bullet,
  61. .hljs-subst,
  62. .hljs-meta,
  63. .hljs-link {
  64. color: #f99157;
  65. }
  66. .hljs-deletion {
  67. color: #dc322f;
  68. }
  69. .hljs-formula {
  70. background: #eee8d5;
  71. }
  72. .hljs-attr,
  73. .hljs-attribute {
  74. color: #81a2be;
  75. }
  76. .hljs-emphasis {
  77. font-style: italic;
  78. }