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.

84 lines
1.2KB

  1. /* Base16 Atelier Cave Dark - Theme */
  2. /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/cave) */
  3. /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
  4. /* Atelier-Cave Comment */
  5. .hljs-comment,
  6. .hljs-quote {
  7. color: #7e7887;
  8. }
  9. /* Atelier-Cave Red */
  10. .hljs-variable,
  11. .hljs-template-variable,
  12. .hljs-attribute,
  13. .hljs-regexp,
  14. .hljs-link,
  15. .hljs-tag,
  16. .hljs-name,
  17. .hljs-selector-id,
  18. .hljs-selector-class {
  19. color: #be4678;
  20. }
  21. /* Atelier-Cave Orange */
  22. .hljs-number,
  23. .hljs-meta,
  24. .hljs-built_in,
  25. .hljs-builtin-name,
  26. .hljs-literal,
  27. .hljs-type,
  28. .hljs-params {
  29. color: #aa573c;
  30. }
  31. /* Atelier-Cave Green */
  32. .hljs-string,
  33. .hljs-symbol,
  34. .hljs-bullet {
  35. color: #2a9292;
  36. }
  37. /* Atelier-Cave Blue */
  38. .hljs-title,
  39. .hljs-section {
  40. color: #576ddb;
  41. }
  42. /* Atelier-Cave Purple */
  43. .hljs-keyword,
  44. .hljs-selector-tag {
  45. color: #955ae7;
  46. }
  47. .hljs-deletion,
  48. .hljs-addition {
  49. color: #19171c;
  50. display: inline-block;
  51. width: 100%;
  52. }
  53. .hljs-deletion {
  54. background-color: #be4678;
  55. }
  56. .hljs-addition {
  57. background-color: #2a9292;
  58. }
  59. .hljs {
  60. display: block;
  61. overflow-x: auto;
  62. background: #19171c;
  63. color: #8b8792;
  64. padding: 0.5em;
  65. }
  66. .hljs-emphasis {
  67. font-style: italic;
  68. }
  69. .hljs-strong {
  70. font-weight: bold;
  71. }