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.

73 lines
1014B

  1. /*
  2. Paraíso (dark)
  3. Created by Jan T. Sott (http://github.com/idleberg)
  4. Inspired by the art of Rubens LP (http://www.rubenslp.com.br)
  5. */
  6. /* Paraíso Comment */
  7. .hljs-comment,
  8. .hljs-quote {
  9. color: #8d8687;
  10. }
  11. /* Paraíso Red */
  12. .hljs-variable,
  13. .hljs-template-variable,
  14. .hljs-tag,
  15. .hljs-name,
  16. .hljs-selector-id,
  17. .hljs-selector-class,
  18. .hljs-regexp,
  19. .hljs-link,
  20. .hljs-meta {
  21. color: #ef6155;
  22. }
  23. /* Paraíso Orange */
  24. .hljs-number,
  25. .hljs-built_in,
  26. .hljs-builtin-name,
  27. .hljs-literal,
  28. .hljs-type,
  29. .hljs-params,
  30. .hljs-deletion {
  31. color: #f99b15;
  32. }
  33. /* Paraíso Yellow */
  34. .hljs-title,
  35. .hljs-section,
  36. .hljs-attribute {
  37. color: #fec418;
  38. }
  39. /* Paraíso Green */
  40. .hljs-string,
  41. .hljs-symbol,
  42. .hljs-bullet,
  43. .hljs-addition {
  44. color: #48b685;
  45. }
  46. /* Paraíso Purple */
  47. .hljs-keyword,
  48. .hljs-selector-tag {
  49. color: #815ba4;
  50. }
  51. .hljs {
  52. display: block;
  53. overflow-x: auto;
  54. background: #2f1e2e;
  55. color: #a39e9b;
  56. padding: 0.5em;
  57. }
  58. .hljs-emphasis {
  59. font-style: italic;
  60. }
  61. .hljs-strong {
  62. font-weight: bold;
  63. }