agate.css 1.2 KB

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