No Description
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.

prism-tomorrow.css 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /**
  2. * prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML
  3. * Based on https://github.com/chriskempson/tomorrow-theme
  4. * @author Rose Pritchard
  5. */
  6. code[class*="language-"],
  7. pre[class*="language-"] {
  8. color: #ccc;
  9. background: none;
  10. font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  11. text-align: left;
  12. white-space: pre;
  13. word-spacing: normal;
  14. word-break: normal;
  15. word-wrap: normal;
  16. line-height: 1.5;
  17. -moz-tab-size: 4;
  18. -o-tab-size: 4;
  19. tab-size: 4;
  20. -webkit-hyphens: none;
  21. -moz-hyphens: none;
  22. -ms-hyphens: none;
  23. hyphens: none;
  24. }
  25. /* Code blocks */
  26. pre[class*="language-"] {
  27. padding: 1em;
  28. margin: .5em 0;
  29. overflow: auto;
  30. }
  31. :not(pre) > code[class*="language-"],
  32. pre[class*="language-"] {
  33. background: #2d2d2d;
  34. }
  35. /* Inline code */
  36. :not(pre) > code[class*="language-"] {
  37. padding: .1em;
  38. border-radius: .3em;
  39. white-space: normal;
  40. }
  41. .token.comment,
  42. .token.block-comment,
  43. .token.prolog,
  44. .token.doctype,
  45. .token.cdata {
  46. color: #999;
  47. }
  48. .token.punctuation {
  49. color: #ccc;
  50. }
  51. .token.tag,
  52. .token.attr-name,
  53. .token.namespace,
  54. .token.deleted {
  55. color: #e2777a;
  56. }
  57. .token.function-name {
  58. color: #6196cc;
  59. }
  60. .token.boolean,
  61. .token.number,
  62. .token.function {
  63. color: #f08d49;
  64. }
  65. .token.property,
  66. .token.class-name,
  67. .token.constant,
  68. .token.symbol {
  69. color: #f8c555;
  70. }
  71. .token.selector,
  72. .token.important,
  73. .token.atrule,
  74. .token.keyword,
  75. .token.builtin {
  76. color: #cc99cd;
  77. }
  78. .token.string,
  79. .token.char,
  80. .token.attr-value,
  81. .token.regex,
  82. .token.variable {
  83. color: #7ec699;
  84. }
  85. .token.operator,
  86. .token.entity,
  87. .token.url {
  88. color: #67cdcc;
  89. }
  90. .token.important,
  91. .token.bold {
  92. font-weight: bold;
  93. }
  94. .token.italic {
  95. font-style: italic;
  96. }
  97. .token.entity {
  98. cursor: help;
  99. }
  100. .token.inserted {
  101. color: green;
  102. }