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.

113 lines
1.3KB

  1. /*
  2. ISBL Editor style light color schemec (c) Dmitriy Tarasov <dimatar@gmail.com>
  3. */
  4. .hljs {
  5. display: block;
  6. overflow-x: auto;
  7. padding: 0.5em;
  8. background: white;
  9. color: black;
  10. }
  11. /* Base color: saturation 0; */
  12. .hljs,
  13. .hljs-subst {
  14. color: #000000;
  15. }
  16. .hljs-comment {
  17. color: #555555;
  18. font-style: italic;
  19. }
  20. .hljs-keyword,
  21. .hljs-attribute,
  22. .hljs-selector-tag,
  23. .hljs-meta-keyword,
  24. .hljs-doctag,
  25. .hljs-name {
  26. color: #000000;
  27. font-weight: bold;
  28. }
  29. /* User color: hue: 0 */
  30. .hljs-string {
  31. color: #000080;
  32. }
  33. .hljs-type,
  34. .hljs-number,
  35. .hljs-selector-id,
  36. .hljs-selector-class,
  37. .hljs-quote,
  38. .hljs-template-tag,
  39. .hljs-deletion {
  40. color: #000000;
  41. }
  42. .hljs-title,
  43. .hljs-section {
  44. color: #fb2c00;
  45. }
  46. .hljs-title>.hljs-built_in {
  47. color: #008080;
  48. font-weight: normal;
  49. }
  50. .hljs-regexp,
  51. .hljs-symbol,
  52. .hljs-variable,
  53. .hljs-template-variable,
  54. .hljs-link,
  55. .hljs-selector-attr,
  56. .hljs-selector-pseudo {
  57. color: #5e1700;
  58. }
  59. /* Language color: hue: 90; */
  60. .hljs-built_in,
  61. .hljs-literal {
  62. color: #000080;
  63. font-weight: bold;
  64. }
  65. .hljs-bullet,
  66. .hljs-code,
  67. .hljs-addition {
  68. color: #397300;
  69. }
  70. .hljs-class {
  71. color: #6f1C00;
  72. font-weight: bold;
  73. }
  74. /* Meta color: hue: 200 */
  75. .hljs-meta {
  76. color: #1f7199;
  77. }
  78. .hljs-meta-string {
  79. color: #4d99bf;
  80. }
  81. /* Misc effects */
  82. .hljs-emphasis {
  83. font-style: italic;
  84. }
  85. .hljs-strong {
  86. font-weight: bold;
  87. }