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.

69 lines
837B

  1. /*
  2. Visual Studio-like style based on original C# coloring by Jason Diamond <jason@diamond.name>
  3. */
  4. .hljs {
  5. display: block;
  6. overflow-x: auto;
  7. padding: 0.5em;
  8. background: white;
  9. color: black;
  10. }
  11. .hljs-comment,
  12. .hljs-quote,
  13. .hljs-variable {
  14. color: #008000;
  15. }
  16. .hljs-keyword,
  17. .hljs-selector-tag,
  18. .hljs-built_in,
  19. .hljs-name,
  20. .hljs-tag {
  21. color: #00f;
  22. }
  23. .hljs-string,
  24. .hljs-title,
  25. .hljs-section,
  26. .hljs-attribute,
  27. .hljs-literal,
  28. .hljs-template-tag,
  29. .hljs-template-variable,
  30. .hljs-type,
  31. .hljs-addition {
  32. color: #a31515;
  33. }
  34. .hljs-deletion,
  35. .hljs-selector-attr,
  36. .hljs-selector-pseudo,
  37. .hljs-meta {
  38. color: #2b91af;
  39. }
  40. .hljs-doctag {
  41. color: #808080;
  42. }
  43. .hljs-attr {
  44. color: #f00;
  45. }
  46. .hljs-symbol,
  47. .hljs-bullet,
  48. .hljs-link {
  49. color: #00b0e8;
  50. }
  51. .hljs-emphasis {
  52. font-style: italic;
  53. }
  54. .hljs-strong {
  55. font-weight: bold;
  56. }