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.

61 lines
842B

  1. /*
  2. codepen.io Embed Theme
  3. Author: Justin Perry <http://github.com/ourmaninamsterdam>
  4. Original theme - https://github.com/chriskempson/tomorrow-theme
  5. */
  6. .hljs {
  7. display: block;
  8. overflow-x: auto;
  9. padding: 0.5em;
  10. background: #222;
  11. color: #fff;
  12. }
  13. .hljs-comment,
  14. .hljs-quote {
  15. color: #777;
  16. }
  17. .hljs-variable,
  18. .hljs-template-variable,
  19. .hljs-tag,
  20. .hljs-regexp,
  21. .hljs-meta,
  22. .hljs-number,
  23. .hljs-built_in,
  24. .hljs-builtin-name,
  25. .hljs-literal,
  26. .hljs-params,
  27. .hljs-symbol,
  28. .hljs-bullet,
  29. .hljs-link,
  30. .hljs-deletion {
  31. color: #ab875d;
  32. }
  33. .hljs-section,
  34. .hljs-title,
  35. .hljs-name,
  36. .hljs-selector-id,
  37. .hljs-selector-class,
  38. .hljs-type,
  39. .hljs-attribute {
  40. color: #9b869b;
  41. }
  42. .hljs-string,
  43. .hljs-keyword,
  44. .hljs-selector-tag,
  45. .hljs-addition {
  46. color: #8f9c6c;
  47. }
  48. .hljs-emphasis {
  49. font-style: italic;
  50. }
  51. .hljs-strong {
  52. font-weight: bold;
  53. }