paraiso-light.scss 1.0 KB

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