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.

105 lines
1.2KB

  1. /*
  2. XCode style (c) Angel Garcia <angelgarcia.mail@gmail.com>
  3. */
  4. .hljs {
  5. display: block;
  6. overflow-x: auto;
  7. padding: 0.5em;
  8. background: #fff;
  9. color: black;
  10. }
  11. /* Gray DOCTYPE selectors like WebKit */
  12. .xml .hljs-meta {
  13. color: #c0c0c0;
  14. }
  15. .hljs-comment,
  16. .hljs-quote {
  17. color: #007400;
  18. }
  19. .hljs-tag,
  20. .hljs-attribute,
  21. .hljs-keyword,
  22. .hljs-selector-tag,
  23. .hljs-literal,
  24. .hljs-name {
  25. color: #aa0d91;
  26. }
  27. .hljs-variable,
  28. .hljs-template-variable {
  29. color: #3F6E74;
  30. }
  31. .hljs-code,
  32. .hljs-string,
  33. .hljs-meta-string {
  34. color: #c41a16;
  35. }
  36. .hljs-regexp,
  37. .hljs-link {
  38. color: #0E0EFF;
  39. }
  40. .hljs-title,
  41. .hljs-symbol,
  42. .hljs-bullet,
  43. .hljs-number {
  44. color: #1c00cf;
  45. }
  46. .hljs-section,
  47. .hljs-meta {
  48. color: #643820;
  49. }
  50. .hljs-class .hljs-title,
  51. .hljs-type,
  52. .hljs-built_in,
  53. .hljs-builtin-name,
  54. .hljs-params {
  55. color: #5c2699;
  56. }
  57. .hljs-attr {
  58. color: #836C28;
  59. }
  60. .hljs-subst {
  61. color: #000;
  62. }
  63. .hljs-formula {
  64. background-color: #eee;
  65. font-style: italic;
  66. }
  67. .hljs-addition {
  68. background-color: #baeeba;
  69. }
  70. .hljs-deletion {
  71. background-color: #ffc8bd;
  72. }
  73. .hljs-selector-id,
  74. .hljs-selector-class {
  75. color: #9b703f;
  76. }
  77. .hljs-doctag,
  78. .hljs-strong {
  79. font-weight: bold;
  80. }
  81. .hljs-emphasis {
  82. font-style: italic;
  83. }