tomorrow-night-bright.css 1.6 KB

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