kimbie.dark.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. Name: Kimbie (dark)
  3. Author: Jan T. Sott
  4. License: Creative Commons Attribution-ShareAlike 4.0 Unported License
  5. URL: https://github.com/idleberg/Kimbie-highlight.js
  6. */
  7. /* Kimbie Comment */
  8. .hljs-comment, .hljs-quote {
  9. color: #d6baad;
  10. }
  11. /* Kimbie Red */
  12. .hljs-variable, .hljs-template-variable, .hljs-tag, .hljs-name, .hljs-selector-id, .hljs-selector-class, .hljs-regexp, .hljs-meta {
  13. color: #dc3958;
  14. }
  15. /* Kimbie Orange */
  16. .hljs-number, .hljs-built_in, .hljs-builtin-name, .hljs-literal, .hljs-type, .hljs-params, .hljs-deletion, .hljs-link {
  17. color: #f79a32;
  18. }
  19. /* Kimbie Yellow */
  20. .hljs-title, .hljs-section, .hljs-attribute {
  21. color: #f06431;
  22. }
  23. /* Kimbie Green */
  24. .hljs-string, .hljs-symbol, .hljs-bullet, .hljs-addition {
  25. color: #889b4a;
  26. }
  27. /* Kimbie Purple */
  28. .hljs-keyword, .hljs-selector-tag, .hljs-function {
  29. color: #98676a;
  30. }
  31. .hljs {
  32. display: block;
  33. overflow-x: auto;
  34. background: #221a0f;
  35. color: #d3af86;
  36. padding: .5em;
  37. }
  38. .hljs-emphasis {
  39. font-style: italic;
  40. }
  41. .hljs-strong {
  42. font-weight: bold;
  43. }