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
1.3KB

  1. /* Base16 Atelier Cave Light - 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: #655f6d;
  8. }
  9. /* Atelier-Cave Red */
  10. .hljs-variable,
  11. .hljs-template-variable,
  12. .hljs-attribute,
  13. .hljs-tag,
  14. .hljs-name,
  15. .hljs-regexp,
  16. .hljs-link,
  17. .hljs-name,
  18. .hljs-name,
  19. .hljs-selector-id,
  20. .hljs-selector-class {
  21. color: #be4678;
  22. }
  23. /* Atelier-Cave Orange */
  24. .hljs-number,
  25. .hljs-meta,
  26. .hljs-built_in,
  27. .hljs-builtin-name,
  28. .hljs-literal,
  29. .hljs-type,
  30. .hljs-params {
  31. color: #aa573c;
  32. }
  33. /* Atelier-Cave Green */
  34. .hljs-string,
  35. .hljs-symbol,
  36. .hljs-bullet {
  37. color: #2a9292;
  38. }
  39. /* Atelier-Cave Blue */
  40. .hljs-title,
  41. .hljs-section {
  42. color: #576ddb;
  43. }
  44. /* Atelier-Cave Purple */
  45. .hljs-keyword,
  46. .hljs-selector-tag {
  47. color: #955ae7;
  48. }
  49. .hljs-deletion,
  50. .hljs-addition {
  51. color: #19171c;
  52. display: inline-block;
  53. width: 100%;
  54. }
  55. .hljs-deletion {
  56. background-color: #be4678;
  57. }
  58. .hljs-addition {
  59. background-color: #2a9292;
  60. }
  61. .hljs {
  62. display: block;
  63. overflow-x: auto;
  64. background: #efecf4;
  65. color: #585260;
  66. padding: 0.5em;
  67. }
  68. .hljs-emphasis {
  69. font-style: italic;
  70. }
  71. .hljs-strong {
  72. font-weight: bold;
  73. }