xcode.css 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. XCode style (c) Angel Garcia <angelgarcia.mail@gmail.com>
  3. */
  4. .hljs {
  5. display: block;
  6. overflow-x: auto;
  7. padding: .5em;
  8. background: #fff;
  9. color: black;
  10. }
  11. .hljs-comment, .hljs-quote {
  12. color: #006a00;
  13. }
  14. .hljs-keyword, .hljs-selector-tag, .hljs-literal {
  15. color: #aa0d91;
  16. }
  17. .hljs-name {
  18. color: #008;
  19. }
  20. .hljs-variable, .hljs-template-variable {
  21. color: #660;
  22. }
  23. .hljs-string {
  24. color: #c41a16;
  25. }
  26. .hljs-regexp, .hljs-link {
  27. color: #080;
  28. }
  29. .hljs-title, .hljs-tag, .hljs-symbol, .hljs-bullet, .hljs-number, .hljs-meta {
  30. color: #1c00cf;
  31. }
  32. .hljs-section, .hljs-class .hljs-title, .hljs-type, .hljs-attr, .hljs-built_in, .hljs-builtin-name, .hljs-params {
  33. color: #5c2699;
  34. }
  35. .hljs-attribute, .hljs-subst {
  36. color: #000;
  37. }
  38. .hljs-formula {
  39. background-color: #eee;
  40. font-style: italic;
  41. }
  42. .hljs-addition {
  43. background-color: #baeeba;
  44. }
  45. .hljs-deletion {
  46. background-color: #ffc8bd;
  47. }
  48. .hljs-selector-id, .hljs-selector-class {
  49. color: #9b703f;
  50. }
  51. .hljs-doctag, .hljs-strong {
  52. font-weight: bold;
  53. }
  54. .hljs-emphasis {
  55. font-style: italic;
  56. }