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.

84 lines
1.0KB

  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,
  10. .hljs-quote {
  11. color: #989498;
  12. }
  13. /* Red */
  14. .hljs-variable,
  15. .hljs-template-variable,
  16. .hljs-attribute,
  17. .hljs-tag,
  18. .hljs-name,
  19. .hljs-selector-id,
  20. .hljs-selector-class,
  21. .hljs-regexp,
  22. .hljs-link,
  23. .hljs-deletion {
  24. color: #dd464c;
  25. }
  26. /* Orange */
  27. .hljs-number,
  28. .hljs-built_in,
  29. .hljs-builtin-name,
  30. .hljs-literal,
  31. .hljs-type,
  32. .hljs-params {
  33. color: #fd8b19;
  34. }
  35. /* Yellow */
  36. .hljs-class .hljs-title {
  37. color: #fdcc59;
  38. }
  39. /* Green */
  40. .hljs-string,
  41. .hljs-symbol,
  42. .hljs-bullet,
  43. .hljs-addition {
  44. color: #8fc13e;
  45. }
  46. /* Aqua */
  47. .hljs-meta {
  48. color: #149b93;
  49. }
  50. /* Blue */
  51. .hljs-function,
  52. .hljs-section,
  53. .hljs-title {
  54. color: #1290bf;
  55. }
  56. /* Purple */
  57. .hljs-keyword,
  58. .hljs-selector-tag {
  59. color: #c85e7c;
  60. }
  61. .hljs {
  62. display: block;
  63. background: #322931;
  64. color: #b9b5b8;
  65. padding: 0.5em;
  66. }
  67. .hljs-emphasis {
  68. font-style: italic;
  69. }
  70. .hljs-strong {
  71. font-weight: bold;
  72. }