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.

109 lines
1.2KB

  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: 0.5em;
  22. background: #333;
  23. color: white;
  24. }
  25. .hljs-name,
  26. .hljs-strong {
  27. font-weight: bold;
  28. }
  29. .hljs-code,
  30. .hljs-emphasis {
  31. font-style: italic;
  32. }
  33. .hljs-tag {
  34. color: #62c8f3;
  35. }
  36. .hljs-variable,
  37. .hljs-template-variable,
  38. .hljs-selector-id,
  39. .hljs-selector-class {
  40. color: #ade5fc;
  41. }
  42. .hljs-string,
  43. .hljs-bullet {
  44. color: #a2fca2;
  45. }
  46. .hljs-type,
  47. .hljs-title,
  48. .hljs-section,
  49. .hljs-attribute,
  50. .hljs-quote,
  51. .hljs-built_in,
  52. .hljs-builtin-name {
  53. color: #ffa;
  54. }
  55. .hljs-number,
  56. .hljs-symbol,
  57. .hljs-bullet {
  58. color: #d36363;
  59. }
  60. .hljs-keyword,
  61. .hljs-selector-tag,
  62. .hljs-literal {
  63. color: #fcc28c;
  64. }
  65. .hljs-comment,
  66. .hljs-deletion,
  67. .hljs-code {
  68. color: #888;
  69. }
  70. .hljs-regexp,
  71. .hljs-link {
  72. color: #c6b4f0;
  73. }
  74. .hljs-meta {
  75. color: #fc9b9b;
  76. }
  77. .hljs-deletion {
  78. background-color: #fc9b9b;
  79. color: #333;
  80. }
  81. .hljs-addition {
  82. background-color: #a2fca2;
  83. color: #333;
  84. }
  85. .hljs a {
  86. color: inherit;
  87. }
  88. .hljs a:focus,
  89. .hljs a:hover {
  90. color: inherit;
  91. text-decoration: underline;
  92. }