hopscotch.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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-title {
  11. color: #989498;
  12. }
  13. /* Red */
  14. .hljs-variable,
  15. .hljs-attribute,
  16. .hljs-tag,
  17. .hljs-regexp,
  18. .ruby .hljs-constant,
  19. .xml .hljs-tag .hljs-title,
  20. .xml .hljs-pi,
  21. .xml .hljs-doctype,
  22. .html .hljs-doctype,
  23. .css .hljs-id,
  24. .css .hljs-class,
  25. .css .hljs-pseudo {
  26. color: #dd464c;
  27. }
  28. /* Orange */
  29. .hljs-number,
  30. .hljs-preprocessor,
  31. .hljs-built_in,
  32. .hljs-literal,
  33. .hljs-params,
  34. .hljs-constant {
  35. color: #fd8b19;
  36. }
  37. /* Yellow */
  38. .ruby .hljs-class .hljs-title,
  39. .css .hljs-rules .hljs-attribute {
  40. color: #fdcc59;
  41. }
  42. /* Green */
  43. .hljs-string,
  44. .hljs-value,
  45. .hljs-inheritance,
  46. .hljs-header,
  47. .ruby .hljs-symbol,
  48. .xml .hljs-cdata {
  49. color: #8fc13e;
  50. }
  51. /* Aqua */
  52. .css .hljs-hexcolor {
  53. color: #149b93;
  54. }
  55. /* Blue */
  56. .hljs-function,
  57. .python .hljs-decorator,
  58. .python .hljs-title,
  59. .ruby .hljs-function .hljs-title,
  60. .ruby .hljs-title .hljs-keyword,
  61. .perl .hljs-sub,
  62. .javascript .hljs-title,
  63. .coffeescript .hljs-title {
  64. color: #1290bf;
  65. }
  66. /* Purple */
  67. .hljs-keyword,
  68. .javascript .hljs-function {
  69. color: #c85e7c;
  70. }
  71. .hljs {
  72. display: block;
  73. background: #322931;
  74. color: #b9b5b8;
  75. padding: 0.5em;
  76. }
  77. .coffeescript .javascript,
  78. .javascript .xml,
  79. .tex .hljs-formula,
  80. .xml .javascript,
  81. .xml .vbscript,
  82. .xml .css,
  83. .xml .hljs-cdata {
  84. opacity: 0.5;
  85. }