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.

85 lines
1.3KB

  1. /* Base16 Atelier Estuary Light - Theme */
  2. /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/estuary) */
  3. /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
  4. /* Atelier-Estuary Comment */
  5. .hljs-comment,
  6. .hljs-quote {
  7. color: #6c6b5a;
  8. }
  9. /* Atelier-Estuary 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-selector-id,
  19. .hljs-selector-class {
  20. color: #ba6236;
  21. }
  22. /* Atelier-Estuary Orange */
  23. .hljs-number,
  24. .hljs-meta,
  25. .hljs-built_in,
  26. .hljs-builtin-name,
  27. .hljs-literal,
  28. .hljs-type,
  29. .hljs-params {
  30. color: #ae7313;
  31. }
  32. /* Atelier-Estuary Green */
  33. .hljs-string,
  34. .hljs-symbol,
  35. .hljs-bullet {
  36. color: #7d9726;
  37. }
  38. /* Atelier-Estuary Blue */
  39. .hljs-title,
  40. .hljs-section {
  41. color: #36a166;
  42. }
  43. /* Atelier-Estuary Purple */
  44. .hljs-keyword,
  45. .hljs-selector-tag {
  46. color: #5f9182;
  47. }
  48. .hljs-deletion,
  49. .hljs-addition {
  50. color: #22221b;
  51. display: inline-block;
  52. width: 100%;
  53. }
  54. .hljs-deletion {
  55. background-color: #ba6236;
  56. }
  57. .hljs-addition {
  58. background-color: #7d9726;
  59. }
  60. .hljs {
  61. display: block;
  62. overflow-x: auto;
  63. background: #f4f3ec;
  64. color: #5f5e4e;
  65. padding: 0.5em;
  66. }
  67. .hljs-emphasis {
  68. font-style: italic;
  69. }
  70. .hljs-strong {
  71. font-weight: bold;
  72. }