solarized_dark.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /*
  2. Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>
  3. */
  4. pre code {
  5. display: block; padding: 0.5em;
  6. background: #002b36; color: #839496;
  7. }
  8. pre .comment,
  9. pre .template_comment,
  10. pre .diff .header,
  11. pre .doctype,
  12. pre .pi,
  13. pre .lisp .string,
  14. pre .javadoc {
  15. color: #586e75;
  16. font-style: italic;
  17. }
  18. pre .keyword,
  19. pre .winutils,
  20. pre .method,
  21. pre .addition,
  22. pre .css .tag,
  23. pre .request,
  24. pre .status {
  25. color: #859900;
  26. }
  27. pre .number,
  28. pre .command,
  29. pre .string,
  30. pre .tag .value,
  31. pre .phpdoc,
  32. pre .tex .formula,
  33. pre .regexp,
  34. pre .hexcolor {
  35. color: #2aa198;
  36. }
  37. pre .title,
  38. pre .localvars,
  39. pre .chunk,
  40. pre .decorator,
  41. pre .builtin,
  42. pre .built_in,
  43. pre .identifier,
  44. pre .title .keymethods,
  45. pre .vhdl .literal,
  46. pre .id {
  47. color: #268bd2;
  48. }
  49. pre .attribute,
  50. pre .variable,
  51. pre .instancevar,
  52. pre .lisp .body,
  53. pre .smalltalk .number,
  54. pre .constant,
  55. pre .class .title,
  56. pre .parent,
  57. pre .haskell .type {
  58. color: #b58900;
  59. }
  60. pre .preprocessor,
  61. pre .preprocessor .keyword,
  62. pre .shebang,
  63. pre .symbol,
  64. pre .diff .change,
  65. pre .special,
  66. pre .keymethods,
  67. pre .attr_selector,
  68. pre .important,
  69. pre .subst,
  70. pre .cdata {
  71. color: #cb4b16;
  72. }
  73. pre .deletion {
  74. color: #dc322f;
  75. }
  76. pre .tex .formula {
  77. background: #073642;
  78. }