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.

67 lines
774B

  1. /*
  2. Date: 24 Fev 2015
  3. Author: Pedro Oliveira <kanytu@gmail . com>
  4. */
  5. .hljs {
  6. color: #a9b7c6;
  7. background: #282b2e;
  8. display: block;
  9. overflow-x: auto;
  10. padding: 0.5em;
  11. }
  12. .hljs-number,
  13. .hljs-literal,
  14. .hljs-symbol,
  15. .hljs-bullet {
  16. color: #6897BB;
  17. }
  18. .hljs-keyword,
  19. .hljs-selector-tag,
  20. .hljs-deletion {
  21. color: #cc7832;
  22. }
  23. .hljs-variable,
  24. .hljs-template-variable,
  25. .hljs-link {
  26. color: #629755;
  27. }
  28. .hljs-comment,
  29. .hljs-quote {
  30. color: #808080;
  31. }
  32. .hljs-meta {
  33. color: #bbb529;
  34. }
  35. .hljs-string,
  36. .hljs-attribute,
  37. .hljs-addition {
  38. color: #6A8759;
  39. }
  40. .hljs-section,
  41. .hljs-title,
  42. .hljs-type {
  43. color: #ffc66d;
  44. }
  45. .hljs-name,
  46. .hljs-selector-id,
  47. .hljs-selector-class {
  48. color: #e8bf6a;
  49. }
  50. .hljs-emphasis {
  51. font-style: italic;
  52. }
  53. .hljs-strong {
  54. font-weight: bold;
  55. }