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.

86 lines
983B

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