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.

108 lines
1.5 KiB

  1. /*
  2. codepen.io Embed Theme
  3. Author: Justin Perry <http://github.com/ourmaninamsterdam>
  4. Original theme - https://github.com/chriskempson/tomorrow-theme
  5. */
  6. .hljs {
  7. display: block;
  8. overflow-x: auto;
  9. padding: 0.5em;
  10. background: #222;
  11. color: #fff;
  12. font-family: Menlo, Monaco, 'Andale Mono', 'Lucida Console', 'Courier New', monospace;
  13. -webkit-text-size-adjust: none;
  14. }
  15. .hljs-comment,
  16. .hljs-title {
  17. color: #777;
  18. }
  19. .hljs-variable,
  20. .hljs-attribute,
  21. .hljs-tag,
  22. .hljs-regexp,
  23. .ruby .constant,
  24. .xml .tag .title,
  25. .xml .pi,
  26. .xml .doctype,
  27. .html .doctype {
  28. color: #ab875d;
  29. }
  30. .css .value {
  31. color: #cd6a51;
  32. }
  33. .css .value .function,
  34. .css .value .string {
  35. color: #a67f59;
  36. }
  37. .css .value .number {
  38. color: #9b869c;
  39. }
  40. .css .id,
  41. .css .class,
  42. .css-pseudo,
  43. .css .selector,
  44. .css .tag {
  45. color: #dfc48c;
  46. }
  47. .hljs-number,
  48. .hljs-preprocessor,
  49. .hljs-built_in,
  50. .hljs-literal,
  51. .hljs-params,
  52. .hljs-constant {
  53. color: #ab875d;
  54. }
  55. .ruby .class .title,
  56. .css .rules .attribute {
  57. color: #9b869b;
  58. }
  59. .hljs-string,
  60. .hljs-value,
  61. .hljs-inheritance,
  62. .hljs-header,
  63. .ruby .symbol,
  64. .xml .cdata {
  65. color: #8f9c6c;
  66. }
  67. .css .hexcolor {
  68. color: #cd6a51;
  69. }
  70. .function,
  71. .python .decorator,
  72. .python .title,
  73. .ruby .function .title,
  74. .ruby .title .keyword,
  75. .perl .sub,
  76. .javascript .title,
  77. .coffeescript .title {
  78. color: #fff;
  79. }
  80. .hljs-keyword,
  81. .javascript .function {
  82. color: #8f9c6c;
  83. }
  84. .coffeescript .javascript,
  85. .javascript,
  86. .javascript .xml,
  87. .tex .formula,
  88. .xml .javascript,
  89. .xml .vbscript,
  90. .xml .css,
  91. .xml .cdata {
  92. background: transparent;
  93. opacity: 1;
  94. }