hopscotch.css 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. * Hopscotch
  3. * by Jan T. Sott
  4. * https://github.com/idleberg/Hopscotch
  5. *
  6. * This work is licensed under the Creative Commons CC0 1.0 Universal License
  7. */
  8. /* Comment */
  9. .hljs-comment, .hljs-quote {
  10. color: #989498;
  11. }
  12. /* Red */
  13. .hljs-variable, .hljs-template-variable, .hljs-attribute, .hljs-tag, .hljs-name, .hljs-selector-id, .hljs-selector-class, .hljs-regexp, .hljs-link, .hljs-deletion {
  14. color: #dd464c;
  15. }
  16. /* Orange */
  17. .hljs-number, .hljs-built_in, .hljs-builtin-name, .hljs-literal, .hljs-type, .hljs-params {
  18. color: #fd8b19;
  19. }
  20. /* Yellow */
  21. .hljs-class .hljs-title {
  22. color: #fdcc59;
  23. }
  24. /* Green */
  25. .hljs-string, .hljs-symbol, .hljs-bullet, .hljs-addition {
  26. color: #8fc13e;
  27. }
  28. /* Aqua */
  29. .hljs-meta {
  30. color: #149b93;
  31. }
  32. /* Blue */
  33. .hljs-function, .hljs-section, .hljs-title {
  34. color: #1290bf;
  35. }
  36. /* Purple */
  37. .hljs-keyword, .hljs-selector-tag {
  38. color: #c85e7c;
  39. }
  40. .hljs {
  41. display: block;
  42. background: #322931;
  43. color: #b9b5b8;
  44. padding: .5em;
  45. }
  46. .hljs-emphasis {
  47. font-style: italic;
  48. }
  49. .hljs-strong {
  50. font-weight: bold;
  51. }