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.

75 lines
1.0KB

  1. /*
  2. Name: Kimbie (light)
  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,
  9. .hljs-quote {
  10. color: #a57a4c;
  11. }
  12. /* Kimbie Red */
  13. .hljs-variable,
  14. .hljs-template-variable,
  15. .hljs-tag,
  16. .hljs-name,
  17. .hljs-selector-id,
  18. .hljs-selector-class,
  19. .hljs-regexp,
  20. .hljs-meta {
  21. color: #dc3958;
  22. }
  23. /* Kimbie Orange */
  24. .hljs-number,
  25. .hljs-built_in,
  26. .hljs-builtin-name,
  27. .hljs-literal,
  28. .hljs-type,
  29. .hljs-params,
  30. .hljs-deletion,
  31. .hljs-link {
  32. color: #f79a32;
  33. }
  34. /* Kimbie Yellow */
  35. .hljs-title,
  36. .hljs-section,
  37. .hljs-attribute {
  38. color: #f06431;
  39. }
  40. /* Kimbie Green */
  41. .hljs-string,
  42. .hljs-symbol,
  43. .hljs-bullet,
  44. .hljs-addition {
  45. color: #889b4a;
  46. }
  47. /* Kimbie Purple */
  48. .hljs-keyword,
  49. .hljs-selector-tag,
  50. .hljs-function {
  51. color: #98676a;
  52. }
  53. .hljs {
  54. display: block;
  55. overflow-x: auto;
  56. background: #fbebd4;
  57. color: #84613d;
  58. padding: 0.5em;
  59. }
  60. .hljs-emphasis {
  61. font-style: italic;
  62. }
  63. .hljs-strong {
  64. font-weight: bold;
  65. }