The version of vichan running on lainchan.org
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

85 lignes
1.3KB

  1. /* Base16 Atelier Savanna Dark - Theme */
  2. /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/savanna) */
  3. /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
  4. /* Atelier-Savanna Comment */
  5. .hljs-comment,
  6. .hljs-quote {
  7. color: #78877d;
  8. }
  9. /* Atelier-Savanna Red */
  10. .hljs-variable,
  11. .hljs-template-variable,
  12. .hljs-attribute,
  13. .hljs-tag,
  14. .hljs-name,
  15. .hljs-regexp,
  16. .hljs-link,
  17. .hljs-name,
  18. .hljs-selector-id,
  19. .hljs-selector-class {
  20. color: #b16139;
  21. }
  22. /* Atelier-Savanna Orange */
  23. .hljs-number,
  24. .hljs-meta,
  25. .hljs-built_in,
  26. .hljs-builtin-name,
  27. .hljs-literal,
  28. .hljs-type,
  29. .hljs-params {
  30. color: #9f713c;
  31. }
  32. /* Atelier-Savanna Green */
  33. .hljs-string,
  34. .hljs-symbol,
  35. .hljs-bullet {
  36. color: #489963;
  37. }
  38. /* Atelier-Savanna Blue */
  39. .hljs-title,
  40. .hljs-section {
  41. color: #478c90;
  42. }
  43. /* Atelier-Savanna Purple */
  44. .hljs-keyword,
  45. .hljs-selector-tag {
  46. color: #55859b;
  47. }
  48. .hljs-deletion,
  49. .hljs-addition {
  50. color: #171c19;
  51. display: inline-block;
  52. width: 100%;
  53. }
  54. .hljs-deletion {
  55. background-color: #b16139;
  56. }
  57. .hljs-addition {
  58. background-color: #489963;
  59. }
  60. .hljs {
  61. display: block;
  62. overflow-x: auto;
  63. background: #171c19;
  64. color: #87928a;
  65. padding: 0.5em;
  66. }
  67. .hljs-emphasis {
  68. font-style: italic;
  69. }
  70. .hljs-strong {
  71. font-weight: bold;
  72. }