tomorrow-night-bright.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /* Tomorrow Night Bright Theme */
  2. /* Original theme - https://github.com/chriskempson/tomorrow-theme */
  3. /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
  4. /* Tomorrow Comment */
  5. .hljs-comment,
  6. .hljs-title {
  7. color: #969896;
  8. }
  9. /* Tomorrow Red */
  10. .hljs-variable,
  11. .hljs-attribute,
  12. .hljs-tag,
  13. .hljs-regexp,
  14. .ruby .hljs-constant,
  15. .xml .hljs-tag .hljs-title,
  16. .xml .hljs-pi,
  17. .xml .hljs-doctype,
  18. .html .hljs-doctype,
  19. .css .hljs-id,
  20. .css .hljs-class,
  21. .css .hljs-pseudo {
  22. color: #d54e53;
  23. }
  24. /* Tomorrow Orange */
  25. .hljs-number,
  26. .hljs-preprocessor,
  27. .hljs-pragma,
  28. .hljs-built_in,
  29. .hljs-literal,
  30. .hljs-params,
  31. .hljs-constant {
  32. color: #e78c45;
  33. }
  34. /* Tomorrow Yellow */
  35. .ruby .hljs-class .hljs-title,
  36. .css .hljs-rules .hljs-attribute {
  37. color: #e7c547;
  38. }
  39. /* Tomorrow Green */
  40. .hljs-string,
  41. .hljs-value,
  42. .hljs-inheritance,
  43. .hljs-header,
  44. .ruby .hljs-symbol,
  45. .xml .hljs-cdata {
  46. color: #b9ca4a;
  47. }
  48. /* Tomorrow Aqua */
  49. .css .hljs-hexcolor {
  50. color: #70c0b1;
  51. }
  52. /* Tomorrow Blue */
  53. .hljs-function,
  54. .python .hljs-decorator,
  55. .python .hljs-title,
  56. .ruby .hljs-function .hljs-title,
  57. .ruby .hljs-title .hljs-keyword,
  58. .perl .hljs-sub,
  59. .javascript .hljs-title,
  60. .coffeescript .hljs-title {
  61. color: #7aa6da;
  62. }
  63. /* Tomorrow Purple */
  64. .hljs-keyword,
  65. .javascript .hljs-function {
  66. color: #c397d8;
  67. }
  68. .hljs {
  69. display: block;
  70. overflow-x: auto;
  71. background: black;
  72. color: #eaeaea;
  73. padding: 0.5em;
  74. -webkit-text-size-adjust: none;
  75. }
  76. .coffeescript .javascript,
  77. .javascript .xml,
  78. .tex .hljs-formula,
  79. .xml .javascript,
  80. .xml .vbscript,
  81. .xml .css,
  82. .xml .hljs-cdata {
  83. opacity: 0.5;
  84. }