agate.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /*!
  2. * Agate by Taufik Nurrohman <https://github.com/tovic>
  3. * ----------------------------------------------------
  4. *
  5. * #ade5fc
  6. * #a2fca2
  7. * #c6b4f0
  8. * #d36363
  9. * #fcc28c
  10. * #fc9b9b
  11. * #ffa
  12. * #fff
  13. * #333
  14. * #62c8f3
  15. * #888
  16. *
  17. */
  18. .hljs {
  19. display: block;
  20. overflow-x: auto;
  21. padding: .5em;
  22. background: #333;
  23. color: white;
  24. -webkit-text-size-adjust: none;
  25. }
  26. .asciidoc .hljs-title,
  27. .hljs-label,
  28. .hljs-tag .hljs-title,
  29. .hljs-prompt,
  30. .http .hljs-request {
  31. font-weight: bold;
  32. }
  33. .hljs-change,
  34. .hljs-code {
  35. font-style: italic;
  36. }
  37. .hljs-tag,
  38. .ini .hljs-title {
  39. color: #62c8f3;
  40. }
  41. .hljs-id,
  42. .hljs-cbracket,
  43. .hljs-tag .hljs-value {
  44. color: #ade5fc;
  45. }
  46. .hljs-string,
  47. .hljs-bullet {
  48. color: #a2fca2;
  49. }
  50. .hljs-type,
  51. .hljs-variable,
  52. .hljs-name,
  53. .actionscript .hljs-title,
  54. .aspectj .hljs-annotation,
  55. .aspectj .hljs-title,
  56. .hljs-attribute,
  57. .hljs-change,
  58. .hljs-blockquote,
  59. .hljs-built_in {
  60. color: #ffa;
  61. }
  62. .hljs-number,
  63. .hljs-hexcolor,
  64. .hljs-link_label,
  65. .hljs-link_reference {
  66. color: #d36363;
  67. }
  68. .hljs-keyword,
  69. .hljs-literal,
  70. .hljs-constant,
  71. .css .hljs-tag,
  72. .hljs-typename,
  73. .hljs-winutils {
  74. color: #fcc28c;
  75. }
  76. .hljs-comment,
  77. .hljs-cdata,
  78. .hljs-preprocessor,
  79. .hljs-annotation,
  80. .hljs-decorator,
  81. .hljs-doctype,
  82. .hljs-deletion,
  83. .hljs-shebang,
  84. .apache .hljs-sqbracket,
  85. .tex .hljs-formula,
  86. .hljs-header,
  87. .hljs-horizontal_rule,
  88. .hljs-code {
  89. color: #888;
  90. }
  91. .hljs-regexp,
  92. .hljs-attr_selector {
  93. color: #c6b4f0;
  94. }
  95. .hljs-important,
  96. .hljs-doctype,
  97. .hljs-pi,
  98. .hljs-chunk,
  99. .actionscript .hljs-type,
  100. .hljs-shebang,
  101. .hljs-pragma,
  102. .http .hljs-attribute {
  103. color: #fc9b9b;
  104. }
  105. .hljs-deletion {
  106. background-color: #fc9b9b;
  107. color: #333;
  108. }
  109. .hljs-addition {
  110. background-color: #a2fca2;
  111. color: #333;
  112. }
  113. .hljs a,
  114. .hljs-tag .hljs-attribute {
  115. color: inherit;
  116. }
  117. .hljs a:focus,
  118. .hljs a:hover {
  119. color: inherit;
  120. text-decoration: underline;
  121. }