railscasts.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. Railscasts-like style (c) Visoft, Inc. (Damien White)
  3. */
  4. .hljs {
  5. display: block;
  6. overflow-x: auto;
  7. padding: .5em;
  8. background: #232323;
  9. color: #e6e1dc;
  10. }
  11. .hljs-comment, .hljs-quote {
  12. color: #bc9458;
  13. font-style: italic;
  14. }
  15. .hljs-keyword, .hljs-selector-tag {
  16. color: #c26230;
  17. }
  18. .hljs-string, .hljs-number, .hljs-regexp, .hljs-variable, .hljs-template-variable {
  19. color: #a5c261;
  20. }
  21. .hljs-subst {
  22. color: #519f50;
  23. }
  24. .hljs-tag, .hljs-name {
  25. color: #e8bf6a;
  26. }
  27. .hljs-type {
  28. color: #da4939;
  29. }
  30. .hljs-symbol, .hljs-bullet, .hljs-built_in, .hljs-builtin-name, .hljs-attr, .hljs-link {
  31. color: #6d9cbe;
  32. }
  33. .hljs-params {
  34. color: #d0d0ff;
  35. }
  36. .hljs-attribute {
  37. color: #cda869;
  38. }
  39. .hljs-meta {
  40. color: #9b859d;
  41. }
  42. .hljs-title, .hljs-section {
  43. color: #ffc66d;
  44. }
  45. .hljs-addition {
  46. background-color: #144212;
  47. color: #e6e1dc;
  48. display: inline-block;
  49. width: 100%;
  50. }
  51. .hljs-deletion {
  52. background-color: #600;
  53. color: #e6e1dc;
  54. display: inline-block;
  55. width: 100%;
  56. }
  57. .hljs-selector-class {
  58. color: #9b703f;
  59. }
  60. .hljs-selector-id {
  61. color: #8b98ab;
  62. }
  63. .hljs-emphasis {
  64. font-style: italic;
  65. }
  66. .hljs-strong {
  67. font-weight: bold;
  68. }
  69. .hljs-link {
  70. text-decoration: underline;
  71. }